|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 12 of 15] libxc: add bitmap_clear function
# HG changeset patch
# User Olaf Hering <olaf@xxxxxxxxx>
# Date 1319189046 -7200
# Node ID 2a4c2be433b27cec227ef8441937b2088d2ec24b
# Parent 1f9a27425952493878a54c82e0518b47560161af
libxc: add bitmap_clear function
Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>
diff -r 1f9a27425952 -r 2a4c2be433b2 tools/libxc/xc_bitops.h
--- a/tools/libxc/xc_bitops.h
+++ b/tools/libxc/xc_bitops.h
@@ -4,6 +4,7 @@
/* bitmap operations for single threaded access */
#include <stdlib.h>
+#include <string.h>
#define BITS_PER_LONG (sizeof(unsigned long) * 8)
#define ORDER_LONG (sizeof(unsigned long) == 4 ? 5 : 6)
@@ -25,6 +26,11 @@ static inline unsigned long *bitmap_allo
return calloc(1, bitmap_size(nr_bits));
}
+static inline void bitmap_clear(unsigned long *addr, int nr_bits)
+{
+ memset(addr, 0, bitmap_size(nr_bits));
+}
+
static inline int test_bit(int nr, volatile unsigned long *addr)
{
return (BITMAP_ENTRY(nr, addr) >> BITMAP_SHIFT(nr)) & 1;
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [PATCH 04 of 15] xenpaging: simplify file_op, (continued)
- [Xen-devel] [PATCH 04 of 15] xenpaging: simplify file_op, Olaf Hering
- [Xen-devel] [PATCH 08 of 15] xenpaging: track the number of paged-out pages, Olaf Hering
- [Xen-devel] [PATCH 02 of 15] xenpaging: remove obsolete comment in resume path, Olaf Hering
- [Xen-devel] [PATCH 01 of 15] xenpaging: remove filename from comment, Olaf Hering
- [Xen-devel] [PATCH 07 of 15] xenpaging: remove xc_dominfo_t from paging_t, Olaf Hering
- [Xen-devel] [PATCH 15 of 15] xenpaging: add XEN_PAGING_DIR / libxl_xenpaging_dir_path(), Olaf Hering
- [Xen-devel] [PATCH 09 of 15] xenpaging: move page add/resume loops into its own function, Olaf Hering
- [Xen-devel] [PATCH 06 of 15] xenpaging: update xenpaging_init, Olaf Hering
- [Xen-devel] [PATCH 03 of 15] xenpaging: use PERROR to print errno, Olaf Hering
- [Xen-devel] [PATCH 05 of 15] xenpaging: print gfn in failure case, Olaf Hering
- [Xen-devel] [PATCH 12 of 15] libxc: add bitmap_clear function,
Olaf Hering <=
- [Xen-devel] [PATCH 11 of 15] xenpaging: improve mainloop exit handling, Olaf Hering
|
|
|
|
|