Re: [PATCH net-next 1/4] net: qdisc: add op to run filters/actions before enqueue

2015-09-02 Thread Cong Wang
(Why not Cc'ing Jamal for net_sched pathes?) On Tue, Sep 1, 2015 at 9:34 AM, Daniel Borkmann wrote: > From: John Fastabend > > Add a new ->preclassify() op to allow multiqueue queuing disciplines > to call tc_classify() or perform other work

Re: [PATCH net-next 1/4] net: qdisc: add op to run filters/actions before enqueue

2015-09-02 Thread Jamal Hadi Salim
On 09/02/15 02:22, Cong Wang wrote: (Why not Cc'ing Jamal for net_sched pathes?) On Tue, Sep 1, 2015 at 9:34 AM, Daniel Borkmann wrote: From: John Fastabend Add a new ->preclassify() op to allow multiqueue queuing disciplines to call

Re: [PATCH net-next 1/4] net: qdisc: add op to run filters/actions before enqueue

2015-09-02 Thread Daniel Borkmann
On 09/02/2015 08:22 AM, Cong Wang wrote: (Why not Cc'ing Jamal for net_sched pathes?) Sorry, forgot about it, and thanks for the Cc! -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH net-next 1/4] net: qdisc: add op to run filters/actions before enqueue

2015-09-01 Thread Eric Dumazet
On Tue, 2015-09-01 at 18:34 +0200, Daniel Borkmann wrote: > From: John Fastabend > > Add a new ->preclassify() op to allow multiqueue queuing disciplines > to call tc_classify() or perform other work before dev_pick_tx(). > > This helps, for example, with mqprio

Re: [PATCH net-next 1/4] net: qdisc: add op to run filters/actions before enqueue

2015-09-01 Thread Daniel Borkmann
On 09/01/2015 07:21 PM, Eric Dumazet wrote: On Tue, 2015-09-01 at 18:34 +0200, Daniel Borkmann wrote: From: John Fastabend Add a new ->preclassify() op to allow multiqueue queuing disciplines to call tc_classify() or perform other work before dev_pick_tx(). This

[PATCH net-next 1/4] net: qdisc: add op to run filters/actions before enqueue

2015-09-01 Thread Daniel Borkmann
From: John Fastabend Add a new ->preclassify() op to allow multiqueue queuing disciplines to call tc_classify() or perform other work before dev_pick_tx(). This helps, for example, with mqprio queueing discipline that has offload support by most popular 10G NICs,