diff options
author | Chuck Ebbert <76306.1226@compuserve.com> | 2006-09-26 04:52:37 -0400 |
---|---|---|
committer | Andi Kleen <andi@basil.nowhere.org> | 2006-09-26 04:52:37 -0400 |
commit | a549b86dd0f3cbffcd5f9343f4ae7fcd59f7e756 (patch) | |
tree | 4405a0465a631a45945954f1ce1efa7d8fd24676 /arch | |
parent | 1164c9994fe37d5b7035a5cf9328c98dd38af7b1 (diff) |
[PATCH] i386: annotate FIX_STACK() and the rest of nmi()
In i386's entry.S, FIX_STACK() needs annotation because it
replaces the stack pointer. And the rest of nmi() needs
annotation in order to compile with these new annotations.
Signed-off-by: Chuck Ebbert <76306.1226@compuserve.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/kernel/entry.S | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/arch/i386/kernel/entry.S b/arch/i386/kernel/entry.S index 0928f70639aa..4b0845249222 100644 --- a/arch/i386/kernel/entry.S +++ b/arch/i386/kernel/entry.S | |||
@@ -701,9 +701,15 @@ device_not_available_emulate: | |||
701 | jne ok; \ | 701 | jne ok; \ |
702 | label: \ | 702 | label: \ |
703 | movl TSS_sysenter_esp0+offset(%esp),%esp; \ | 703 | movl TSS_sysenter_esp0+offset(%esp),%esp; \ |
704 | CFI_DEF_CFA esp, 0; \ | ||
705 | CFI_UNDEFINED eip; \ | ||
704 | pushfl; \ | 706 | pushfl; \ |
707 | CFI_ADJUST_CFA_OFFSET 4; \ | ||
705 | pushl $__KERNEL_CS; \ | 708 | pushl $__KERNEL_CS; \ |
706 | pushl $sysenter_past_esp | 709 | CFI_ADJUST_CFA_OFFSET 4; \ |
710 | pushl $sysenter_past_esp; \ | ||
711 | CFI_ADJUST_CFA_OFFSET 4; \ | ||
712 | CFI_REL_OFFSET eip, 0 | ||
707 | 713 | ||
708 | KPROBE_ENTRY(debug) | 714 | KPROBE_ENTRY(debug) |
709 | RING0_INT_FRAME | 715 | RING0_INT_FRAME |
@@ -754,6 +760,7 @@ KPROBE_ENTRY(nmi) | |||
754 | cmpl $sysenter_entry,12(%esp) | 760 | cmpl $sysenter_entry,12(%esp) |
755 | je nmi_debug_stack_check | 761 | je nmi_debug_stack_check |
756 | nmi_stack_correct: | 762 | nmi_stack_correct: |
763 | /* We have a RING0_INT_FRAME here */ | ||
757 | pushl %eax | 764 | pushl %eax |
758 | CFI_ADJUST_CFA_OFFSET 4 | 765 | CFI_ADJUST_CFA_OFFSET 4 |
759 | SAVE_ALL | 766 | SAVE_ALL |
@@ -764,9 +771,12 @@ nmi_stack_correct: | |||
764 | CFI_ENDPROC | 771 | CFI_ENDPROC |
765 | 772 | ||
766 | nmi_stack_fixup: | 773 | nmi_stack_fixup: |
774 | RING0_INT_FRAME | ||
767 | FIX_STACK(12,nmi_stack_correct, 1) | 775 | FIX_STACK(12,nmi_stack_correct, 1) |
768 | jmp nmi_stack_correct | 776 | jmp nmi_stack_correct |
777 | |||
769 | nmi_debug_stack_check: | 778 | nmi_debug_stack_check: |
779 | /* We have a RING0_INT_FRAME here */ | ||
770 | cmpw $__KERNEL_CS,16(%esp) | 780 | cmpw $__KERNEL_CS,16(%esp) |
771 | jne nmi_stack_correct | 781 | jne nmi_stack_correct |
772 | cmpl $debug,(%esp) | 782 | cmpl $debug,(%esp) |
@@ -777,8 +787,10 @@ nmi_debug_stack_check: | |||
777 | jmp nmi_stack_correct | 787 | jmp nmi_stack_correct |
778 | 788 | ||
779 | nmi_16bit_stack: | 789 | nmi_16bit_stack: |
780 | RING0_INT_FRAME | 790 | /* We have a RING0_INT_FRAME here. |
781 | /* create the pointer to lss back */ | 791 | * |
792 | * create the pointer to lss back | ||
793 | */ | ||
782 | pushl %ss | 794 | pushl %ss |
783 | CFI_ADJUST_CFA_OFFSET 4 | 795 | CFI_ADJUST_CFA_OFFSET 4 |
784 | pushl %esp | 796 | pushl %esp |