diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-01-07 11:42:32 +0300 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-01-21 11:42:55 +0300 |
commit | 5e6136135d4f50fda6699498185c6dffe08d7891 (patch) | |
tree | caa7df93da14651185cd7a21409598eb350e259f /arch | |
parent | 8ed3592e567db7344b2c7353667e0d281cd13471 (diff) | |
download | linux-5e6136135d4f50fda6699498185c6dffe08d7891.tar.xz |
sh: Drop the BKL from sys_execve() on SH-5.
Brings it in line with the SH implementation, the BKL is not
necessary here.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/kernel/process_64.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/sh/kernel/process_64.c b/arch/sh/kernel/process_64.c index a7e5f2e74bac..c90c7e5e5fee 100644 --- a/arch/sh/kernel/process_64.c +++ b/arch/sh/kernel/process_64.c @@ -520,7 +520,6 @@ asmlinkage int sys_execve(char *ufilename, char **uargv, int error; char *filename; - lock_kernel(); filename = getname((char __user *)ufilename); error = PTR_ERR(filename); if (IS_ERR(filename)) @@ -537,7 +536,6 @@ asmlinkage int sys_execve(char *ufilename, char **uargv, } putname(filename); out: - unlock_kernel(); return error; } |