aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64
diff options
context:
space:
mode:
authorAl Viro <viro@www.linux.org.uk>2005-04-26 07:43:42 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-26 07:43:42 -0700
commit993fb38b1c0cd1a56d15aa99b337c780a538baa8 (patch)
tree784444f2d69059e6ccad8b0b83a2f21d6a5c1ea9 /arch/x86_64
parent[PATCH] drivers/scsi NULL noise removal (diff)
downloadlinux-dev-993fb38b1c0cd1a56d15aa99b337c780a538baa8.tar.xz
linux-dev-993fb38b1c0cd1a56d15aa99b337c780a538baa8.zip
[PATCH] amd64 rt_sigframe user annotation
->pretcode in struct rt_sigframe is a userland pointer (and already treated as such by code using that field). Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64')
-rw-r--r--arch/x86_64/kernel/signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/kernel/signal.c b/arch/x86_64/kernel/signal.c
index 7760224cdfe3..d439ced150c6 100644
--- a/arch/x86_64/kernel/signal.c
+++ b/arch/x86_64/kernel/signal.c
@@ -83,7 +83,7 @@ sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss,
struct rt_sigframe
{
- char *pretcode;
+ char __user *pretcode;
struct ucontext uc;
struct siginfo info;
};