MIPS: Remove unused {get,put}_sigset functions
authorPaul Burton <paul.burton@imgtec.com>
Mon, 27 Jul 2015 19:58:19 +0000 (12:58 -0700)
committerRalf Baechle <ralf@linux-mips.org>
Thu, 3 Sep 2015 10:07:56 +0000 (12:07 +0200)
These functions are never called & thus dead code. Remove them.

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Cc: linux-mips@linux-mips.org
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: Matthew Fortune <matthew.fortune@imgtec.com>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linux-kernel@vger.kernel.org
Cc: Richard Weinberger <richard@nod.at>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Andrew Morton <akpm@linux-foundation.org>
Patchwork: https://patchwork.linux-mips.org/patch/10793/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/signal32.c

index 7c45cb3e075a1a8088e18a88f0795d59a31104d8..f7e89524e3166fc23b0ea7ae08c10137d75de74e 100644 (file)
@@ -130,57 +130,6 @@ static int restore_sigcontext32(struct pt_regs *regs,
        return err ?: protected_restore_fp_context(sc);
 }
 
-/*
- *
- */
-extern void __put_sigset_unknown_nsig(void);
-extern void __get_sigset_unknown_nsig(void);
-
-static inline int put_sigset(const sigset_t *kbuf, compat_sigset_t __user *ubuf)
-{
-       int err = 0;
-
-       if (!access_ok(VERIFY_WRITE, ubuf, sizeof(*ubuf)))
-               return -EFAULT;
-
-       switch (_NSIG_WORDS) {
-       default:
-               __put_sigset_unknown_nsig();
-       case 2:
-               err |= __put_user(kbuf->sig[1] >> 32, &ubuf->sig[3]);
-               err |= __put_user(kbuf->sig[1] & 0xffffffff, &ubuf->sig[2]);
-       case 1:
-               err |= __put_user(kbuf->sig[0] >> 32, &ubuf->sig[1]);
-               err |= __put_user(kbuf->sig[0] & 0xffffffff, &ubuf->sig[0]);
-       }
-
-       return err;
-}
-
-static inline int get_sigset(sigset_t *kbuf, const compat_sigset_t __user *ubuf)
-{
-       int err = 0;
-       unsigned long sig[4];
-
-       if (!access_ok(VERIFY_READ, ubuf, sizeof(*ubuf)))
-               return -EFAULT;
-
-       switch (_NSIG_WORDS) {
-       default:
-               __get_sigset_unknown_nsig();
-       case 2:
-               err |= __get_user(sig[3], &ubuf->sig[3]);
-               err |= __get_user(sig[2], &ubuf->sig[2]);
-               kbuf->sig[1] = sig[2] | (sig[3] << 32);
-       case 1:
-               err |= __get_user(sig[1], &ubuf->sig[1]);
-               err |= __get_user(sig[0], &ubuf->sig[0]);
-               kbuf->sig[0] = sig[0] | (sig[1] << 32);
-       }
-
-       return err;
-}
-
 /*
  * Atomically swap in the new signal mask, and wait for a signal.
  */