aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/entry_32.S16
1 files changed, 12 insertions, 4 deletions
diff --git a/arch/x86/kernel/entry_32.S b/arch/x86/kernel/entry_32.S
index 227d00920d2f..d9b950ee5590 100644
--- a/arch/x86/kernel/entry_32.S
+++ b/arch/x86/kernel/entry_32.S
@@ -750,14 +750,18 @@ ptregs_##name: \
750#define PTREGSCALL3(name) \ 750#define PTREGSCALL3(name) \
751 ALIGN; \ 751 ALIGN; \
752ptregs_##name: \ 752ptregs_##name: \
753 CFI_STARTPROC; \
753 leal 4(%esp),%eax; \ 754 leal 4(%esp),%eax; \
754 pushl %eax; \ 755 pushl_cfi %eax; \
755 movl PT_EDX(%eax),%ecx; \ 756 movl PT_EDX(%eax),%ecx; \
756 movl PT_ECX(%eax),%edx; \ 757 movl PT_ECX(%eax),%edx; \
757 movl PT_EBX(%eax),%eax; \ 758 movl PT_EBX(%eax),%eax; \
758 call sys_##name; \ 759 call sys_##name; \
759 addl $4,%esp; \ 760 addl $4,%esp; \
760 ret 761 CFI_ADJUST_CFA_OFFSET -4; \
762 ret; \
763 CFI_ENDPROC; \
764ENDPROC(ptregs_##name)
761 765
762PTREGSCALL1(iopl) 766PTREGSCALL1(iopl)
763PTREGSCALL0(fork) 767PTREGSCALL0(fork)
@@ -772,15 +776,19 @@ PTREGSCALL1(vm86old)
772/* Clone is an oddball. The 4th arg is in %edi */ 776/* Clone is an oddball. The 4th arg is in %edi */
773 ALIGN; 777 ALIGN;
774ptregs_clone: 778ptregs_clone:
779 CFI_STARTPROC
775 leal 4(%esp),%eax 780 leal 4(%esp),%eax
776 pushl %eax 781 pushl_cfi %eax
777 pushl PT_EDI(%eax) 782 pushl_cfi PT_EDI(%eax)
778 movl PT_EDX(%eax),%ecx 783 movl PT_EDX(%eax),%ecx
779 movl PT_ECX(%eax),%edx 784 movl PT_ECX(%eax),%edx
780 movl PT_EBX(%eax),%eax 785 movl PT_EBX(%eax),%eax
781 call sys_clone 786 call sys_clone
782 addl $8,%esp 787 addl $8,%esp
788 CFI_ADJUST_CFA_OFFSET -8
783 ret 789 ret
790 CFI_ENDPROC
791ENDPROC(ptregs_clone)
784 792
785.macro FIXUP_ESPFIX_STACK 793.macro FIXUP_ESPFIX_STACK
786/* 794/*