Commit 1e5c374d authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

[PATCH] misc m68k __user annotations

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent b971018b
...@@ -221,13 +221,13 @@ asmlinkage int m68k_clone(struct pt_regs *regs) ...@@ -221,13 +221,13 @@ asmlinkage int m68k_clone(struct pt_regs *regs)
{ {
unsigned long clone_flags; unsigned long clone_flags;
unsigned long newsp; unsigned long newsp;
int *parent_tidptr, *child_tidptr; int __user *parent_tidptr, *child_tidptr;
/* syscall2 puts clone_flags in d1 and usp in d2 */ /* syscall2 puts clone_flags in d1 and usp in d2 */
clone_flags = regs->d1; clone_flags = regs->d1;
newsp = regs->d2; newsp = regs->d2;
parent_tidptr = (int *)regs->d3; parent_tidptr = (int __user *)regs->d3;
child_tidptr = (int *)regs->d4; child_tidptr = (int __user *)regs->d4;
if (!newsp) if (!newsp)
newsp = rdusp(); newsp = rdusp();
return do_fork(clone_flags, newsp, regs, 0, return do_fork(clone_flags, newsp, regs, 0,
...@@ -361,7 +361,7 @@ void dump_thread(struct pt_regs * regs, struct user * dump) ...@@ -361,7 +361,7 @@ void dump_thread(struct pt_regs * regs, struct user * dump)
/* /*
* sys_execve() executes a new program. * sys_execve() executes a new program.
*/ */
asmlinkage int sys_execve(char *name, char **argv, char **envp) asmlinkage int sys_execve(char __user *name, char __user * __user *argv, char __user * __user *envp)
{ {
int error; int error;
char * filename; char * filename;
......
...@@ -326,13 +326,13 @@ static inline int do_040writeback1(unsigned short wbs, unsigned long wba, ...@@ -326,13 +326,13 @@ static inline int do_040writeback1(unsigned short wbs, unsigned long wba,
switch (wbs & WBSIZ_040) { switch (wbs & WBSIZ_040) {
case BA_SIZE_BYTE: case BA_SIZE_BYTE:
res = put_user(wbd & 0xff, (char *)wba); res = put_user(wbd & 0xff, (char __user *)wba);
break; break;
case BA_SIZE_WORD: case BA_SIZE_WORD:
res = put_user(wbd & 0xffff, (short *)wba); res = put_user(wbd & 0xffff, (short __user *)wba);
break; break;
case BA_SIZE_LONG: case BA_SIZE_LONG:
res = put_user(wbd, (int *)wba); res = put_user(wbd, (int __user *)wba);
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment