Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1729045
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] signal: remove unused variable mask |
| Date | 2017-09-08 18:00 +0200 |
| Message-ID | <untRf-Aj-11@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: Colin Ian King <colin.king@canonical.com>
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@canonical.com>
---
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
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] signal: remove unused variable mask Colin King <colin.king@canonical.com> - 2017-09-08 18:00 +0200 Re: [PATCH] signal: remove unused variable mask Al Viro <viro@ZenIV.linux.org.uk> - 2017-09-08 19:20 +0200
csiph-web