[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <tip-8c0daee204f794d095ae301f408c5f9f40e4547d@git.kernel.org>
Date: Wed, 14 Oct 2009 15:47:24 GMT
From: tip-bot for John Kacur <jkacur@...hat.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
jkacur@...hat.com, yasutake.koichi@...panasonic.com,
fweisbec@...il.com, dhowells@...hat.com, tglx@...utronix.de
Subject: [tip:bkl/arch] mn10300: Remove the BKL from sys_execve
Commit-ID: 8c0daee204f794d095ae301f408c5f9f40e4547d
Gitweb: http://git.kernel.org/tip/8c0daee204f794d095ae301f408c5f9f40e4547d
Author: John Kacur <jkacur@...hat.com>
AuthorDate: Mon, 12 Oct 2009 23:41:55 +0200
Committer: Thomas Gleixner <tglx@...utronix.de>
CommitDate: Wed, 14 Oct 2009 17:18:15 +0200
mn10300: Remove the BKL from sys_execve
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@...hat.com>
Reviewed-by: Frederic Weisbecker <fweisbec@...il.com>
Acked-by: David Howells <dhowells@...hat.com>
Cc: Koichi Yasutake <yasutake.koichi@...panasonic.com>
LKML-Reference: <alpine.LFD.2.00.0910130016540.3658@...alhost.localdomain>
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
---
arch/mn10300/kernel/process.c | 12 ++++--------
1 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/arch/mn10300/kernel/process.c b/arch/mn10300/kernel/process.c
index 892cce8..ec8a21d 100644
--- a/arch/mn10300/kernel/process.c
+++ b/arch/mn10300/kernel/process.c
@@ -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;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists