Mark arguments to certain syscalls as being const
Mark arguments to certain system calls as being const where they should be but aren't. The list includes: (*) The filename arguments of various stat syscalls, execve(), various utimes syscalls and some mount syscalls. (*) The filename arguments of some syscall helpers relating to the above. (*) The buffer argument of various write syscalls. Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: David S. Miller <davem@davemloft.net> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:

committed by
Linus Torvalds

parent
b84ae4a140
commit
c788732523
@@ -162,7 +162,7 @@ static int cp_compat_stat64(struct kstat *stat,
|
||||
return err;
|
||||
}
|
||||
|
||||
asmlinkage long compat_sys_stat64(char __user * filename,
|
||||
asmlinkage long compat_sys_stat64(const char __user * filename,
|
||||
struct compat_stat64 __user *statbuf)
|
||||
{
|
||||
struct kstat stat;
|
||||
@@ -173,7 +173,7 @@ asmlinkage long compat_sys_stat64(char __user * filename,
|
||||
return error;
|
||||
}
|
||||
|
||||
asmlinkage long compat_sys_lstat64(char __user * filename,
|
||||
asmlinkage long compat_sys_lstat64(const char __user * filename,
|
||||
struct compat_stat64 __user *statbuf)
|
||||
{
|
||||
struct kstat stat;
|
||||
@@ -195,7 +195,8 @@ asmlinkage long compat_sys_fstat64(unsigned int fd,
|
||||
return error;
|
||||
}
|
||||
|
||||
asmlinkage long compat_sys_fstatat64(unsigned int dfd, char __user *filename,
|
||||
asmlinkage long compat_sys_fstatat64(unsigned int dfd,
|
||||
const char __user *filename,
|
||||
struct compat_stat64 __user * statbuf, int flag)
|
||||
{
|
||||
struct kstat stat;
|
||||
|
Reference in New Issue
Block a user