Skip to content

Commit

Permalink
[PATCH] Fix trivial unwind info bug
Browse files Browse the repository at this point in the history
CFA needs to be adjusted upwards for push, and downwards for pop.
arch/i386/kernel/entry.S gets it wrong in one place.

Signed-off-by: Markus Armbruster <[email protected]>
Acked-by: Jan Beulich <[email protected]>
Cc: Andi Kleen <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Markus Armbruster authored and Linus Torvalds committed Jul 31, 2006
1 parent 0b0bf7a commit 25d7dfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/i386/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ VM_MASK = 0x00020000
ENTRY(ret_from_fork)
CFI_STARTPROC
pushl %eax
CFI_ADJUST_CFA_OFFSET -4
CFI_ADJUST_CFA_OFFSET 4
call schedule_tail
GET_THREAD_INFO(%ebp)
popl %eax
Expand Down

0 comments on commit 25d7dfd

Please sign in to comment.