* [GIT PULL nf-next-2.6] IPVS
@ 2011-03-13 22:44 Simon Horman
2011-03-13 22:44 ` [PATCH 1/4] ipvs: avoid lookup for fwmark 0 Simon Horman
` (4 more replies)
0 siblings, 5 replies; 18+ messages in thread
From: Simon Horman @ 2011-03-13 22:44 UTC (permalink / raw)
To: lvs-devel, netdev, netfilter-devel, netfilter
Cc: Patrick McHardy, Hans Schillstrom, Julian Anastasov, Simon Horman
Hi Patrick,
please consider pulling
git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git master
to get the following changes.
Jesper Juhl (1):
Fix variable assignment in ip_vs_notrack
Julian Anastasov (2):
ipvs: avoid lookup for fwmark 0
ipvs: remove _bh from percpu stats reading
Shan Wei (1):
netfilter:ipvs: use kmemdup
include/net/ip_vs.h | 2 +-
net/netfilter/ipvs/ip_vs_ctl.c | 8 +++++---
net/netfilter/ipvs/ip_vs_est.c | 8 ++++----
net/netfilter/ipvs/ip_vs_pe_sip.c | 9 ++++-----
net/netfilter/ipvs/ip_vs_sync.c | 3 +--
5 files changed, 15 insertions(+), 15 deletions(-)
^ permalink raw reply [flat|nested] 18+ messages in thread
* [PATCH 1/4] ipvs: avoid lookup for fwmark 0
2011-03-13 22:44 [GIT PULL nf-next-2.6] IPVS Simon Horman
@ 2011-03-13 22:44 ` Simon Horman
2011-03-13 22:44 ` [PATCH 2/4] ipvs: remove _bh from percpu stats reading Simon Horman
` (3 subsequent siblings)
4 siblings, 0 replies; 18+ messages in thread
From: Simon Horman @ 2011-03-13 22:44 UTC (permalink / raw)
To: lvs-devel, netdev, netfilter-devel, netfilter
Cc: Patrick McHardy, Hans Schillstrom, Julian Anastasov, Simon Horman
From: Julian Anastasov <ja@ssi.bg>
Restore the previous behaviour to lookup for fwmark
service only when fwmark is non-null. This saves only CPU.
Signed-off-by: Julian Anastasov <ja@ssi.bg>
Signed-off-by: Hans Schillstrom <hans@schillstrom.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
net/netfilter/ipvs/ip_vs_ctl.c | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/net/netfilter/ipvs/ip_vs_ctl.c b/net/netfilter/ipvs/ip_vs_ctl.c
index c73b0c8..f0369d6 100644
--- a/net/netfilter/ipvs/ip_vs_ctl.c
+++ b/net/netfilter/ipvs/ip_vs_ctl.c
@@ -411,9 +411,11 @@ ip_vs_service_get(struct net *net, int af, __u32 fwmark, __u16 protocol,
/*
* Check the table hashed by fwmark first
*/
- svc = __ip_vs_svc_fwm_find(net, af, fwmark);
- if (fwmark && svc)
- goto out;
+ if (fwmark) {
+ svc = __ip_vs_svc_fwm_find(net, af, fwmark);
+ if (svc)
+ goto out;
+ }
/*
* Check the table hashed by <protocol,addr,port>
--
1.7.2.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 2/4] ipvs: remove _bh from percpu stats reading
2011-03-13 22:44 [GIT PULL nf-next-2.6] IPVS Simon Horman
2011-03-13 22:44 ` [PATCH 1/4] ipvs: avoid lookup for fwmark 0 Simon Horman
@ 2011-03-13 22:44 ` Simon Horman
2011-03-13 22:44 ` [PATCH 3/4] netfilter:ipvs: use kmemdup Simon Horman
` (2 subsequent siblings)
4 siblings, 0 replies; 18+ messages in thread
From: Simon Horman @ 2011-03-13 22:44 UTC (permalink / raw)
To: lvs-devel, netdev, netfilter-devel, netfilter
Cc: Patrick McHardy, Hans Schillstrom, Julian Anastasov, Simon Horman
From: Julian Anastasov <ja@ssi.bg>
ip_vs_read_cpu_stats is called only from timer, so
no need for _bh locks.
Signed-off-by: Julian Anastasov <ja@ssi.bg>
Signed-off-by: Hans Schillstrom <hans@schillstrom.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
net/netfilter/ipvs/ip_vs_est.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/net/netfilter/ipvs/ip_vs_est.c b/net/netfilter/ipvs/ip_vs_est.c
index f560a05..88bd716 100644
--- a/net/netfilter/ipvs/ip_vs_est.c
+++ b/net/netfilter/ipvs/ip_vs_est.c
@@ -69,10 +69,10 @@ static void ip_vs_read_cpu_stats(struct ip_vs_stats_user *sum,
sum->inpkts += s->ustats.inpkts;
sum->outpkts += s->ustats.outpkts;
do {
- start = u64_stats_fetch_begin_bh(&s->syncp);
+ start = u64_stats_fetch_begin(&s->syncp);
inbytes = s->ustats.inbytes;
outbytes = s->ustats.outbytes;
- } while (u64_stats_fetch_retry_bh(&s->syncp, start));
+ } while (u64_stats_fetch_retry(&s->syncp, start));
sum->inbytes += inbytes;
sum->outbytes += outbytes;
} else {
@@ -80,10 +80,10 @@ static void ip_vs_read_cpu_stats(struct ip_vs_stats_user *sum,
sum->inpkts = s->ustats.inpkts;
sum->outpkts = s->ustats.outpkts;
do {
- start = u64_stats_fetch_begin_bh(&s->syncp);
+ start = u64_stats_fetch_begin(&s->syncp);
sum->inbytes = s->ustats.inbytes;
sum->outbytes = s->ustats.outbytes;
- } while (u64_stats_fetch_retry_bh(&s->syncp, start));
+ } while (u64_stats_fetch_retry(&s->syncp, start));
}
}
}
--
1.7.2.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 3/4] netfilter:ipvs: use kmemdup
2011-03-13 22:44 [GIT PULL nf-next-2.6] IPVS Simon Horman
2011-03-13 22:44 ` [PATCH 1/4] ipvs: avoid lookup for fwmark 0 Simon Horman
2011-03-13 22:44 ` [PATCH 2/4] ipvs: remove _bh from percpu stats reading Simon Horman
@ 2011-03-13 22:44 ` Simon Horman
2011-03-13 22:44 ` [PATCH 4/4] Fix variable assignment in ip_vs_notrack Simon Horman
2011-03-14 18:17 ` [GIT PULL nf-next-2.6] IPVS Patrick McHardy
4 siblings, 0 replies; 18+ messages in thread
From: Simon Horman @ 2011-03-13 22:44 UTC (permalink / raw)
To: lvs-devel, netdev, netfilter-devel, netfilter
Cc: Patrick McHardy, Hans Schillstrom, Julian Anastasov, Simon Horman,
Shan Wei
From: Shan Wei <shanwei@cn.fujitsu.com>
The semantic patch that makes this output is available
in scripts/coccinelle/api/memdup.cocci.
More information about semantic patching is available at
http://coccinelle.lip6.fr/
Signed-off-by: Shan Wei <shanwei@cn.fujitsu.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
net/netfilter/ipvs/ip_vs_pe_sip.c | 9 ++++-----
net/netfilter/ipvs/ip_vs_sync.c | 3 +--
2 files changed, 5 insertions(+), 7 deletions(-)
diff --git a/net/netfilter/ipvs/ip_vs_pe_sip.c b/net/netfilter/ipvs/ip_vs_pe_sip.c
index 0d83bc0..13d607a 100644
--- a/net/netfilter/ipvs/ip_vs_pe_sip.c
+++ b/net/netfilter/ipvs/ip_vs_pe_sip.c
@@ -92,14 +92,13 @@ ip_vs_sip_fill_param(struct ip_vs_conn_param *p, struct sk_buff *skb)
if (get_callid(dptr, dataoff, datalen, &matchoff, &matchlen))
return -EINVAL;
- p->pe_data = kmalloc(matchlen, GFP_ATOMIC);
- if (!p->pe_data)
- return -ENOMEM;
-
/* N.B: pe_data is only set on success,
* this allows fallback to the default persistence logic on failure
*/
- memcpy(p->pe_data, dptr + matchoff, matchlen);
+ p->pe_data = kmemdup(dptr + matchoff, matchlen, GFP_ATOMIC);
+ if (!p->pe_data)
+ return -ENOMEM;
+
p->pe_data_len = matchlen;
return 0;
diff --git a/net/netfilter/ipvs/ip_vs_sync.c b/net/netfilter/ipvs/ip_vs_sync.c
index fecf24d..c5d13b0 100644
--- a/net/netfilter/ipvs/ip_vs_sync.c
+++ b/net/netfilter/ipvs/ip_vs_sync.c
@@ -697,13 +697,12 @@ ip_vs_conn_fill_param_sync(struct net *net, int af, union ip_vs_sync_conn *sc,
return 1;
}
- p->pe_data = kmalloc(pe_data_len, GFP_ATOMIC);
+ p->pe_data = kmemdup(pe_data, pe_data_len, GFP_ATOMIC);
if (!p->pe_data) {
if (p->pe->module)
module_put(p->pe->module);
return -ENOMEM;
}
- memcpy(p->pe_data, pe_data, pe_data_len);
p->pe_data_len = pe_data_len;
}
return 0;
--
1.7.2.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* [PATCH 4/4] Fix variable assignment in ip_vs_notrack
2011-03-13 22:44 [GIT PULL nf-next-2.6] IPVS Simon Horman
` (2 preceding siblings ...)
2011-03-13 22:44 ` [PATCH 3/4] netfilter:ipvs: use kmemdup Simon Horman
@ 2011-03-13 22:44 ` Simon Horman
2011-03-14 18:17 ` [GIT PULL nf-next-2.6] IPVS Patrick McHardy
4 siblings, 0 replies; 18+ messages in thread
From: Simon Horman @ 2011-03-13 22:44 UTC (permalink / raw)
To: lvs-devel, netdev, netfilter-devel, netfilter
Cc: Patrick McHardy, Hans Schillstrom, Julian Anastasov, Simon Horman,
Jesper Juhl
From: Jesper Juhl <jj@chaosbits.net>
There's no sense to 'ct = ct = ' in ip_vs_notrack(). Just assign
nf_ct_get()'s return value directly to the pointer variable 'ct' once.
Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Simon Horman <horms@verge.net.au>
---
include/net/ip_vs.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h
index e74da41e..1dcb75d 100644
--- a/include/net/ip_vs.h
+++ b/include/net/ip_vs.h
@@ -1190,7 +1190,7 @@ static inline void ip_vs_notrack(struct sk_buff *skb)
{
#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
enum ip_conntrack_info ctinfo;
- struct nf_conn *ct = ct = nf_ct_get(skb, &ctinfo);
+ struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
if (!ct || !nf_ct_is_untracked(ct)) {
nf_reset(skb);
--
1.7.2.3
^ permalink raw reply related [flat|nested] 18+ messages in thread
* Re: [GIT PULL nf-next-2.6] IPVS
2011-03-13 22:44 [GIT PULL nf-next-2.6] IPVS Simon Horman
` (3 preceding siblings ...)
2011-03-13 22:44 ` [PATCH 4/4] Fix variable assignment in ip_vs_notrack Simon Horman
@ 2011-03-14 18:17 ` Patrick McHardy
2011-03-14 23:13 ` Simon Horman
4 siblings, 1 reply; 18+ messages in thread
From: Patrick McHardy @ 2011-03-14 18:17 UTC (permalink / raw)
To: Simon Horman
Cc: lvs-devel, netdev, netfilter-devel, netfilter, Hans Schillstrom,
Julian Anastasov
On 13.03.2011 23:44, Simon Horman wrote:
> Hi Patrick,
>
> please consider pulling
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git master
> to get the following changes.
>
> Jesper Juhl (1):
> Fix variable assignment in ip_vs_notrack
>
> Julian Anastasov (2):
> ipvs: avoid lookup for fwmark 0
> ipvs: remove _bh from percpu stats reading
>
> Shan Wei (1):
> netfilter:ipvs: use kmemdup
>
> include/net/ip_vs.h | 2 +-
> net/netfilter/ipvs/ip_vs_ctl.c | 8 +++++---
> net/netfilter/ipvs/ip_vs_est.c | 8 ++++----
> net/netfilter/ipvs/ip_vs_pe_sip.c | 9 ++++-----
> net/netfilter/ipvs/ip_vs_sync.c | 3 +--
> 5 files changed, 15 insertions(+), 15 deletions(-)
The pull contained quite a lot of other changes. I'm undoing the
pull for now, please resubmit the patches you actually want me to
pull. Thanks!
Jesper Juhl (1):
Fix variable assignment in ip_vs_notrack
Julian Anastasov (8):
ipvs: avoid lookup for fwmark 0
ipvs: remove _bh from percpu stats reading
ipvs: move struct netns_ipvs
ipvs: reorganize tot_stats
ipvs: properly zero stats and rates
ipvs: remove unused seqcount stats
ipvs: optimize rates reading
ipvs: rename estimator functions
Patrick McHardy (1):
Merge branch 'master' of git://git.kernel.org/.../horms/lvs-test-2.6
Shan Wei (1):
netfilter:ipvs: use kmemdup
Simon Horman (14):
IPVS: Add ip_vs_route_me_harder()
IPVS: Add sysctl_snat_reroute()
IPVS: Add sysctl_nat_icmp_send()
IPVS: Add {sysctl_sync_threshold,period}()
IPVS: Add sysctl_sync_ver()
IPVS: Add sysctl_expire_nodest_conn()
IPVS: Add expire_quiescent_template()
IPVS: Conditinally use sysctl_lblc{r}_expiration
IPVS: ip_vs_todrop() becomes a noop when CONFIG_SYSCTL is undefined
IPVS: Conditional ip_vs_conntrack_enabled()
IPVS: Minimise ip_vs_leave when CONFIG_SYSCTL is undefined
IPVS: Conditionally define and use ip_vs_lblc{r}_table
IPVS: Add __ip_vs_control_{init,cleanup}_sysctl()
IPVS: Conditionally include sysctl members of struct netns_ipvs
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [GIT PULL nf-next-2.6] IPVS
2011-03-14 18:17 ` [GIT PULL nf-next-2.6] IPVS Patrick McHardy
@ 2011-03-14 23:13 ` Simon Horman
0 siblings, 0 replies; 18+ messages in thread
From: Simon Horman @ 2011-03-14 23:13 UTC (permalink / raw)
To: Patrick McHardy
Cc: lvs-devel, netdev, netfilter-devel, netfilter, Hans Schillstrom,
Julian Anastasov
On Mon, Mar 14, 2011 at 07:17:34PM +0100, Patrick McHardy wrote:
> On 13.03.2011 23:44, Simon Horman wrote:
> > Hi Patrick,
> >
> > please consider pulling
> > git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git master
> > to get the following changes.
> >
> > Jesper Juhl (1):
> > Fix variable assignment in ip_vs_notrack
> >
> > Julian Anastasov (2):
> > ipvs: avoid lookup for fwmark 0
> > ipvs: remove _bh from percpu stats reading
> >
> > Shan Wei (1):
> > netfilter:ipvs: use kmemdup
> >
> > include/net/ip_vs.h | 2 +-
> > net/netfilter/ipvs/ip_vs_ctl.c | 8 +++++---
> > net/netfilter/ipvs/ip_vs_est.c | 8 ++++----
> > net/netfilter/ipvs/ip_vs_pe_sip.c | 9 ++++-----
> > net/netfilter/ipvs/ip_vs_sync.c | 3 +--
> > 5 files changed, 15 insertions(+), 15 deletions(-)
>
> The pull contained quite a lot of other changes. I'm undoing the
> pull for now, please resubmit the patches you actually want me to
> pull. Thanks!
Sorry about that. I will double check things but
the list below looks like the second request that I sent out
yesterday.
>
> Jesper Juhl (1):
> Fix variable assignment in ip_vs_notrack
>
> Julian Anastasov (8):
> ipvs: avoid lookup for fwmark 0
> ipvs: remove _bh from percpu stats reading
> ipvs: move struct netns_ipvs
> ipvs: reorganize tot_stats
> ipvs: properly zero stats and rates
> ipvs: remove unused seqcount stats
> ipvs: optimize rates reading
> ipvs: rename estimator functions
>
> Patrick McHardy (1):
> Merge branch 'master' of git://git.kernel.org/.../horms/lvs-test-2.6
>
> Shan Wei (1):
> netfilter:ipvs: use kmemdup
>
> Simon Horman (14):
> IPVS: Add ip_vs_route_me_harder()
> IPVS: Add sysctl_snat_reroute()
> IPVS: Add sysctl_nat_icmp_send()
> IPVS: Add {sysctl_sync_threshold,period}()
> IPVS: Add sysctl_sync_ver()
> IPVS: Add sysctl_expire_nodest_conn()
> IPVS: Add expire_quiescent_template()
> IPVS: Conditinally use sysctl_lblc{r}_expiration
> IPVS: ip_vs_todrop() becomes a noop when CONFIG_SYSCTL is undefined
> IPVS: Conditional ip_vs_conntrack_enabled()
> IPVS: Minimise ip_vs_leave when CONFIG_SYSCTL is undefined
> IPVS: Conditionally define and use ip_vs_lblc{r}_table
> IPVS: Add __ip_vs_control_{init,cleanup}_sysctl()
> IPVS: Conditionally include sysctl members of struct netns_ipvs
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* [GIT PULL nf-next-2.6] IPVS
@ 2011-04-05 3:22 Simon Horman
2011-04-05 10:18 ` Patrick McHardy
0 siblings, 1 reply; 18+ messages in thread
From: Simon Horman @ 2011-04-05 3:22 UTC (permalink / raw)
To: lvs-devel, netdev, netfilter-devel, netfilter
Cc: Wensong Zhang, Julian Anastasov, Patrick McHardy
Hi Patrick,
please consider pulling
git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next-2.6.git master
to get the following minor change from myself. This pull request is
based on nf-next-2.6.
Simon Horman (1):
IPVS: combine consecutive #ifdef CONFIG_PROC_FS blocks
net/netfilter/ipvs/ip_vs_ctl.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
^ permalink raw reply [flat|nested] 18+ messages in thread
* [GIT PULL nf-next-2.6] IPVS
@ 2011-03-15 5:27 Simon Horman
2011-03-15 12:16 ` Patrick McHardy
0 siblings, 1 reply; 18+ messages in thread
From: Simon Horman @ 2011-03-15 5:27 UTC (permalink / raw)
To: netdev, netfilter-devel, netfilter, lvs-devel
Cc: Eric Dumazet, Julian Anastasov, Hans Schillstrom, Patrick McHardy
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 changes listed below.
This replaces the pull requests that I sent yesterday, sorry for messing
that up.
Also, sorry for letting the number of patches grow so much, Julian and I
were working on patches that conflicted with each other. But regardless, I
should have done something about getting a request to you earlier.
Jesper Juhl (1):
IPVS: Fix variable assignment in ip_vs_notrack
Julian Anastasov (8):
ipvs: avoid lookup for fwmark 0
ipvs: remove _bh from percpu stats reading
ipvs: move struct netns_ipvs
ipvs: reorganize tot_stats
ipvs: properly zero stats and rates
ipvs: remove unused seqcount stats
ipvs: optimize rates reading
ipvs: rename estimator functions
Shan Wei (1):
netfilter:ipvs: use kmemdup
Simon Horman (14):
IPVS: Add ip_vs_route_me_harder()
IPVS: Add sysctl_snat_reroute()
IPVS: Add sysctl_nat_icmp_send()
IPVS: Add {sysctl_sync_threshold,period}()
IPVS: Add sysctl_sync_ver()
IPVS: Add sysctl_expire_nodest_conn()
IPVS: Add expire_quiescent_template()
IPVS: Conditinally use sysctl_lblc{r}_expiration
IPVS: ip_vs_todrop() becomes a noop when CONFIG_SYSCTL is undefined
IPVS: Conditional ip_vs_conntrack_enabled()
IPVS: Minimise ip_vs_leave when CONFIG_SYSCTL is undefined
IPVS: Conditionally define and use ip_vs_lblc{r}_table
IPVS: Add __ip_vs_control_{init,cleanup}_sysctl()
IPVS: Conditionally include sysctl members of struct netns_ipvs
include/net/ip_vs.h | 198 ++++++++++++++++++++++++++---
include/net/net_namespace.h | 2 +-
include/net/netns/ip_vs.h | 143 ---------------------
net/netfilter/ipvs/ip_vs_conn.c | 13 ++-
net/netfilter/ipvs/ip_vs_core.c | 104 +++++++++------
net/netfilter/ipvs/ip_vs_ctl.c | 256 ++++++++++++++++++++++---------------
net/netfilter/ipvs/ip_vs_est.c | 63 ++++-----
net/netfilter/ipvs/ip_vs_lblc.c | 31 ++++-
net/netfilter/ipvs/ip_vs_lblcr.c | 35 ++++--
net/netfilter/ipvs/ip_vs_pe_sip.c | 9 +-
net/netfilter/ipvs/ip_vs_sync.c | 11 +-
11 files changed, 492 insertions(+), 373 deletions(-)
delete mode 100644 include/net/netns/ip_vs.h
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [GIT PULL nf-next-2.6] IPVS
2011-03-15 5:27 Simon Horman
@ 2011-03-15 12:16 ` Patrick McHardy
0 siblings, 0 replies; 18+ messages in thread
From: Patrick McHardy @ 2011-03-15 12:16 UTC (permalink / raw)
To: Simon Horman
Cc: netdev, netfilter-devel, netfilter, lvs-devel, Eric Dumazet,
Julian Anastasov, Hans Schillstrom
On 15.03.2011 06:27, 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 changes listed below.
Pulled, thanks Simon.
> This replaces the pull requests that I sent yesterday, sorry for messing
> that up.
>
> Also, sorry for letting the number of patches grow so much, Julian and I
> were working on patches that conflicted with each other. But regardless, I
> should have done something about getting a request to you earlier.
No problem, the individual patches are quite small after all.
^ permalink raw reply [flat|nested] 18+ messages in thread
* [GIT PULL nf-next-2.6] IPVS
@ 2011-03-14 9:06 Simon Horman
0 siblings, 0 replies; 18+ messages in thread
From: Simon Horman @ 2011-03-14 9:06 UTC (permalink / raw)
To: netdev, netfilter-devel, netfilter, lvs-devel
Cc: Eric Dumazet, Julian Anastasov, Hans Schillstrom
please consider pulling
git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git master
to get the following changes.
This supersedes the pull request that I sent this morning -
it comprises the first 4 patches in this request.
Sorry for letting this get a bit long, Julian and I were
working on patches that conflicted with each other. But regardless,
I should have done something about getting a request to you earlier.
^ permalink raw reply [flat|nested] 18+ messages in thread
* [GIT PULL nf-next-2.6] IPVS
@ 2011-02-25 2:43 Simon Horman
2011-02-27 15:25 ` Patrick McHardy
0 siblings, 1 reply; 18+ messages in thread
From: Simon Horman @ 2011-02-25 2:43 UTC (permalink / raw)
To: lvs-devel, netdev, netfilter-devel, netfilter
Cc: Changli Gao, Wensong Zhang, 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 master
go get the following changes by Changli.
ipvs: use hlist instead of list
ipvs: use enum to instead of magic numbers
ipvs: unify the formula to estimate the overhead of processing connections
include/net/ip_vs.h | 16 +++++++++++-
net/netfilter/ipvs/ip_vs_conn.c | 52 +++++++++++++++++++++----------------
net/netfilter/ipvs/ip_vs_lblc.c | 13 ++-------
net/netfilter/ipvs/ip_vs_lblcr.c | 25 +++++-------------
net/netfilter/ipvs/ip_vs_lc.c | 18 +------------
net/netfilter/ipvs/ip_vs_wlc.c | 20 +-------------
net/netfilter/ipvs/ip_vs_xmit.c | 41 +++++++++++++++++++----------
7 files changed, 84 insertions(+), 101 deletions(-)
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [GIT PULL nf-next-2.6] IPVS
2011-02-25 2:43 Simon Horman
@ 2011-02-27 15:25 ` Patrick McHardy
0 siblings, 0 replies; 18+ messages in thread
From: Patrick McHardy @ 2011-02-27 15:25 UTC (permalink / raw)
To: Simon Horman
Cc: lvs-devel, netdev, netfilter-devel, netfilter, Changli Gao,
Wensong Zhang, Julian Anastasov
On 25.02.2011 03:43, Simon Horman wrote:
> Hi Patrick,
>
> please consider pulling
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git master
> go get the following changes by Changli.
>
> ipvs: use hlist instead of list
> ipvs: use enum to instead of magic numbers
> ipvs: unify the formula to estimate the overhead of processing connections
Pulled, thanks Simon.
^ permalink raw reply [flat|nested] 18+ messages in thread
* [GIT PULL nf-next-2.6] IPVS
@ 2011-02-16 6:04 Simon Horman
2011-02-16 13:19 ` Patrick McHardy
0 siblings, 1 reply; 18+ messages in thread
From: Simon Horman @ 2011-02-16 6:04 UTC (permalink / raw)
To: lvs-devel, netdev, netfilter-devel, netfilter
Cc: Julian Anastasov, Patrick Schaaf, Patrick McHardy
Hi Patrick,
please consider pulling
git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git master
go get:
* Removal of unused ICMP code by Julian
* More informative "no destination available" messages
by Patrick Schaaf
* Fix to buffering of synchronisation messages
by Tinggong Wang and Julian
include/net/ip_vs.h | 2 ++
net/netfilter/ipvs/ip_vs_core.c | 28 +++-------------------------
net/netfilter/ipvs/ip_vs_lblc.c | 2 +-
net/netfilter/ipvs/ip_vs_lblcr.c | 2 +-
net/netfilter/ipvs/ip_vs_lc.c | 2 +-
net/netfilter/ipvs/ip_vs_nq.c | 2 +-
net/netfilter/ipvs/ip_vs_rr.c | 2 +-
net/netfilter/ipvs/ip_vs_sched.c | 25 +++++++++++++++++++++++++
net/netfilter/ipvs/ip_vs_sed.c | 2 +-
net/netfilter/ipvs/ip_vs_sh.c | 2 +-
net/netfilter/ipvs/ip_vs_sync.c | 4 ++--
net/netfilter/ipvs/ip_vs_wlc.c | 2 +-
net/netfilter/ipvs/ip_vs_wrr.c | 14 ++++++++------
13 files changed, 48 insertions(+), 41 deletions(-)
^ permalink raw reply [flat|nested] 18+ messages in thread
* [GIT PULL nf-next-2.6] IPVS
@ 2011-02-07 9:19 Simon Horman
2011-02-09 7:06 ` Patrick McHardy
0 siblings, 1 reply; 18+ messages in thread
From: Simon Horman @ 2011-02-07 9:19 UTC (permalink / raw)
To: netdev, netfilter-devel, netfilter, lvs-devel
Cc: Julian Anastasov, Hans Schillstrom, Dan Carpenter,
Patrick McHardy
Hi Patrick,
please consider pulling
git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git master
to get a precedence bug fix from Dan Carpenter.
net/netfilter/ipvs/ip_vs_sync.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [GIT PULL nf-next-2.6] IPVS
2011-02-07 9:19 Simon Horman
@ 2011-02-09 7:06 ` Patrick McHardy
0 siblings, 0 replies; 18+ messages in thread
From: Patrick McHardy @ 2011-02-09 7:06 UTC (permalink / raw)
To: Simon Horman
Cc: netdev, netfilter-devel, netfilter, lvs-devel, Julian Anastasov,
Hans Schillstrom, Dan Carpenter
Am 07.02.2011 10:19, schrieb Simon Horman:
> Hi Patrick,
>
> please consider pulling
> git://git.kernel.org/pub/scm/linux/kernel/git/horms/lvs-test-2.6.git master
> to get a precedence bug fix from Dan Carpenter.
>
> net/netfilter/ipvs/ip_vs_sync.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
Pulled, thanks Simon.
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2011-04-05 10:18 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-13 22:44 [GIT PULL nf-next-2.6] IPVS Simon Horman
2011-03-13 22:44 ` [PATCH 1/4] ipvs: avoid lookup for fwmark 0 Simon Horman
2011-03-13 22:44 ` [PATCH 2/4] ipvs: remove _bh from percpu stats reading Simon Horman
2011-03-13 22:44 ` [PATCH 3/4] netfilter:ipvs: use kmemdup Simon Horman
2011-03-13 22:44 ` [PATCH 4/4] Fix variable assignment in ip_vs_notrack Simon Horman
2011-03-14 18:17 ` [GIT PULL nf-next-2.6] IPVS Patrick McHardy
2011-03-14 23:13 ` Simon Horman
-- strict thread matches above, loose matches on Subject: below --
2011-04-05 3:22 Simon Horman
2011-04-05 10:18 ` Patrick McHardy
2011-03-15 5:27 Simon Horman
2011-03-15 12:16 ` Patrick McHardy
2011-03-14 9:06 Simon Horman
2011-02-25 2:43 Simon Horman
2011-02-27 15:25 ` Patrick McHardy
2011-02-16 6:04 Simon Horman
2011-02-16 13:19 ` Patrick McHardy
2011-02-07 9:19 Simon Horman
2011-02-09 7:06 ` Patrick McHardy
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).