linux-netdev mailing list

FromSubjectsort iconDate
jamal
Re: [PATCH] iproute2: tc: f_flow: add key rxhash
Acked-by: Jamal Hadi Salim <hadi@cyberus.ca> cheers, jamal --
Aug 21, 2:42 pm 2010
Changli Gao
[PATCH] iproute2: tc: f_flow: add key rxhash
We can use rxhash to classify the traffic into flows. As rxhash maybe supplied by NIC or RPS, it is cheaper. Signed-off-by: Changli Gao <xiaosuo@gmail.com> --- include/linux/pkt_cls.h | 1 + tc/f_flow.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/include/linux/pkt_cls.h b/include/linux/pkt_cls.h index 7f6ba86..defbde2 100644 --- a/include/linux/pkt_cls.h +++ b/include/linux/pkt_cls.h @@ -332,6 +332,7 @@ enum { FLOW_KEY_SKUID, ...
Aug 21, 9:30 am 2010
jamal
Re: [PATCH] net_sched: cls_flow: add key rxhash
Nice idea. Acked-by: Jamal Hadi Salim <hadi@cyberus.ca> cheers, jamal --
Aug 21, 2:41 pm 2010
Changli Gao
[PATCH] net_sched: cls_flow: add key rxhash
We can use rxhash to classify the traffic into flows. As rxhash maybe supplied by NIC or RPS, it is cheaper. Signed-off-by: Changli Gao <xiaosuo@gmail.com> --- include/linux/pkt_cls.h | 1 + net/sched/cls_flow.c | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/include/linux/pkt_cls.h b/include/linux/pkt_cls.h index 7f6ba86..defbde2 100644 --- a/include/linux/pkt_cls.h +++ b/include/linux/pkt_cls.h @@ -332,6 +332,7 @@ enum { FLOW_KEY_SKUID, FLOW_KEY_SKGID, ...
Aug 21, 9:23 am 2010
Changli Gao
[PATCH] net: rps: fix the wrong network header pointer
__skb_get_rxhash() was broken after the commit: commit bfb564e7391340638afe4ad67744a8f3858e7566 Author: Krishna Kumar <krkumar2@in.ibm.com> Date: Wed Aug 4 06:15:52 2010 +0000 core: Factor out flow calculation from get_rps_cpu Signed-off-by: Changli Gao <xiaosuo@gmail.com> --- net/core/dev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/core/dev.c b/net/core/dev.c index da584f5..4d74d26 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -2283,7 ...
Aug 21, 9:13 am 2010
xeb
Re: [PATCH v8] PPTP: PPP over IPv4 (Point-to-Point Tunne ...
Ah ok, thanks! I see my mail's subject contains some unexpected symbols, maybe i have to resend patch with cleaned subject ? --
Aug 21, 3:09 am 2010
Tetsuo Handa
About unix_autobind()
I was browsing unix_autobind() and wondered what happens if all names in Unix domain socket's abstract namespace were in use. Below part is unix_autobind() from linux-2.6.36-rc1/net/unix/af_unix.c 710 retry: 711 addr->len = sprintf(addr->name->sun_path+1, "%05x", ordernum) + 1 + sizeof(short); 712 addr->hash = unix_hash_fold(csum_partial(addr->name, addr->len, 0)); 713 714 spin_lock(&unix_table_lock); 715 ordernum = (ordernum+1)&0xFFFFF; 716 717 if ...
Aug 21, 5:01 am 2010
Changli Gao
Re: About unix_autobind()
On Sat, Aug 21, 2010 at 8:01 PM, Tetsuo Handa You can add a counter of the names, and check it before allocating a new name. -- Regards, Changli Gao(xiaosuo@gmail.com) --
Aug 21, 5:34 am 2010
Akinobu Mita
[PATCH] mlx4: use bitmap library
Use bitmap_set() and bitmap_clear() Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Cc: Roland Dreier <rolandd@cisco.com> Cc: netdev@vger.kernel.org Cc: "David S. Miller" <davem@davemloft.net> --- drivers/net/mlx4/alloc.c | 15 ++++----------- 1 files changed, 4 insertions(+), 11 deletions(-) diff --git a/drivers/net/mlx4/alloc.c b/drivers/net/mlx4/alloc.c index 8c85156..76595bd 100644 --- a/drivers/net/mlx4/alloc.c +++ b/drivers/net/mlx4/alloc.c @@ -74,7 +74,7 @@ void ...
Aug 21, 2:24 am 2010
Eric Dumazet
Re: [PATCH v8] PPTP: PPP over IPv4 (Point-to-Point Tunne ...
David S. Miller review the thing, and if no problem remains, adds it to its net-next-2.6 tree You can check netdev list of current patches right here : http://patchwork.ozlabs.org/project/netdev/list/ Your patch is already there ;) --
Aug 21, 2:31 am 2010
Changli Gao
Re: [PATCH v8] PPTP: PPP over IPv4 (Point-to-Point Tunne ...
from Documentation/SubmittingPatches The "---" marker line serves the essential purpose of marking for patch handling tools where the changelog message ends. I think the following lines from your patch are also useful, and you'd better move them above the "---" marker. This patch introduces then pptp support to the linux kernel which dramatically speeds up pptp vpn connections and decreases cpu usage in comparison of existing user-space implementation (poptop/pptpclient). There is ...
Aug 21, 5:42 am 2010
Eric Dumazet
Re: [PATCH v8] PPTP: PPP over IPv4 (Point-to-Point Tunne ...
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Thanks Dmitry ! --
Aug 21, 12:49 am 2010
Dmitry Kozlov Aug 21, 2:17 am 2010
Dmitry Kozlov
Re: [PATCH v8] PPTP: PPP over IPv4 (Point-to-Point Tunne ...
Ah ok, thanks! I see some unexpected symbols in mail's subject, maybe i have to resend mail with subject cleaned ? --
Aug 21, 4:24 am 2010
Dmitry Kozlov
[PATCH v8] PPTP: PPP over IPv4 (Point-to-Point Tunneling ...
PPP: introduce "pptp" module which implements point-to-point tunneling protocol using pppox framework NET: introduce the "gre" module for demultiplexing GRE packets on version criteria (required to pptp and ip_gre may coexists) NET: ip_gre: update to use the "gre" module Signed-off-by: Dmitry Kozlov <xeb@mail.ru> --- This patch introduces then pptp support to the linux kernel which dramatically speeds up pptp vpn connections and decreases cpu usage in comparison of existing user-space ...
Aug 20, 11:40 pm 2010
Dmitry Kozlov
[PATCH v8] PPTP: PPP over IPv4 (Point-to-Point Tunneling ...
PPP: introduce "pptp" module which implements point-to-point tunneling protocol using pppox framework NET: introduce the "gre" module for demultiplexing GRE packets on version criteria (required to pptp and ip_gre may coexists) NET: ip_gre: update to use the "gre" module Signed-off-by: Dmitry Kozlov <xeb@mail.ru> --- This patch introduces then pptp support to the linux kernel which dramatically speeds up pptp vpn connections and decreases cpu usage in comparison of existing user-space ...
Aug 20, 11:36 pm 2010
Kevin Hilman
Re: [PATCH 2/2] platform: Facilitate the creation of pse ...
Grant Likely <grant.likely@secretlab.ca> writes: hmm, a new requirement?, and one that would require some significant changes to the driver model. Currently, dev_pm_ops for a bus applies globally to *all* devices on that bus (or class or type) and changing that would require changing the platform_bus code to start having per-device (or per-parent-device) /me can't help but wonder why the OMAP implementation is getting all the negative attention while the other identical implementations ...
Aug 20, 5:10 pm 2010
Jarek Poplawski
Re: [Bugme-new] [Bug 16626] New: Machine hangs with EIP ...
After rethinking, it's almost impossible this patch could change anything here, so don't bother, but consider mainly the second proposal. Jarek P. --
Aug 21, 12:47 am 2010
Jarek Poplawski
Re: [Bugme-new] [Bug 16626] New: Machine hangs with EIP ...
Yes, it seems it should be possible at least to handle the bug with a warning and error return, considering Plamen's problems with getting the trace. Jarek P. --
Aug 21, 1:07 am 2010
Eric Dumazet
Re: [Bugme-new] [Bug 16626] New: Machine hangs with EIP ...
Indeed ;) Its true that not many nics use the skb_copy_and_csum_dev() helper, maybe this one must be updated somehow ? --
Aug 21, 12:50 am 2010
Simon Horman
Re: [rfc] IPVS: convert scheduler management to RCU
Thanks. As suggested by Julian and others, I've decided to just use a spinlock and not use RCU for this. --
Aug 20, 8:28 pm 2010
Simon Horman
Re: [rfc] IPVS: convert scheduler management to RCU
Thanks for the list. It looks like a good basis for some conversion work. --
Aug 20, 8:30 pm 2010
Steve Chen
Re: TAHI CN-6-4-1 failed on Linux 2.6.32 kernel
It appears the issue lies somewhere within CONNTRACK. A co-worker tested with CONNTRACK disable, and the test passed. Looks like I have a bit of homework to do. Thank you for all the helpful hints that got me this far. Steve --
Aug 20, 9:16 pm 2010
previous daytodaynext day
August 20, 2010August 21, 2010August 22, 2010