WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Fix ACM hypercall macros (broke the x86/64 and ia64 buil

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Fix ACM hypercall macros (broke the x86/64 and ia64 builds).
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 31 May 2006 16:22:16 +0000
Delivery-date: Wed, 31 May 2006 09:25:59 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User kfraser@xxxxxxxxxxxxxxxxxxxxxxx
# Node ID 94947f282fa27edb6f04252ebe547804a9fbe8e1
# Parent  414dabe82a31841a2eb019f2d76fdbfb392c42b4
Fix ACM hypercall macros (broke the x86/64 and ia64 builds).
Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>
---
 linux-2.6-xen-sparse/include/asm-ia64/hypercall.h                |    2 +-
 linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff -r 414dabe82a31 -r 94947f282fa2 
linux-2.6-xen-sparse/include/asm-ia64/hypercall.h
--- a/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h Wed May 31 11:31:52 
2006 +0100
+++ b/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h Wed May 31 13:26:10 
2006 +0100
@@ -250,7 +250,7 @@ HYPERVISOR_acm_op(
 HYPERVISOR_acm_op(
        unsigned int cmd, void *arg)
 {
-       return = _hypercall2(int, acm_op, cmd, arg);
+    return _hypercall2(int, acm_op, cmd, arg);
 }
 
 static inline int
diff -r 414dabe82a31 -r 94947f282fa2 
linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h
--- a/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h  Wed May 
31 11:31:52 2006 +0100
+++ b/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h  Wed May 
31 13:26:10 2006 +0100
@@ -261,7 +261,7 @@ HYPERVISOR_acm_op(
 HYPERVISOR_acm_op(
        int cmd, void *arg)
 {
-       return = _hypercall2(int, acm_op, cmd, arg);
+       return _hypercall2(int, acm_op, cmd, arg);
 }
 
 static inline int

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Fix ACM hypercall macros (broke the x86/64 and ia64 builds)., Xen patchbot-unstable <=