diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2010-08-13 08:06:39 (GMT) |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2010-08-13 08:06:54 (GMT) |
commit | 3a1103703538d164551dc9b5a734a2c8ebcd27ee (patch) | |
tree | 78cb5db53ac92c2040cceceaca96f9a85a27bfb9 /arch/s390/kernel/entry.h | |
parent | 625c94df22fb4247c8ccd54635a8ec77cb60d651 (diff) | |
download | linux-3a1103703538d164551dc9b5a734a2c8ebcd27ee.tar.xz |
[S390] sys_personality: follow u_long to unsigned int conversion
commit 485d527686850d68a0e9006dd9904f19f122485e "sys_personality: change
sys_personality() to accept "unsigned int" instead of u_long" changed
the syscall interface for sys_personality.
Just follow the common code change in our arch code to avoid confusion.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/entry.h')
-rw-r--r-- | arch/s390/kernel/entry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/entry.h b/arch/s390/kernel/entry.h index eb15c12..5bb1e6b 100644 --- a/arch/s390/kernel/entry.h +++ b/arch/s390/kernel/entry.h @@ -31,7 +31,7 @@ struct old_sigaction; long sys_mmap2(struct s390_mmap_arg_struct __user *arg); long sys_s390_ipc(uint call, int first, unsigned long second, unsigned long third, void __user *ptr); -long sys_s390_personality(unsigned long personality); +long sys_s390_personality(unsigned int personality); long sys_s390_fadvise64(int fd, u32 offset_high, u32 offset_low, size_t len, int advice); long sys_s390_fadvise64_64(struct fadvise64_64_args __user *args); |