All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] netfilter: Remove the spurious \ in __ip_vs_lblc_init
@ 2012-11-19 15:26 Eric W. Biederman
  2012-11-19 19:20 ` David Miller
  2012-11-20  0:06 ` Simon Horman
  0 siblings, 2 replies; 5+ messages in thread
From: Eric W. Biederman @ 2012-11-19 15:26 UTC (permalink / raw)
  To: David Miller; +Cc: netdev


In (464dc801c76a net: Don't export sysctls to unprivileged users)
I typoed and introduced a spurious backslash.  Delete it.

Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
---
 net/netfilter/ipvs/ip_vs_lblc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/netfilter/ipvs/ip_vs_lblc.c b/net/netfilter/ipvs/ip_vs_lblc.c
index d742aa9..fdd89b9 100644
--- a/net/netfilter/ipvs/ip_vs_lblc.c
+++ b/net/netfilter/ipvs/ip_vs_lblc.c
@@ -574,7 +574,7 @@ static int __net_init __ip_vs_lblc_init(struct net *net)
 		register_net_sysctl(net, "net/ipv4/vs", ipvs->lblc_ctl_table);
 	if (!ipvs->lblc_ctl_header) {
 		if (!net_eq(net, &init_net))
-			kfree(ipvs->lblc_ctl_table);\
+			kfree(ipvs->lblc_ctl_table);
 		return -ENOMEM;
 	}
 
-- 
1.7.5.4

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

* Re: [PATCH] netfilter: Remove the spurious \ in __ip_vs_lblc_init
  2012-11-19 15:26 [PATCH] netfilter: Remove the spurious \ in __ip_vs_lblc_init Eric W. Biederman
@ 2012-11-19 19:20 ` David Miller
  2012-11-20  0:06 ` Simon Horman
  1 sibling, 0 replies; 5+ messages in thread
From: David Miller @ 2012-11-19 19:20 UTC (permalink / raw)
  To: ebiederm; +Cc: netdev

From: ebiederm@xmission.com (Eric W. Biederman)
Date: Mon, 19 Nov 2012 07:26:30 -0800

> 
> In (464dc801c76a net: Don't export sysctls to unprivileged users)
> I typoed and introduced a spurious backslash.  Delete it.
> 
> Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>

Applied.

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

* Re: [PATCH] netfilter: Remove the spurious \ in __ip_vs_lblc_init
  2012-11-19 15:26 [PATCH] netfilter: Remove the spurious \ in __ip_vs_lblc_init Eric W. Biederman
  2012-11-19 19:20 ` David Miller
@ 2012-11-20  0:06 ` Simon Horman
  2012-11-20  0:12   ` Simon Horman
  2012-11-20  0:12   ` David Miller
  1 sibling, 2 replies; 5+ messages in thread
From: Simon Horman @ 2012-11-20  0:06 UTC (permalink / raw)
  To: Eric W. Biederman; +Cc: David Miller, netdev, Pablo Neira Ayuso

On Mon, Nov 19, 2012 at 07:26:30AM -0800, Eric W. Biederman wrote:
> 
> In (464dc801c76a net: Don't export sysctls to unprivileged users)
> I typoed and introduced a spurious backslash.  Delete it.
> 
> Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>

Signed-off-by: Simon Horman <horms@verge.net.au>

Pablo, can you take this directly through your tree?

> ---
>  net/netfilter/ipvs/ip_vs_lblc.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/net/netfilter/ipvs/ip_vs_lblc.c b/net/netfilter/ipvs/ip_vs_lblc.c
> index d742aa9..fdd89b9 100644
> --- a/net/netfilter/ipvs/ip_vs_lblc.c
> +++ b/net/netfilter/ipvs/ip_vs_lblc.c
> @@ -574,7 +574,7 @@ static int __net_init __ip_vs_lblc_init(struct net *net)
>  		register_net_sysctl(net, "net/ipv4/vs", ipvs->lblc_ctl_table);
>  	if (!ipvs->lblc_ctl_header) {
>  		if (!net_eq(net, &init_net))
> -			kfree(ipvs->lblc_ctl_table);\
> +			kfree(ipvs->lblc_ctl_table);
>  		return -ENOMEM;
>  	}
>  
> -- 
> 1.7.5.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* Re: [PATCH] netfilter: Remove the spurious \ in __ip_vs_lblc_init
  2012-11-20  0:06 ` Simon Horman
@ 2012-11-20  0:12   ` Simon Horman
  2012-11-20  0:12   ` David Miller
  1 sibling, 0 replies; 5+ messages in thread
From: Simon Horman @ 2012-11-20  0:12 UTC (permalink / raw)
  To: Eric W. Biederman; +Cc: David Miller, netdev, Pablo Neira Ayuso

On Tue, Nov 20, 2012 at 09:06:49AM +0900, Simon Horman wrote:
> On Mon, Nov 19, 2012 at 07:26:30AM -0800, Eric W. Biederman wrote:
> > 
> > In (464dc801c76a net: Don't export sysctls to unprivileged users)
> > I typoed and introduced a spurious backslash.  Delete it.
> > 
> > Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
> 
> Signed-off-by: Simon Horman <horms@verge.net.au>
> 
> Pablo, can you take this directly through your tree?

Scratch that, I see that David has already applied this change.

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

* Re: [PATCH] netfilter: Remove the spurious \ in __ip_vs_lblc_init
  2012-11-20  0:06 ` Simon Horman
  2012-11-20  0:12   ` Simon Horman
@ 2012-11-20  0:12   ` David Miller
  1 sibling, 0 replies; 5+ messages in thread
From: David Miller @ 2012-11-20  0:12 UTC (permalink / raw)
  To: horms; +Cc: ebiederm, netdev, pablo

From: Simon Horman <horms@verge.net.au>
Date: Tue, 20 Nov 2012 09:06:49 +0900

> On Mon, Nov 19, 2012 at 07:26:30AM -0800, Eric W. Biederman wrote:
>> 
>> In (464dc801c76a net: Don't export sysctls to unprivileged users)
>> I typoed and introduced a spurious backslash.  Delete it.
>> 
>> Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
> 
> Signed-off-by: Simon Horman <horms@verge.net.au>
> 
> Pablo, can you take this directly through your tree?

I already applied this to net-next yesterday.

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

end of thread, other threads:[~2012-11-20  0:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-19 15:26 [PATCH] netfilter: Remove the spurious \ in __ip_vs_lblc_init Eric W. Biederman
2012-11-19 19:20 ` David Miller
2012-11-20  0:06 ` Simon Horman
2012-11-20  0:12   ` Simon Horman
2012-11-20  0:12   ` David Miller

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.