All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH for 3.19.y to 3.10.y] net: sysctl_net_core: remove unused variable one
@ 2015-04-26  7:11 Dirk Behme
  2015-04-26  7:19 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Dirk Behme @ 2015-04-26  7:11 UTC (permalink / raw)
  To: stable; +Cc: Dirk Behme

Back porting the upstream commit b1cb59cf2efe7 ("net: sysctl_net_core: check
SNDBUF and RCVBUF for min length") to -stable introduces a compiler warning

net/core/sysctl_net_core.c:26:12: warning: ‘one’ defined but not used [-Wunused-variable]
 static int one = 1;

While upstream has an additional user of the variable 'one' after that commit
("tstamp_allow_data"), -stable doesn't have any user of 'one' any more, resulting
in above compiler warning. Or in other words: -stable doesn't have the
commit b245be1f4db1a0 ("net-timestamp: no-payload only sysctl") introducing the
additional user of 'one'.

Fix the compiler warning by removing the unused variable.

Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
---

Note: This has been observed on 3.14.y. Having a quick look through the logs it
      should apply to all -stable branches from 3.19.y to 3.10.y.

 net/core/sysctl_net_core.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net/core/sysctl_net_core.c b/net/core/sysctl_net_core.c
index e731c96..8725b91 100644
--- a/net/core/sysctl_net_core.c
+++ b/net/core/sysctl_net_core.c
@@ -23,7 +23,6 @@
 #include <net/pkt_sched.h>
 
 static int zero = 0;
-static int one = 1;
 static int ushort_max = USHRT_MAX;
 static int min_sndbuf = SOCK_MIN_SNDBUF;
 static int min_rcvbuf = SOCK_MIN_RCVBUF;
-- 
2.3.6


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-04-26  8:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-26  7:11 [PATCH for 3.19.y to 3.10.y] net: sysctl_net_core: remove unused variable one Dirk Behme
2015-04-26  7:19 ` Greg KH
2015-04-26  8:09   ` Dirk Behme
2015-04-26  8:41     ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.