diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-12-25 13:55:50 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-02-03 18:32:58 -0500 |
commit | 056a060803cff0d93b13cc2c5cf74909db24a0b9 (patch) | |
tree | 753162e177c54ffd36aed02086f91642b42145bc /arch/mips/kernel/signal32.c | |
parent | bde208d2e10b8e8cf01cadadf203f5abcf1e4fe2 (diff) | |
download | linux-stable-056a060803cff0d93b13cc2c5cf74909db24a0b9.tar.gz linux-stable-056a060803cff0d93b13cc2c5cf74909db24a0b9.tar.bz2 linux-stable-056a060803cff0d93b13cc2c5cf74909db24a0b9.zip |
mips: switch to generic compat rt_sigprocmask()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/mips/kernel/signal32.c')
-rw-r--r-- | arch/mips/kernel/signal32.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/arch/mips/kernel/signal32.c b/arch/mips/kernel/signal32.c index ff6146dddf5f..e2f0728c8cc0 100644 --- a/arch/mips/kernel/signal32.c +++ b/arch/mips/kernel/signal32.c @@ -614,28 +614,6 @@ out: return ret; } -SYSCALL_DEFINE4(32_rt_sigprocmask, int, how, compat_sigset_t __user *, set, - compat_sigset_t __user *, oset, unsigned int, sigsetsize) -{ - sigset_t old_set, new_set; - int ret; - mm_segment_t old_fs = get_fs(); - - if (set && get_sigset(&new_set, set)) - return -EFAULT; - - set_fs(KERNEL_DS); - ret = sys_rt_sigprocmask(how, set ? (sigset_t __user *)&new_set : NULL, - oset ? (sigset_t __user *)&old_set : NULL, - sigsetsize); - set_fs(old_fs); - - if (!ret && oset && put_sigset(&old_set, oset)) - return -EFAULT; - - return ret; -} - SYSCALL_DEFINE2(32_rt_sigpending, compat_sigset_t __user *, uset, unsigned int, sigsetsize) { |