stable.vger.kernel.org archive mirror
 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

* Re: [PATCH for 3.19.y to 3.10.y] net: sysctl_net_core: remove unused variable one
  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
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2015-04-26  7:19 UTC (permalink / raw)
  To: Dirk Behme; +Cc: stable

On Sun, Apr 26, 2015 at 09:11:03AM +0200, Dirk Behme wrote:
> 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.

No, this was done on purpose, sorry, I can't take this patch.  The
network maintainer wants it this way to be easier to backport things.

We can live with the compiler warning.

thanks,

greg k-h

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

* Re: [PATCH for 3.19.y to 3.10.y] net: sysctl_net_core: remove unused variable one
  2015-04-26  7:19 ` Greg KH
@ 2015-04-26  8:09   ` Dirk Behme
  2015-04-26  8:41     ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Dirk Behme @ 2015-04-26  8:09 UTC (permalink / raw)
  To: Greg KH; +Cc: stable

On 26.04.2015 09:19, Greg KH wrote:
> On Sun, Apr 26, 2015 at 09:11:03AM +0200, Dirk Behme wrote:
>> 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.
>
> No, this was done on purpose, sorry, I can't take this patch.  The
> network maintainer wants it this way to be easier to backport things.
>
> We can live with the compiler warning.

Would it be an option to pick

b245be1f4db1a0 ("net-timestamp: no-payload only sysctl")

then, too?

Thanks

Dirk


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

* Re: [PATCH for 3.19.y to 3.10.y] net: sysctl_net_core: remove unused variable one
  2015-04-26  8:09   ` Dirk Behme
@ 2015-04-26  8:41     ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2015-04-26  8:41 UTC (permalink / raw)
  To: Dirk Behme; +Cc: stable

On Sun, Apr 26, 2015 at 10:09:23AM +0200, Dirk Behme wrote:
> On 26.04.2015 09:19, Greg KH wrote:
> >On Sun, Apr 26, 2015 at 09:11:03AM +0200, Dirk Behme wrote:
> >>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.
> >
> >No, this was done on purpose, sorry, I can't take this patch.  The
> >network maintainer wants it this way to be easier to backport things.
> >
> >We can live with the compiler warning.
> 
> Would it be an option to pick
> 
> b245be1f4db1a0 ("net-timestamp: no-payload only sysctl")
> 
> then, too?

That's a new feature, which isn't ok for stable kernels, right?

Also, the networking mailing list and maintainer needs to be asked about
networking stable patches, not me, it's up to him what he wants to see
applied to the stable kernels.

thanks,

greg k-h

^ permalink raw reply	[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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).