diff options
author | David S. Miller <davem@davemloft.net> | 2008-07-15 02:58:10 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-17 19:21:08 -0700 |
commit | 6b0fb1261a4655613bed5dac0e935e733969e999 (patch) | |
tree | 2f6a57f1c0e674a0a56be42de2f6f9251472616b /include | |
parent | fd2ea0a79faad824258af5dcec1927aa24d81c16 (diff) | |
download | linux-3.10-6b0fb1261a4655613bed5dac0e935e733969e999.tar.gz linux-3.10-6b0fb1261a4655613bed5dac0e935e733969e999.tar.bz2 linux-3.10-6b0fb1261a4655613bed5dac0e935e733969e999.zip |
netdev: Kill struct net_device_subqueue and netdev->egress_subqueue*
No longer used.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netdevice.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index b5c1e7df64f..a1c2c220449 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -118,14 +118,6 @@ struct wireless_dev; #endif /* __KERNEL__ */ -struct net_device_subqueue -{ - /* Give a control state for each queue. This struct may contain - * per-queue locks in the future. - */ - unsigned long state; -}; - /* * Network device statistics. Akin to the 2.0 ether stats but * with byte counters. @@ -761,10 +753,6 @@ struct net_device /* for setting kernel sock attribute on TCP connection setup */ #define GSO_MAX_SIZE 65536 unsigned int gso_max_size; - - /* The TX queue control structures */ - unsigned int egress_subqueue_count; - struct net_device_subqueue egress_subqueue[1]; }; #define to_net_dev(d) container_of(d, struct net_device, dev) |