All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL nf-2.6] IPVS
@ 2011-05-19 12:32 Simon Horman
  2011-05-19 12:32 ` [PATCH] IPVS: Free resources on module removal Simon Horman
  0 siblings, 1 reply; 20+ messages in thread
From: Simon Horman @ 2011-05-19 12:32 UTC (permalink / raw)
  To: lvs-devel, netdev, netfilter-devel, netfilter
  Cc: Wensong Zhang, Julian Anastasov, Patrick McHardy,
	Hans Schillstrom, Dave Jones, Pablo Neira Ayuso

Hi Pablo, Hi Patrick,

please consider pulling

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-2.6.git master

to get the following fix for IPVS.

I have based my tree on net-2.6 as it contains all of the IPVS patches -
currently some are in Patrick's tree and one of them is in Pablo's tree but
all of them are in Dave's tree.

Please feel free to apply the patch manually if that suits you better.

Simon Horman (1):
      IPVS: Free resources on module removal

 net/netfilter/ipvs/ip_vs_ctl.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

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

* [PATCH] IPVS: Free resources on module removal
  2011-05-19 12:32 [GIT PULL nf-2.6] IPVS Simon Horman
@ 2011-05-19 12:32 ` Simon Horman
  0 siblings, 0 replies; 20+ messages in thread
From: Simon Horman @ 2011-05-19 12:32 UTC (permalink / raw)
  To: lvs-devel, netdev, netfilter-devel, netfilter
  Cc: Wensong Zhang, Julian Anastasov, Patrick McHardy,
	Hans Schillstrom, Dave Jones, Pablo Neira Ayuso, Simon Horman

Reported-by: Dave Jones <davej@redhat.com>
Acked-by: Julian Anastasov <ja@ssi.bg>
Signed-off-by: Hans Schillstrom <hans.schillstrom@ericsson.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
 net/netfilter/ipvs/ip_vs_ctl.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/net/netfilter/ipvs/ip_vs_ctl.c b/net/netfilter/ipvs/ip_vs_ctl.c
index 37890f2..9b9039b 100644
--- a/net/netfilter/ipvs/ip_vs_ctl.c
+++ b/net/netfilter/ipvs/ip_vs_ctl.c
@@ -3774,6 +3774,7 @@ err_sock:
 void ip_vs_control_cleanup(void)
 {
 	EnterFunction(2);
+	unregister_netdevice_notifier(&ip_vs_dst_notifier);
 	ip_vs_genl_unregister();
 	nf_unregister_sockopt(&ip_vs_sockopts);
 	LeaveFunction(2);
-- 
1.7.4.4


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

* Re: [GIT PULL nf-2.6] IPVS
  2011-07-29  1:39   ` David Miller
@ 2011-07-29 14:26     ` Patrick McHardy
  0 siblings, 0 replies; 20+ messages in thread
From: Patrick McHardy @ 2011-07-29 14:26 UTC (permalink / raw)
  To: David Miller
  Cc: horms, lvs-devel, netdev, netfilter-devel, netfilter, wensong,
	ja, pablo, davej, rdunlap, huajun.li.lee, davem

On 29.07.2011 03:39, David Miller wrote:
> From: Simon Horman <horms@verge.net.au>
> Date: Fri, 29 Jul 2011 09:12:06 +0900
> 
>> What is the best way forward to get this both in 3.1 and 3.0 -stable?
> 
> I'll take this directly and do the -stable submission too.
> 

Sorry, I seem to have missed this, also can't find the email in my
inbox for some reason. Anyways, generally please do the stable
submissions for IPVS yourself (after the patch went upstream of
course).

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

* Re: [GIT PULL nf-2.6] IPVS
  2011-07-29  0:12 ` Simon Horman
@ 2011-07-29  1:39   ` David Miller
  2011-07-29 14:26     ` Patrick McHardy
  0 siblings, 1 reply; 20+ messages in thread
From: David Miller @ 2011-07-29  1:39 UTC (permalink / raw)
  To: horms
  Cc: lvs-devel, netdev, netfilter-devel, netfilter, wensong, ja,
	kaber, pablo, davej, rdunlap, huajun.li.lee, davem

From: Simon Horman <horms@verge.net.au>
Date: Fri, 29 Jul 2011 09:12:06 +0900

> What is the best way forward to get this both in 3.1 and 3.0 -stable?

I'll take this directly and do the -stable submission too.

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

* Re: [GIT PULL nf-2.6] IPVS
  2011-07-22  0:18 [GIT PULL nf-2.6] IPVS Simon Horman
@ 2011-07-29  0:12 ` Simon Horman
  2011-07-29  1:39   ` David Miller
  0 siblings, 1 reply; 20+ messages in thread
From: Simon Horman @ 2011-07-29  0:12 UTC (permalink / raw)
  To: lvs-devel, netdev, netfilter-devel, netfilter
  Cc: Wensong Zhang, Julian Anastasov, Patrick McHardy,
	Pablo Neira Ayuso, Dave Jones, Randy Dunlap, Huajun Li,
	David S. Miller

On Fri, Jul 22, 2011 at 09:18:39AM +0900, Simon Horman wrote:
> Hi Pablo, Hi Patrick,
> 
> please consider pulling
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-2.6.git master
> 
> to get the following crash on module removal fix for IPVS.
> 
> Sorry for sending this so very, very late in the release cycle.
> I had sent it earlier but it seems to have slipped through the cracks
> somehow.
> 
> Simon Horman (1):
>       IPVS: Free resources on module removal
> 
>  net/netfilter/ipvs/ip_vs_ctl.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)

Ping.

What is the best way forward to get this both in 3.1 and 3.0 -stable?

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

* [GIT PULL nf-2.6] IPVS
@ 2011-07-22  0:18 Simon Horman
  2011-07-29  0:12 ` Simon Horman
  0 siblings, 1 reply; 20+ messages in thread
From: Simon Horman @ 2011-07-22  0:18 UTC (permalink / raw)
  To: lvs-devel, netdev, netfilter-devel, netfilter
  Cc: Wensong Zhang, Julian Anastasov, Patrick McHardy,
	Pablo Neira Ayuso, Dave Jones, Randy Dunlap, Huajun Li

Hi Pablo, Hi Patrick,

please consider pulling

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-2.6.git master

to get the following crash on module removal fix for IPVS.

Sorry for sending this so very, very late in the release cycle.
I had sent it earlier but it seems to have slipped through the cracks
somehow.

Simon Horman (1):
      IPVS: Free resources on module removal

 net/netfilter/ipvs/ip_vs_ctl.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)


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

* Re: [GIT PULL nf-2.6] IPVS
  2011-06-16 15:11 ` Patrick McHardy
@ 2011-06-16 22:06   ` Simon Horman
  0 siblings, 0 replies; 20+ messages in thread
From: Simon Horman @ 2011-06-16 22:06 UTC (permalink / raw)
  To: Patrick McHardy
  Cc: lvs-devel, netdev, netfilter-devel, netfilter, Wensong Zhang,
	Julian Anastasov, Pablo Neira Ayuso

On Thu, Jun 16, 2011 at 05:11:10PM +0200, Patrick McHardy wrote:
> On 13.06.2011 10:47, Simon Horman wrote:
> > Hi Pablo,
> > 
> > please consider pulling
> > git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-2.6.git master
> > to get the following fix from Hans.
> > 
> > I believe this change should be considered for -stable.
> 
> Just send it to the stable people once it hits upstream. I'll
> send it to Dave tonight.

Understood, will do.

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

* Re: [GIT PULL nf-2.6] IPVS
  2011-06-13  8:47 Simon Horman
@ 2011-06-16 15:11 ` Patrick McHardy
  2011-06-16 22:06   ` Simon Horman
  0 siblings, 1 reply; 20+ messages in thread
From: Patrick McHardy @ 2011-06-16 15:11 UTC (permalink / raw)
  To: Simon Horman
  Cc: lvs-devel, netdev, netfilter-devel, netfilter, Wensong Zhang,
	Julian Anastasov, Pablo Neira Ayuso

On 13.06.2011 10:47, Simon Horman wrote:
> Hi Pablo,
> 
> please consider pulling
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-2.6.git master
> to get the following fix from Hans.
> 
> I believe this change should be considered for -stable.

Just send it to the stable people once it hits upstream. I'll
send it to Dave tonight.

> Hans Schillstrom (1):
>       IPVS netns exit causes crash in conntrac

Pulled, thanks Simon.


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

* [GIT PULL nf-2.6] IPVS
@ 2011-06-13  8:47 Simon Horman
  2011-06-16 15:11 ` Patrick McHardy
  0 siblings, 1 reply; 20+ messages in thread
From: Simon Horman @ 2011-06-13  8:47 UTC (permalink / raw)
  To: lvs-devel, netdev, netfilter-devel, netfilter
  Cc: Wensong Zhang, Julian Anastasov, Patrick McHardy, Pablo Neira Ayuso

Hi Pablo,

please consider pulling
git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-2.6.git master
to get the following fix from Hans.

I believe this change should be considered for -stable.

Hans Schillstrom (1):
      IPVS netns exit causes crash in conntrack


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

* Re: [GIT PULL nf-2.6] IPVS
  2011-05-02 12:47 Simon Horman
@ 2011-05-02 13:03 ` Simon Horman
  0 siblings, 0 replies; 20+ messages in thread
From: Simon Horman @ 2011-05-02 13:03 UTC (permalink / raw)
  To: lvs-devel, netdev, netfilter-devel, netfilter
  Cc: Wensong Zhang, Julian Anastasov, Patrick McHardy,
	Hans Schillstrom, Hans Schillstrom, Eric W. Biederman

On Mon, May 02, 2011 at 09:47:25PM +0900, Simon Horman wrote:
> 
> Hi Patrick,
> 
> please consider pulling
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-2.6.git master
> to get the following fix from Hans. They resolve some problems related
> to his netns for IPVS work which was incorporated into 2.6.39-rc1.

Sorry, please ignore this.
The second patch is one of the non-pressing ones.
I'll fix things up and repost.

> The pull request is based on nf-2.6/master.
> 
> There are other less-pressing changes from Hans which
> I plan to get you to pull into nf-next-2.6 once these
> changes make it there (presumably via net-2.6 and then net-next-2.6).
> 
> Hans Schillstrom (2):
>       IPVS: Change of socket usage to enable name space exit.
>       IPVS: labels at pos 0
> 
>  net/netfilter/ipvs/ip_vs_core.c |   12 ++++----
>  net/netfilter/ipvs/ip_vs_ctl.c  |    8 +++---
>  net/netfilter/ipvs/ip_vs_sync.c |   58 +++++++++++++++++++++++++--------------
>  3 files changed, 47 insertions(+), 31 deletions(-)
> 
> --
> 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] 20+ messages in thread

* [GIT PULL nf-2.6] IPVS
@ 2011-05-02 12:47 Simon Horman
  2011-05-02 13:03 ` Simon Horman
  0 siblings, 1 reply; 20+ messages in thread
From: Simon Horman @ 2011-05-02 12:47 UTC (permalink / raw)
  To: lvs-devel, netdev, netfilter-devel, netfilter
  Cc: Wensong Zhang, Julian Anastasov, Patrick McHardy,
	Hans Schillstrom, Hans Schillstrom, Eric W. Biederman


Hi Patrick,

please consider pulling
git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-2.6.git master
to get the following fix from Hans. They resolve some problems related
to his netns for IPVS work which was incorporated into 2.6.39-rc1.

The pull request is based on nf-2.6/master.

There are other less-pressing changes from Hans which
I plan to get you to pull into nf-next-2.6 once these
changes make it there (presumably via net-2.6 and then net-next-2.6).

Hans Schillstrom (2):
      IPVS: Change of socket usage to enable name space exit.
      IPVS: labels at pos 0

 net/netfilter/ipvs/ip_vs_core.c |   12 ++++----
 net/netfilter/ipvs/ip_vs_ctl.c  |    8 +++---
 net/netfilter/ipvs/ip_vs_sync.c |   58 +++++++++++++++++++++++++--------------
 3 files changed, 47 insertions(+), 31 deletions(-)


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

* Re: [GIT PULL nf-2.6] IPVS
  2011-04-04 13:27 ` Patrick McHardy
@ 2011-04-04 23:43   ` Simon Horman
  0 siblings, 0 replies; 20+ messages in thread
From: Simon Horman @ 2011-04-04 23:43 UTC (permalink / raw)
  To: Patrick McHardy
  Cc: lvs-devel, netdev, netfilter-devel, netfilter, Hans Schillstrom,
	Julian Anastasov

On Mon, Apr 04, 2011 at 03:27:22PM +0200, Patrick McHardy wrote:
> On 31.03.2011 03:32, Simon Horman wrote:
> > Hi Patrick,
> > 
> > please consider pulling
> > git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git for-patrick
> > to get the following fix from Hans.
> > 
> > I have based this patch on net-2.6/master as nf-2.6/master seems a little
> > out of date (i.e. pre 2.6.39-rc1). Please let me know if you would
> > prefer me to use a different base. Alternatively, feel free to apply
> > the single patch by hand.
> 
> I'll apply this by hand to avoid possible unnecessary merge commits.
> I've also updated nf-2.6.git to net-2.6.git.

Thanks Patrick.


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

* Re: [GIT PULL nf-2.6] IPVS
  2011-03-31  1:32 Simon Horman
@ 2011-04-04 13:27 ` Patrick McHardy
  2011-04-04 23:43   ` Simon Horman
  0 siblings, 1 reply; 20+ messages in thread
From: Patrick McHardy @ 2011-04-04 13:27 UTC (permalink / raw)
  To: Simon Horman
  Cc: lvs-devel, netdev, netfilter-devel, netfilter, Hans Schillstrom,
	Julian Anastasov

On 31.03.2011 03:32, Simon Horman wrote:
> Hi Patrick,
> 
> please consider pulling
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git for-patrick
> to get the following fix from Hans.
> 
> I have based this patch on net-2.6/master as nf-2.6/master seems a little
> out of date (i.e. pre 2.6.39-rc1). Please let me know if you would
> prefer me to use a different base. Alternatively, feel free to apply
> the single patch by hand.

I'll apply this by hand to avoid possible unnecessary merge commits.
I've also updated nf-2.6.git to net-2.6.git.

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

* [GIT PULL nf-2.6] IPVS
@ 2011-03-31  1:32 Simon Horman
  2011-04-04 13:27 ` Patrick McHardy
  0 siblings, 1 reply; 20+ messages in thread
From: Simon Horman @ 2011-03-31  1:32 UTC (permalink / raw)
  To: lvs-devel, netdev, netfilter-devel, netfilter
  Cc: Hans Schillstrom, Julian Anastasov, Patrick McHardy, Simon Horman

Hi Patrick,

please consider pulling
git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git for-patrick
to get the following fix from Hans.

I have based this patch on net-2.6/master as nf-2.6/master seems a little
out of date (i.e. pre 2.6.39-rc1). Please let me know if you would
prefer me to use a different base. Alternatively, feel free to apply
the single patch by hand.

Hans Schillstrom (1):
      IPVS Bug, Null ptr in ip_vs_ctl.c ip_vs_genl_dump_daemons().

 include/net/ip_vs.h            |    2 +-
 net/netfilter/ipvs/ip_vs_ctl.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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

* Re: [GIT PULL nf-2.6] IPVS
  2011-03-03  6:53     ` Patrick McHardy
  2011-03-03  7:47       ` Simon Horman
@ 2011-03-03  8:31       ` David Miller
  1 sibling, 0 replies; 20+ messages in thread
From: David Miller @ 2011-03-03  8:31 UTC (permalink / raw)
  To: kaber; +Cc: horms, lvs-devel, netdev, netfilter-devel, netfilter, hans, ja

From: Patrick McHardy <kaber@trash.net>
Date: Thu, 03 Mar 2011 07:53:06 +0100

> Yes. If you need it as base for further work, the fastest way
> is to ask Dave to pull net-2.6 into net-next-2.6, I can then
> pull it into nf-next.

I plan to do a net-2.6 into net-next-2.6 merge for another reason
tomorrow, so this should be taken care of soon.

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

* Re: [GIT PULL nf-2.6] IPVS
  2011-03-03  6:53     ` Patrick McHardy
@ 2011-03-03  7:47       ` Simon Horman
  2011-03-03  8:31       ` David Miller
  1 sibling, 0 replies; 20+ messages in thread
From: Simon Horman @ 2011-03-03  7:47 UTC (permalink / raw)
  To: Patrick McHardy
  Cc: lvs-devel, netdev, netfilter-devel, netfilter, Hans Schillstrom,
	Julian Anastasov

On Thu, Mar 03, 2011 at 07:53:06AM +0100, Patrick McHardy wrote:
> On 02.03.2011 23:06, Simon Horman wrote:
> > On Wed, Mar 02, 2011 at 11:58:18AM +0100, Patrick McHardy wrote:
> >> Am 01.03.2011 23:59, schrieb Simon Horman:
> >>> Hi Patrick,
> >>>
> >>> please consider pulling
> >>> git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git for-patrick
> >>> to get the following change from Julian. Please note that it is an nf-2.6
> >>> (that is 2.6.38-rc) change.
> >>>
> >>> Julian Anastasov (1):
> >>>       ipvs: fix dst_lock locking on dest update
> >>
> >> Pulled, thanks Simon.
> > 
> > Thanks Patrick.
> > 
> > This change is also needed in nf-next-2.6 but I assume that
> > will automatically happen when nf-2.6 is merged into nf-next-2.6,
> > possibly via a merge of net-2.6 into net-next-2.6.
> 
> Yes. If you need it as base for further work, the fastest way
> is to ask Dave to pull net-2.6 into net-next-2.6, I can then
> pull it into nf-next.

There is no rush at this time.


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

* Re: [GIT PULL nf-2.6] IPVS
  2011-03-02 22:06   ` Simon Horman
@ 2011-03-03  6:53     ` Patrick McHardy
  2011-03-03  7:47       ` Simon Horman
  2011-03-03  8:31       ` David Miller
  0 siblings, 2 replies; 20+ messages in thread
From: Patrick McHardy @ 2011-03-03  6:53 UTC (permalink / raw)
  To: Simon Horman
  Cc: lvs-devel, netdev, netfilter-devel, netfilter, Hans Schillstrom,
	Julian Anastasov

On 02.03.2011 23:06, Simon Horman wrote:
> On Wed, Mar 02, 2011 at 11:58:18AM +0100, Patrick McHardy wrote:
>> Am 01.03.2011 23:59, schrieb Simon Horman:
>>> Hi Patrick,
>>>
>>> please consider pulling
>>> git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git for-patrick
>>> to get the following change from Julian. Please note that it is an nf-2.6
>>> (that is 2.6.38-rc) change.
>>>
>>> Julian Anastasov (1):
>>>       ipvs: fix dst_lock locking on dest update
>>
>> Pulled, thanks Simon.
> 
> Thanks Patrick.
> 
> This change is also needed in nf-next-2.6 but I assume that
> will automatically happen when nf-2.6 is merged into nf-next-2.6,
> possibly via a merge of net-2.6 into net-next-2.6.

Yes. If you need it as base for further work, the fastest way
is to ask Dave to pull net-2.6 into net-next-2.6, I can then
pull it into nf-next.


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

* Re: [GIT PULL nf-2.6] IPVS
  2011-03-02 10:58 ` Patrick McHardy
@ 2011-03-02 22:06   ` Simon Horman
  2011-03-03  6:53     ` Patrick McHardy
  0 siblings, 1 reply; 20+ messages in thread
From: Simon Horman @ 2011-03-02 22:06 UTC (permalink / raw)
  To: Patrick McHardy
  Cc: lvs-devel, netdev, netfilter-devel, netfilter, Hans Schillstrom,
	Julian Anastasov

On Wed, Mar 02, 2011 at 11:58:18AM +0100, Patrick McHardy wrote:
> Am 01.03.2011 23:59, schrieb Simon Horman:
> > Hi Patrick,
> > 
> > please consider pulling
> > git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git for-patrick
> > to get the following change from Julian. Please note that it is an nf-2.6
> > (that is 2.6.38-rc) change.
> > 
> > Julian Anastasov (1):
> >       ipvs: fix dst_lock locking on dest update
> 
> Pulled, thanks Simon.

Thanks Patrick.

This change is also needed in nf-next-2.6 but I assume that
will automatically happen when nf-2.6 is merged into nf-next-2.6,
possibly via a merge of net-2.6 into net-next-2.6.

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

* Re: [GIT PULL nf-2.6] IPVS
  2011-03-01 22:59 Simon Horman
@ 2011-03-02 10:58 ` Patrick McHardy
  2011-03-02 22:06   ` Simon Horman
  0 siblings, 1 reply; 20+ messages in thread
From: Patrick McHardy @ 2011-03-02 10:58 UTC (permalink / raw)
  To: Simon Horman
  Cc: lvs-devel, netdev, netfilter-devel, netfilter, Hans Schillstrom,
	Julian Anastasov

Am 01.03.2011 23:59, schrieb Simon Horman:
> Hi Patrick,
> 
> please consider pulling
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git for-patrick
> to get the following change from Julian. Please note that it is an nf-2.6
> (that is 2.6.38-rc) change.
> 
> Julian Anastasov (1):
>       ipvs: fix dst_lock locking on dest update

Pulled, thanks Simon.

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

* [GIT PULL nf-2.6] IPVS
@ 2011-03-01 22:59 Simon Horman
  2011-03-02 10:58 ` Patrick McHardy
  0 siblings, 1 reply; 20+ messages in thread
From: Simon Horman @ 2011-03-01 22:59 UTC (permalink / raw)
  To: lvs-devel, netdev, netfilter-devel, netfilter
  Cc: Hans Schillstrom, Julian Anastasov, Patrick McHardy, Simon Horman

Hi Patrick,

please consider pulling
git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git for-patrick
to get the following change from Julian. Please note that it is an nf-2.6
(that is 2.6.38-rc) change.

Julian Anastasov (1):
      ipvs: fix dst_lock locking on dest update

 net/netfilter/ipvs/ip_vs_ctl.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

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

end of thread, other threads:[~2011-07-29 14:26 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-19 12:32 [GIT PULL nf-2.6] IPVS Simon Horman
2011-05-19 12:32 ` [PATCH] IPVS: Free resources on module removal Simon Horman
  -- strict thread matches above, loose matches on Subject: below --
2011-07-22  0:18 [GIT PULL nf-2.6] IPVS Simon Horman
2011-07-29  0:12 ` Simon Horman
2011-07-29  1:39   ` David Miller
2011-07-29 14:26     ` Patrick McHardy
2011-06-13  8:47 Simon Horman
2011-06-16 15:11 ` Patrick McHardy
2011-06-16 22:06   ` Simon Horman
2011-05-02 12:47 Simon Horman
2011-05-02 13:03 ` Simon Horman
2011-03-31  1:32 Simon Horman
2011-04-04 13:27 ` Patrick McHardy
2011-04-04 23:43   ` Simon Horman
2011-03-01 22:59 Simon Horman
2011-03-02 10:58 ` Patrick McHardy
2011-03-02 22:06   ` Simon Horman
2011-03-03  6:53     ` Patrick McHardy
2011-03-03  7:47       ` Simon Horman
2011-03-03  8:31       ` 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.