diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-10-02 02:11:55 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-10-05 03:23:44 -0400 |
commit | 24824a09e35402b8d58dcc5be803a5ad3937bdba (patch) | |
tree | 65c5fa4046646623b130702c9abc92c485ec575b /include/linux/netdevice.h | |
parent | 0bd9e6a964d86a19f54a9ba31168a37d64e451d1 (diff) |
net: dynamic ingress_queue allocation
ingress being not used very much, and net_device->ingress_queue being
quite a big object (128 or 256 bytes), use a dynamic allocation if
needed (tc qdisc add dev eth0 ingress ...)
dev_ingress_queue(dev) helper should be used only with RTNL taken.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index ceed3474014a..92d81edd5808 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -986,7 +986,7 @@ struct net_device { | |||
986 | rx_handler_func_t *rx_handler; | 986 | rx_handler_func_t *rx_handler; |
987 | void *rx_handler_data; | 987 | void *rx_handler_data; |
988 | 988 | ||
989 | struct netdev_queue ingress_queue; /* use two cache lines */ | 989 | struct netdev_queue __rcu *ingress_queue; |
990 | 990 | ||
991 | /* | 991 | /* |
992 | * Cache lines mostly used on transmit path | 992 | * Cache lines mostly used on transmit path |