# HG changeset patch
# User Jan Beulich <jbeulich@xxxxxxxxxx>
# Date 1309549490 -3600
# Node ID cd8258c1ebf1a0d416cfe93fb9f000814f33c817
# Parent 897ce4a983c1e60574ab0803ce37a7d331ae7ff8
x86: remove unnecessary ALIGN directives
ENTRY() already includes an ALIGN.
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx>
---
diff -r 897ce4a983c1 -r cd8258c1ebf1 xen/arch/x86/x86_32/entry.S
--- a/xen/arch/x86/x86_32/entry.S Fri Jul 01 20:44:21 2011 +0100
+++ b/xen/arch/x86/x86_32/entry.S Fri Jul 01 20:44:50 2011 +0100
@@ -138,7 +138,6 @@
addl $4,%esp
iret
- ALIGN
ENTRY(hypercall)
subl $4,%esp
FIXUP_RING0_GUEST_STACK
@@ -417,7 +416,6 @@
call printk
jmp __domain_crash_synchronous
- ALIGN
ENTRY(ret_from_intr)
GET_CURRENT(%ebx)
movl UREGS_eflags(%esp),%eax
diff -r 897ce4a983c1 -r cd8258c1ebf1 xen/arch/x86/x86_64/compat/entry.S
--- a/xen/arch/x86/x86_64/compat/entry.S Fri Jul 01 20:44:21 2011 +0100
+++ b/xen/arch/x86/x86_64/compat/entry.S Fri Jul 01 20:44:50 2011 +0100
@@ -12,7 +12,6 @@
#include <public/xen.h>
#include <irq_vectors.h>
- ALIGN
ENTRY(compat_hypercall)
pushq $0
movl $TRAP_syscall,4(%rsp)
diff -r 897ce4a983c1 -r cd8258c1ebf1 xen/arch/x86/x86_64/entry.S
--- a/xen/arch/x86/x86_64/entry.S Fri Jul 01 20:44:21 2011 +0100
+++ b/xen/arch/x86/x86_64/entry.S Fri Jul 01 20:44:50 2011 +0100
@@ -110,7 +110,6 @@
* the stack, starting with %rip, and an appropriate %ss must be saved into
* the space left by the trampoline.
*/
- ALIGN
ENTRY(syscall_enter)
sti
movl $FLAT_KERNEL_SS,24(%rsp)
@@ -450,7 +449,6 @@
call printk
jmp __domain_crash_synchronous
- ALIGN
/* No special register assumptions. */
ENTRY(ret_from_intr)
GET_CURRENT(%rbx)
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|