]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commit
[PATCH] ptrace: Fix EFL_OFFSET value according to i386 pda changes
authorJeremy Fitzhardinge <jeremy@goop.org>
Fri, 22 Dec 2006 09:11:21 +0000 (01:11 -0800)
committerLinus Torvalds <torvalds@woody.osdl.org>
Fri, 22 Dec 2006 16:55:51 +0000 (08:55 -0800)
commit8701ea957dd2a7c309e17c8dcde3a64b92d8aec0
tree37019047caf24df91f617677f72b378d1e23d82e
parent7c7e9425f114a109b07be2c2c1c6c169e34e9bb3
[PATCH] ptrace: Fix EFL_OFFSET value according to i386 pda changes

The PDA patches introduced a bug in ptrace: it reads eflags from the wrong
place on the target's stack, but writes it back to the correct place.  The
result is a corrupted eflags, which is most visible when it turns interrupts
off unexpectedly.

This patch fixes this by making the ptrace code a little less fragile.  It
changes [gs]et_stack_long to take a straightforward byte offset into struct
pt_regs, rather than requiring all callers to do a sizeof(struct pt_regs)
offset adjustment.  This means that the eflag's offset (EFL_OFFSET) on the
target stack can be simply computed with offsetof().

Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Frederik Deweerdt <deweerdt@free.fr>
Cc: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/i386/kernel/ptrace.c