aboutsummaryrefslogtreecommitdiffstats
path: root/arch/tile/kernel
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2010-09-15 11:16:05 -0400
committerChris Metcalf <cmetcalf@tilera.com>2010-09-15 11:16:05 -0400
commite6e6c46d759cd013cb57eba112a4129a3a353c4b (patch)
tree12dbe6085c713832d0df037efc709e2b0b08ad2b /arch/tile/kernel
parentLinux 2.6.36-rc4 (diff)
downloadlinux-dev-e6e6c46d759cd013cb57eba112a4129a3a353c4b.tar.xz
linux-dev-e6e6c46d759cd013cb57eba112a4129a3a353c4b.zip
arch/tile: finish const-ifying sys_execve()
The sys_execve() implementation was properly const-ified but not the declaration, the syscall wrappers, or the compat version. This change completes the constification process. Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/kernel')
-rw-r--r--arch/tile/kernel/process.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/tile/kernel/process.c b/arch/tile/kernel/process.c
index 985cc28c74c5..88be49e3aa25 100644
--- a/arch/tile/kernel/process.c
+++ b/arch/tile/kernel/process.c
@@ -561,8 +561,9 @@ out:
}
#ifdef CONFIG_COMPAT
-long _compat_sys_execve(char __user *path, compat_uptr_t __user *argv,
- compat_uptr_t __user *envp, struct pt_regs *regs)
+long _compat_sys_execve(const char __user *path,
+ const compat_uptr_t __user *argv,
+ const compat_uptr_t __user *envp, struct pt_regs *regs)
{
long error;
char *filename;