diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-09 08:07:51 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-09 08:07:51 -0800 |
commit | 2588465badb648a50cd19623f0dd0063c90d4e31 (patch) | |
tree | d114566c6b0c1d5b0958493a7a2ae5f1f2c6838c /arch/blackfin | |
parent | 18821b0408efc92ec2804128ba9382a3bcebf132 (diff) | |
parent | 8c0daee204f794d095ae301f408c5f9f40e4547d (diff) | |
download | linux-stable-2588465badb648a50cd19623f0dd0063c90d4e31.tar.gz linux-stable-2588465badb648a50cd19623f0dd0063c90d4e31.tar.bz2 linux-stable-2588465badb648a50cd19623f0dd0063c90d4e31.zip |
Merge branch 'bkl-arch-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'bkl-arch-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
mn10300: Remove the BKL from sys_execve
m68knommu: Remove the BKL from sys_execve
m68k: Remove the BKL from sys_execve
h83000: Remove BKL from sys_execve
frv: Remove the BKL from sys_execve
blackfin: Remove the BKL from sys_execve
um: Remove BKL from mmapper
um: Remove BKL from random
s390: Remove BKL from prng
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/kernel/process.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/blackfin/kernel/process.c b/arch/blackfin/kernel/process.c index 5cc7e2e9e415..45876427eb2d 100644 --- a/arch/blackfin/kernel/process.c +++ b/arch/blackfin/kernel/process.c @@ -215,22 +215,18 @@ copy_thread(unsigned long clone_flags, /* * sys_execve() executes a new program. */ - asmlinkage int sys_execve(char __user *name, char __user * __user *argv, char __user * __user *envp) { int error; char *filename; struct pt_regs *regs = (struct pt_regs *)((&name) + 6); - lock_kernel(); filename = getname(name); error = PTR_ERR(filename); if (IS_ERR(filename)) - goto out; + return error; error = do_execve(filename, argv, envp, regs); putname(filename); - out: - unlock_kernel(); return error; } |