]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
x86-32: Avoid pipeline serialization in PTREGSCALL1 and 2
authorH. Peter Anvin <hpa@zytor.com>
Thu, 10 Dec 2009 00:33:44 +0000 (16:33 -0800)
committerH. Peter Anvin <hpa@zytor.com>
Thu, 10 Dec 2009 00:33:44 +0000 (16:33 -0800)
In the PTREGSCALL1 and 2 macros, we can trivially avoid an unnecessary
pipeline serialization, so do so.

In PTREGSCALLS3 this is much less clear-cut since we have to push a
new value to the stack.  Leave it alone for now assuming it is as good
as it is going to be; may want to check on Atom or another in-order
x86 to see if we can do better.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Cc: Brian Gerst <brgerst@gmail.com>
LKML-Reference: <1260403316-5679-2-git-send-email-brgerst@gmail.com>

arch/x86/kernel/entry_32.S

index 6492555d123de89b95f5884317ce0e21405246f1..cb12b9bfc9ccc1cba205ae3f629713b709dac23e 100644 (file)
@@ -735,15 +735,15 @@ ptregs_##name: \
        ALIGN; \
 ptregs_##name: \
        leal 4(%esp),%edx; \
-       movl PT_EBX(%edx),%eax; \
+       movl (PT_EBX+4)(%esp),%eax; \
        jmp sys_##name;
 
 #define PTREGSCALL2(name) \
        ALIGN; \
 ptregs_##name: \
        leal 4(%esp),%ecx; \
-       movl PT_ECX(%ecx),%edx; \
-       movl PT_EBX(%ecx),%eax; \
+       movl (PT_ECX+4)(%esp),%edx; \
+       movl (PT_EBX+4)(%esp),%eax; \
        jmp sys_##name;
 
 #define PTREGSCALL3(name) \