aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/kernel/entry.h
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2009-01-14 08:14:36 -0500
committerHeiko Carstens <heiko.carstens@de.ibm.com>2009-01-14 08:15:32 -0500
commit26689452f5ca201add63b1b1ff0dbcf82d6885e7 (patch)
tree04fd8fa7b9dec6154166b0b8fcb962d05b067a45 /arch/s390/kernel/entry.h
parent2b66421995d2e93c9d1a0111acf2581f8529c6e5 (diff)
[CVE-2009-0029] s390 specific system call wrappers
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/entry.h')
-rw-r--r--arch/s390/kernel/entry.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/arch/s390/kernel/entry.h b/arch/s390/kernel/entry.h
index 5c9b5b37004e..950c59c6688b 100644
--- a/arch/s390/kernel/entry.h
+++ b/arch/s390/kernel/entry.h
@@ -31,21 +31,22 @@ struct old_sigaction;
31struct sel_arg_struct; 31struct sel_arg_struct;
32 32
33long sys_mmap2(struct mmap_arg_struct __user *arg); 33long sys_mmap2(struct mmap_arg_struct __user *arg);
34long old_mmap(struct mmap_arg_struct __user *arg); 34long sys_s390_old_mmap(struct mmap_arg_struct __user *arg);
35long sys_ipc(uint call, int first, unsigned long second, 35long sys_ipc(uint call, int first, unsigned long second,
36 unsigned long third, void __user *ptr); 36 unsigned long third, void __user *ptr);
37long s390x_newuname(struct new_utsname __user *name); 37long sys_s390_newuname(struct new_utsname __user *name);
38long s390x_personality(unsigned long personality); 38long sys_s390_personality(unsigned long personality);
39long s390_fadvise64(int fd, u32 offset_high, u32 offset_low, 39long sys_s390_fadvise64(int fd, u32 offset_high, u32 offset_low,
40 size_t len, int advice); 40 size_t len, int advice);
41long s390_fadvise64_64(struct fadvise64_64_args __user *args); 41long sys_s390_fadvise64_64(struct fadvise64_64_args __user *args);
42long s390_fallocate(int fd, int mode, loff_t offset, u32 len_high, u32 len_low); 42long sys_s390_fallocate(int fd, int mode, loff_t offset, u32 len_high,
43 u32 len_low);
43long sys_fork(void); 44long sys_fork(void);
44long sys_clone(void); 45long sys_clone(void);
45long sys_vfork(void); 46long sys_vfork(void);
46void execve_tail(void); 47void execve_tail(void);
47long sys_execve(void); 48long sys_execve(void);
48int sys_sigsuspend(int history0, int history1, old_sigset_t mask); 49long sys_sigsuspend(int history0, int history1, old_sigset_t mask);
49long sys_sigaction(int sig, const struct old_sigaction __user *act, 50long sys_sigaction(int sig, const struct old_sigaction __user *act,
50 struct old_sigaction __user *oact); 51 struct old_sigaction __user *oact);
51long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss); 52long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss);