diff options
| author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2014-03-04 10:19:16 -0500 |
|---|---|---|
| committer | Heiko Carstens <heiko.carstens@de.ibm.com> | 2014-03-06 10:30:45 -0500 |
| commit | 8eee9093cdbeb2aa89d67dc1a3fd118acabaea52 (patch) | |
| tree | ad181d1ee2fab9db22b51676cb259083fe890423 /include/linux | |
| parent | 932602e238329da99f8482c1b721549531fbfe7f (diff) | |
ipc/compat: convert to COMPAT_SYSCALL_DEFINE with changing parameter types
In order to allow the COMPAT_SYSCALL_DEFINE macro generate code that
performs proper zero and sign extension convert all 64 bit parameters
to their corresponding 32 bit compat counterparts.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/compat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/compat.h b/include/linux/compat.h index fea8ee9afe22..f670e591aff8 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h | |||
| @@ -655,11 +655,11 @@ asmlinkage long compat_sys_mq_open(const char __user *u_name, | |||
| 655 | struct compat_mq_attr __user *u_attr); | 655 | struct compat_mq_attr __user *u_attr); |
| 656 | asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes, | 656 | asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes, |
| 657 | const char __user *u_msg_ptr, | 657 | const char __user *u_msg_ptr, |
| 658 | size_t msg_len, unsigned int msg_prio, | 658 | compat_size_t msg_len, unsigned int msg_prio, |
| 659 | const struct compat_timespec __user *u_abs_timeout); | 659 | const struct compat_timespec __user *u_abs_timeout); |
| 660 | asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes, | 660 | asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes, |
| 661 | char __user *u_msg_ptr, | 661 | char __user *u_msg_ptr, |
| 662 | size_t msg_len, unsigned int __user *u_msg_prio, | 662 | compat_size_t msg_len, unsigned int __user *u_msg_prio, |
| 663 | const struct compat_timespec __user *u_abs_timeout); | 663 | const struct compat_timespec __user *u_abs_timeout); |
| 664 | asmlinkage long compat_sys_socketcall(int call, u32 __user *args); | 664 | asmlinkage long compat_sys_socketcall(int call, u32 __user *args); |
| 665 | asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args); | 665 | asmlinkage long compat_sys_sysctl(struct compat_sysctl_args __user *args); |
