We use three MOVs to swap edx and ecx. We can use one XCHG instead.

Expand the comments. It's difficult to keep track which arg# every register
corresponds to, so spell it out.

Signed-off-by: Denys Vlasenko <dvlas...@redhat.com>
CC: Linus Torvalds <torva...@linux-foundation.org>
CC: Steven Rostedt <rost...@goodmis.org>
CC: Ingo Molnar <mi...@kernel.org>
CC: Borislav Petkov <b...@alien8.de>
CC: "H. Peter Anvin" <h...@zytor.com>
CC: Andy Lutomirski <l...@amacapital.net>
CC: Oleg Nesterov <o...@redhat.com>
CC: Frederic Weisbecker <fweis...@gmail.com>
CC: Alexei Starovoitov <a...@plumgrid.com>
CC: Will Drewry <w...@chromium.org>
CC: Kees Cook <keesc...@chromium.org>
CC: x...@kernel.org
CC: linux-kernel@vger.kernel.org
---
 arch/x86/entry/entry_64_compat.S | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/arch/x86/entry/entry_64_compat.S b/arch/x86/entry/entry_64_compat.S
index 0fa108c..a0ddcb6 100644
--- a/arch/x86/entry/entry_64_compat.S
+++ b/arch/x86/entry/entry_64_compat.S
@@ -178,12 +178,16 @@ sysexit_from_sys_call:
 
 #ifdef CONFIG_AUDITSYSCALL
        .macro auditsys_entry_common
-       movl    %esi, %r8d              /* 5th arg: 4th syscall arg */
-       movl    %ecx, %r9d              /* swap with edx */
-       movl    %edx, %ecx              /* 4th arg: 3rd syscall arg */
-       movl    %r9d, %edx              /* 3rd arg: 2nd syscall arg */
-       movl    %ebx, %esi              /* 2nd arg: 1st syscall arg */
-       movl    %eax, %edi              /* 1st arg: syscall number */
+       /*
+        * At this point, registers hold syscall args in 32-bit ABI:
+        * eax is syscall#, args are in ebx,ecx,edx,esi,edi,ebp.
+        * Shuffle them to match what __audit_syscall_entry() wants.
+        */
+       movl    %esi, %r8d              /* arg5 (r8): 4th syscall arg */
+       xchg    %ecx, %edx              /* arg4 (rcx): 3rd syscall arg (edx) */
+                                       /* arg3 (rdx): 2nd syscall arg (ecx) */
+       movl    %ebx, %esi              /* arg2 (rsi): 1st syscall arg */
+       movl    %eax, %edi              /* arg1 (rdi): syscall number */
        call    __audit_syscall_entry
        /*
         * We are going to jump back to syscall dispatch.
-- 
1.8.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to