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 /ipc | |
| 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 'ipc')
| -rw-r--r-- | ipc/compat_mq.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ipc/compat_mq.c b/ipc/compat_mq.c index af087fb40bf7..d58747293772 100644 --- a/ipc/compat_mq.c +++ b/ipc/compat_mq.c | |||
| @@ -78,10 +78,10 @@ static int compat_prepare_timeout(struct timespec __user **p, | |||
| 78 | return 0; | 78 | return 0; |
| 79 | } | 79 | } |
| 80 | 80 | ||
| 81 | asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes, | 81 | COMPAT_SYSCALL_DEFINE5(mq_timedsend, mqd_t, mqdes, |
| 82 | const char __user *u_msg_ptr, | 82 | const char __user *, u_msg_ptr, |
| 83 | size_t msg_len, unsigned int msg_prio, | 83 | compat_size_t, msg_len, unsigned int, msg_prio, |
| 84 | const struct compat_timespec __user *u_abs_timeout) | 84 | const struct compat_timespec __user *, u_abs_timeout) |
| 85 | { | 85 | { |
| 86 | struct timespec __user *u_ts; | 86 | struct timespec __user *u_ts; |
| 87 | 87 | ||
| @@ -92,10 +92,10 @@ asmlinkage long compat_sys_mq_timedsend(mqd_t mqdes, | |||
| 92 | msg_prio, u_ts); | 92 | msg_prio, u_ts); |
| 93 | } | 93 | } |
| 94 | 94 | ||
| 95 | asmlinkage ssize_t compat_sys_mq_timedreceive(mqd_t mqdes, | 95 | COMPAT_SYSCALL_DEFINE5(mq_timedreceive, mqd_t, mqdes, |
| 96 | char __user *u_msg_ptr, | 96 | char __user *, u_msg_ptr, |
| 97 | size_t msg_len, unsigned int __user *u_msg_prio, | 97 | compat_size_t, msg_len, unsigned int __user *, u_msg_prio, |
| 98 | const struct compat_timespec __user *u_abs_timeout) | 98 | const struct compat_timespec __user *, u_abs_timeout) |
| 99 | { | 99 | { |
| 100 | struct timespec __user *u_ts; | 100 | struct timespec __user *u_ts; |
| 101 | if (compat_prepare_timeout(&u_ts, u_abs_timeout)) | 101 | if (compat_prepare_timeout(&u_ts, u_abs_timeout)) |
