[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <2375c9f90812021451hfd77292yf2463ca99d07b88e@mail.gmail.com>
Date: Tue, 2 Dec 2008 22:51:09 +0000
From: "Américo Wang" <xiyou.wangcong@...il.com>
To: LKML <linux-kernel@...r.kernel.org>,
"Andrew Morton" <akpm@...ux-foundation.org>
Cc: jdike@...toit.com, user-mode-linux-devel@...ts.sourceforge.net
Subject: [Patch] uml: drop const qualifier for kernel_execve()
UML implementation of kernel_execve() should not have const qualifier,
because it will finally call do_execve() which doesn't have.
This also shuts up a gcc warning on this.
Signed-off-by: WANG Cong <wangcong@...ux.org>
Cc: Jeff Dike <jdike@...toit.com>
---
diff --git a/arch/um/kernel/syscall.c b/arch/um/kernel/syscall.c
index c4df705..4fa62ee 100644
--- a/arch/um/kernel/syscall.c
+++ b/arch/um/kernel/syscall.c
@@ -120,7 +120,7 @@ long sys_olduname(struct oldold_utsname __user * name)
return error;
}
-int kernel_execve(const char *filename, char *const argv[], char *const envp[])
+int kernel_execve(char *filename, char * argv[], char * envp[])
{
mm_segment_t fs;
int ret;
--
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