diff options
Diffstat (limited to 'ipc/compat.c')
-rw-r--r-- | ipc/compat.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ipc/compat.c b/ipc/compat.c index 871d07da0a52..b17bf93d7b49 100644 --- a/ipc/compat.c +++ b/ipc/compat.c | |||
@@ -79,13 +79,3 @@ void to_compat_ipc_perm(struct compat_ipc_perm *to, struct ipc64_perm *from) | |||
79 | to->mode = from->mode; | 79 | to->mode = from->mode; |
80 | to->seq = from->seq; | 80 | to->seq = from->seq; |
81 | } | 81 | } |
82 | |||
83 | COMPAT_SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsems, | ||
84 | unsigned, nsops, | ||
85 | const struct compat_timespec __user *, timeout) | ||
86 | { | ||
87 | struct timespec __user *ts64; | ||
88 | if (compat_convert_timespec(&ts64, timeout)) | ||
89 | return -EFAULT; | ||
90 | return sys_semtimedop(semid, tsems, nsops, ts64); | ||
91 | } | ||