From: Colin Ian King <colin.king@xxxxxxxxxxxxx> The variable mask was introduced by an earlier commit and does not seem to be used, so remove it. Fixes gcc warning: kernel/signal.c:3443:19: warning: unused variable ‘mask’ [-Wunused-variable] Fixes: fc271087ebcb ("signal: replace sigset_to_compat() with put_compat_sigset()") Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx> --- kernel/signal.c | 1 - 1 file changed, 1 deletion(-) diff --git a/kernel/signal.c b/kernel/signal.c index 3198a7d2e5ff..36a523640894 100644 --- a/kernel/signal.c +++ b/kernel/signal.c @@ -3440,7 +3440,6 @@ COMPAT_SYSCALL_DEFINE4(rt_sigaction, int, sig, if (act) { compat_uptr_t handler; - compat_sigset_t mask; ret = get_user(handler, &act->sa_handler); new_ka.sa.sa_handler = compat_ptr(handler); #ifdef __ARCH_HAS_SA_RESTORER -- 2.14.1 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html