projects
/
profile
/
ivi
/
kernel-x86-ivi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ed3592
)
sh: Drop the BKL from sys_execve() on SH-5.
author
Paul Mundt
<lethal@linux-sh.org>
Wed, 7 Jan 2009 08:42:32 +0000
(17:42 +0900)
committer
Paul Mundt
<lethal@linux-sh.org>
Wed, 21 Jan 2009 08:42:55 +0000
(17:42 +0900)
Brings it in line with the SH implementation, the BKL is not
necessary here.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/process_64.c
patch
|
blob
|
history
diff --git
a/arch/sh/kernel/process_64.c
b/arch/sh/kernel/process_64.c
index
a7e5f2e
..
c90c7e5
100644
(file)
--- 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;
}