diff options
author | David S. Miller <davem@davemloft.net> | 2008-07-15 05:58:10 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-17 22:21:08 -0400 |
commit | 6b0fb1261a4655613bed5dac0e935e733969e999 (patch) | |
tree | 2f6a57f1c0e674a0a56be42de2f6f9251472616b /include/linux/netdevice.h | |
parent | fd2ea0a79faad824258af5dcec1927aa24d81c16 (diff) |
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/linux/netdevice.h')
-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 b5c1e7df64fc..a1c2c2204498 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -118,14 +118,6 @@ struct wireless_dev; | |||
118 | 118 | ||
119 | #endif /* __KERNEL__ */ | 119 | #endif /* __KERNEL__ */ |
120 | 120 | ||
121 | struct net_device_subqueue | ||
122 | { | ||
123 | /* Give a control state for each queue. This struct may contain | ||
124 | * per-queue locks in the future. | ||
125 | */ | ||
126 | unsigned long state; | ||
127 | }; | ||
128 | |||
129 | /* | 121 | /* |
130 | * Network device statistics. Akin to the 2.0 ether stats but | 122 | * Network device statistics. Akin to the 2.0 ether stats but |
131 | * with byte counters. | 123 | * with byte counters. |
@@ -761,10 +753,6 @@ struct net_device | |||
761 | /* for setting kernel sock attribute on TCP connection setup */ | 753 | /* for setting kernel sock attribute on TCP connection setup */ |
762 | #define GSO_MAX_SIZE 65536 | 754 | #define GSO_MAX_SIZE 65536 |
763 | unsigned int gso_max_size; | 755 | unsigned int gso_max_size; |
764 | |||
765 | /* The TX queue control structures */ | ||
766 | unsigned int egress_subqueue_count; | ||
767 | struct net_device_subqueue egress_subqueue[1]; | ||
768 | }; | 756 | }; |
769 | #define to_net_dev(d) container_of(d, struct net_device, dev) | 757 | #define to_net_dev(d) container_of(d, struct net_device, dev) |
770 | 758 | ||