All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [ACM] Comilation fix for 32 bit
@ 2007-04-26  3:36 Stefan Berger
  2007-04-26  6:50 ` Keir Fraser
  0 siblings, 1 reply; 5+ messages in thread
From: Stefan Berger @ 2007-04-26  3:36 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 84 bytes --]

This fixes a compilation problem on 32 bit machines.

Signed-off-by: Stefan Berger


[-- Attachment #2: acm_buffer_type.diff --]
[-- Type: text/x-patch, Size: 1126 bytes --]

Index: root/xen-unstable.hg/xen/include/public/acm_ops.h
===================================================================
--- root.orig/xen-unstable.hg/xen/include/public/acm_ops.h
+++ root/xen-unstable.hg/xen/include/public/acm_ops.h
@@ -50,7 +50,7 @@
 struct acm_setpolicy {
     /* IN */
     uint32_t interface_version;
-    XEN_GUEST_HANDLE_64(void) pushcache;
+    XEN_GUEST_HANDLE(void) pushcache;
     uint32_t pushcache_size;
 };
 
@@ -59,7 +59,7 @@ struct acm_setpolicy {
 struct acm_getpolicy {
     /* IN */
     uint32_t interface_version;
-    XEN_GUEST_HANDLE_64(void) pullcache;
+    XEN_GUEST_HANDLE(void) pullcache;
     uint32_t pullcache_size;
 };
 
@@ -68,7 +68,7 @@ struct acm_getpolicy {
 struct acm_dumpstats {
     /* IN */
     uint32_t interface_version;
-    XEN_GUEST_HANDLE_64(void) pullcache;
+    XEN_GUEST_HANDLE(void) pullcache;
     uint32_t pullcache_size;
 };
 
@@ -84,7 +84,7 @@ struct acm_getssid {
         domaintype_t domainid;
         ssidref_t    ssidref;
     } id;
-    XEN_GUEST_HANDLE_64(void) ssidbuf;
+    XEN_GUEST_HANDLE(void) ssidbuf;
     uint32_t ssidbuf_size;
 };
 

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-04-26 10:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-26  3:36 [PATCH] [ACM] Comilation fix for 32 bit Stefan Berger
2007-04-26  6:50 ` Keir Fraser
2007-04-26 10:49   ` Stefan Berger
2007-04-26 10:55     ` Keir Fraser
2007-04-26 10:59       ` Stefan Berger

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.