search for: 1f611b58729f

Displaying 2 results from an estimated 2 matches for "1f611b58729f".

2006 Aug 10
0
[RFC][PATCH][TOOLS] CONFIG to build and link to local libaio
...IO is prolly a crappy name, but this patch will enable a tool build to select either the local or the system provided libaio. Note, it only builds the local libaio.a so the linker get the right one automatically, so you''ll want to "make -C tools/libaio clean". -JX --- diff -r 1f611b58729f tools/Makefile --- a/tools/Makefile Wed Aug 09 18:53:00 2006 -0400 +++ b/tools/Makefile Thu Aug 10 15:16:17 2006 -0400 @@ -16,7 +16,7 @@ SUBDIRS-y += guest-headers SUBDIRS-y += guest-headers SUBDIRS-$(VTPM_TOOLS) += vtpm_manager vtpm SUBDIRS-y += xenstat -SUBDIRS-y += libaio +SUBDIRS-$(LOCAL_LIB...
2006 Aug 11
2
[PATCH][XEN] Use a union to pack the dual-short combos in an endian neutral way.
The first to members of a grant entry are updated as a combined pair. The following union patch uses a union so updated can happen in an endian neutral fashion. Signed-off-by: Jimi Xenidis <jimix@watson.ibm.com> diff -r 1f611b58729f xen/common/grant_table.c --- a/xen/common/grant_table.c Wed Aug 09 18:53:00 2006 -0400 +++ b/xen/common/grant_table.c Fri Aug 11 12:29:48 2006 -0400 @@ -32,6 +32,17 @@ #include <xen/guest_access.h> #include <acm/acm_hooks.h> +/* The first to members of a grant entry are updated as a...