aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netdevice.h
diff options
context:
space:
mode:
authorDaniel Borkmann <daniel@iogearbox.net>2015-05-09 16:51:32 -0400
committerDavid S. Miller <davem@davemloft.net>2015-05-11 11:10:35 -0400
commitd2788d34885d4ce5ba17a8996fd95d28942e574e (patch)
tree8d57eceb0329c9f00fd1b00cc85ae497658219a6 /include/linux/netdevice.h
parentc9e99fd078ef7fdcd9ee4f5a4cfdbece319587af (diff)
net: sched: further simplify handle_ing
Ingress qdisc has no other purpose than calling into tc_classify() that executes attached classifier(s) and action(s). It has a 1:1 relationship to dev->ingress_queue. After having commit 087c1a601ad7 ("net: sched: run ingress qdisc without locks") removed the central ingress lock, one major contention point is gone. The extra indirection layers however, are not necessary for calling into ingress qdisc. pktgen calling locally into netif_receive_skb() with a dummy u32, single CPU result on a Supermicro X10SLM-F, Xeon E3-1240: before ~21,1 Mpps, after patch ~22,9 Mpps. We can redirect the private classifier list to the netdev directly, without changing any classifier API bits (!) and execute on that from handle_ing() side. The __QDISC_STATE_DEACTIVATE test can be removed, ingress qdisc doesn't have a queue and thus dev_deactivate_queue() is also not applicable, ingress_cl_list provides similar behaviour. In other words, ingress qdisc acts like TCQ_F_BUILTIN qdisc. One next possible step is the removal of the dev's ingress (dummy) netdev_queue, and to only have the list member in the netdevice itself. Note, the filter chain is RCU protected and individual filter elements are being kfree'd by sched subsystem after RCU grace period. RCU read lock is being held by __netif_receive_skb_core(). Joint work with Alexei Starovoitov. Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Signed-off-by: Alexei Starovoitov <ast@plumgrid.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r--include/linux/netdevice.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 1899c74a7127..c4e1caf6056f 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -1655,7 +1655,11 @@ struct net_device {
1655 rx_handler_func_t __rcu *rx_handler; 1655 rx_handler_func_t __rcu *rx_handler;
1656 void __rcu *rx_handler_data; 1656 void __rcu *rx_handler_data;
1657 1657
1658#if CONFIG_NET_CLS_ACT
1659 struct tcf_proto __rcu *ingress_cl_list;
1660#endif
1658 struct netdev_queue __rcu *ingress_queue; 1661 struct netdev_queue __rcu *ingress_queue;
1662
1659 unsigned char broadcast[MAX_ADDR_LEN]; 1663 unsigned char broadcast[MAX_ADDR_LEN];
1660#ifdef CONFIG_RFS_ACCEL 1664#ifdef CONFIG_RFS_ACCEL
1661 struct cpu_rmap *rx_cpu_rmap; 1665 struct cpu_rmap *rx_cpu_rmap;