7a5d70
Note:  this bug was taken from Commit-ID: 26c2d2b39128adba276d140eefa2745591b88536
7a5d70
and corrected for white space differences between the RHEL-7.1 3.10.0-229 upstream 
7a5d70
kernel.
7a5d70
---
7a5d70
diff -uNrp a/arch/x86/kernel/entry_32.S b/arch/x86/kernel/entry_32.S
7a5d70
--- a/arch/x86/kernel/entry_32.S	2015-05-17 07:39:14.371778177 -0500
7a5d70
+++ b/arch/x86/kernel/entry_32.S	2015-05-17 07:36:13.654610869 -0500
7a5d70
@@ -457,15 +457,14 @@ sysenter_exit:
7a5d70
 sysenter_audit:
7a5d70
 	testl $(_TIF_WORK_SYSCALL_ENTRY & ~_TIF_SYSCALL_AUDIT),TI_flags(%ebp)
7a5d70
 	jnz syscall_trace_entry
7a5d70
-	addl $4,%esp
7a5d70
-	CFI_ADJUST_CFA_OFFSET -4
7a5d70
-	movl %esi,4(%esp)		/* 5th arg: 4th syscall arg */
7a5d70
-	movl %edx,(%esp)		/* 4th arg: 3rd syscall arg */
7a5d70
-	/* %ecx already in %ecx		   3rd arg: 2nd syscall arg */
7a5d70
-	movl %ebx,%edx			/* 2nd arg: 1st syscall arg */
7a5d70
-	/* %eax already in %eax		   1st arg: syscall number */
7a5d70
+	/* movl PT_EAX(%esp), %eax        already set, syscall number: 1st arg to audit */
7a5d70
+	movl PT_EBX(%esp), %edx                /* ebx/a0: 2nd arg to audit */
7a5d70
+ 	/* movl PT_ECX(%esp), %ecx        already set, a1: 3nd arg to audit */
7a5d70
+	pushl_cfi PT_ESI(%esp)                /* a3: 5th arg */
7a5d70
+	pushl_cfi PT_EDX+4(%esp)        /* a2: 4th arg */
7a5d70
 	call __audit_syscall_entry
7a5d70
-	pushl_cfi %ebx
7a5d70
+	popl_cfi %ecx /* get that remapped edx off the stack */
7a5d70
+	popl_cfi %ecx /* get that remapped esi off the stack */
7a5d70
 	movl PT_EAX(%esp),%eax		/* reload syscall number */
7a5d70
 	jmp sysenter_do_call
7a5d70
 
7a5d70
---