[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Make asm macros use the generally accepted comma-separated arg-passing style.
# 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
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |