aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/compat.h
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2014-03-04 06:39:03 -0500
committerHeiko Carstens <heiko.carstens@de.ibm.com>2014-03-06 09:35:09 -0500
commit291fdb0bcebd5e8db6af767c1fdc522167dad73d (patch)
tree019dbcd82cdc4a2e9d6c2426f0c52b8c2eb945e0 /include/linux/compat.h
parentc2e7c3d0ef0d1a3765792a35ae9e6f91a3025214 (diff)
ipc/compat_sys_msgrcv: change msgtyp type from long to compat_long_t
Change the type of compat_sys_msgrcv's msgtyp parameter from long to compat_long_t, since compat user space passes only a 32 bit signed value. Let the compat wrapper do proper sign extension to 64 bit of this parameter. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Diffstat (limited to 'include/linux/compat.h')
-rw-r--r--include/linux/compat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/compat.h b/include/linux/compat.h
index 4c42df3fce37..179b1da9e19f 100644
--- a/include/linux/compat.h
+++ b/include/linux/compat.h
@@ -321,7 +321,7 @@ asmlinkage long compat_sys_semctl(int semid, int semnum, int cmd, int arg);
321asmlinkage long compat_sys_msgsnd(int msqid, compat_uptr_t msgp, 321asmlinkage long compat_sys_msgsnd(int msqid, compat_uptr_t msgp,
322 compat_ssize_t msgsz, int msgflg); 322 compat_ssize_t msgsz, int msgflg);
323asmlinkage long compat_sys_msgrcv(int msqid, compat_uptr_t msgp, 323asmlinkage long compat_sys_msgrcv(int msqid, compat_uptr_t msgp,
324 compat_ssize_t msgsz, long msgtyp, int msgflg); 324 compat_ssize_t msgsz, compat_long_t msgtyp, int msgflg);
325long compat_sys_msgctl(int first, int second, void __user *uptr); 325long compat_sys_msgctl(int first, int second, void __user *uptr);
326long compat_sys_shmctl(int first, int second, void __user *uptr); 326long compat_sys_shmctl(int first, int second, void __user *uptr);
327long compat_sys_semtimedop(int semid, struct sembuf __user *tsems, 327long compat_sys_semtimedop(int semid, struct sembuf __user *tsems,