diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-09-28 05:58:37 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-09-29 13:25:53 -0700 |
commit | bfa5ae63b823f4ffd3483a05f60a93a4a7b7d680 (patch) | |
tree | 62dc495022ac697d81c3b80f5a262713e6f657a3 /include/linux/netdevice.h | |
parent | 8560f2266b36adb43238f1f9fd13958dd031901c (diff) | |
download | blackbird-obmc-linux-bfa5ae63b823f4ffd3483a05f60a93a4a7b7d680.tar.gz blackbird-obmc-linux-bfa5ae63b823f4ffd3483a05f60a93a4a7b7d680.zip |
net: rename netdev rx_queue to ingress_queue
There is some confusion with rx_queue name after RPS, and net drivers
private rx_queue fields.
I suggest to rename "struct net_device"->rx_queue to ingress_queue.
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 6f0845e0b888..ceed3474014a 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -986,7 +986,7 @@ struct net_device { rx_handler_func_t *rx_handler; void *rx_handler_data; - struct netdev_queue rx_queue; /* use two cache lines */ + struct netdev_queue ingress_queue; /* use two cache lines */ /* * Cache lines mostly used on transmit path |