Skip to content

Commit

Permalink
mn10300: Remove the BKL from sys_execve
Browse files Browse the repository at this point in the history
This looks like a cut-and-paste from functionality that no-longer
needs the bkl Just remove it. Also, rewrite slightly so that it looks
closer to sys_execve on other architectures.

Signed-off-by: John Kacur <jkacur@redhat.com>
Reviewed-by: Frederic Weisbecker <fweisbec@gmail.com>
Acked-by: David Howells <dhowells@redhat.com>
Cc: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
LKML-Reference: <alpine.LFD.2.00.0910130016540.3658@localhost.localdomain>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
John Kacur authored and Thomas Gleixner committed Oct 14, 2009
1 parent eb7371d commit 8c0daee
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions arch/mn10300/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,16 +275,12 @@ asmlinkage long sys_execve(char __user *name,
char *filename;
int error;

lock_kernel();

filename = getname(name);
error = PTR_ERR(filename);
if (!IS_ERR(filename)) {
error = do_execve(filename, argv, envp, __frame);
putname(filename);
}

unlock_kernel();
if (IS_ERR(filename))
return error;
error = do_execve(filename, argv, envp, __frame);
putname(filename);
return error;
}

Expand Down

0 comments on commit 8c0daee

Please sign in to comment.