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] Make asm macros use the generally accepted comma-separat

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Make asm macros use the generally accepted comma-separated arg-passing style.
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 15 Mar 2006 22:40:06 +0000
Delivery-date: Wed, 15 Mar 2006 22:41:13 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
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 kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID d3b0d74702b5383bf121764a9892cc71a1cfbc01
# Parent  f85bb99187bf934b1ce899ef38c3d0e0d342cdd5
Make asm macros use the generally accepted comma-separated arg-passing style.

Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>

diff -r f85bb99187bf -r d3b0d74702b5 xen/arch/x86/hvm/vmx/x86_32/exits.S
--- a/xen/arch/x86/hvm/vmx/x86_32/exits.S       Wed Mar 15 18:19:22 2006
+++ b/xen/arch/x86/hvm/vmx/x86_32/exits.S       Wed Mar 15 19:22:31 2006
@@ -89,7 +89,7 @@
         call vmx_vmexit_handler
         jmp vmx_asm_do_resume
 
-.macro vmx_asm_common launch initialized
+.macro vmx_asm_common launch, initialized
 1:
 /* vmx_test_all_events */
         .if \initialized
@@ -140,10 +140,10 @@
 .endm
 
 ENTRY(vmx_asm_do_launch)
-    vmx_asm_common 1 0
+    vmx_asm_common 1, 0
 
 ENTRY(vmx_asm_do_resume)
-    vmx_asm_common 0 1
+    vmx_asm_common 0, 1
 
 ENTRY(vmx_asm_do_relaunch)
-    vmx_asm_common 1 1
+    vmx_asm_common 1, 1
diff -r f85bb99187bf -r d3b0d74702b5 xen/arch/x86/hvm/vmx/x86_64/exits.S
--- a/xen/arch/x86/hvm/vmx/x86_64/exits.S       Wed Mar 15 18:19:22 2006
+++ b/xen/arch/x86/hvm/vmx/x86_64/exits.S       Wed Mar 15 19:22:31 2006
@@ -97,7 +97,7 @@
         call vmx_vmexit_handler
         jmp vmx_asm_do_resume
 
-.macro vmx_asm_common launch initialized 
+.macro vmx_asm_common launch, initialized 
 1:
         .if \initialized
 /* vmx_test_all_events */
@@ -147,10 +147,10 @@
 .endm
 
 ENTRY(vmx_asm_do_launch)
-      vmx_asm_common 1 0
+      vmx_asm_common 1, 0
 
 ENTRY(vmx_asm_do_resume)
-      vmx_asm_common 0 1
+      vmx_asm_common 0, 1
 
 ENTRY(vmx_asm_do_relaunch)
-      vmx_asm_common 1 1
+      vmx_asm_common 1, 1

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Make asm macros use the generally accepted comma-separated arg-passing style., Xen patchbot -unstable <=