diff options
author | David S. Miller <davem@davemloft.net> | 2008-07-09 01:49:00 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-07-09 01:49:00 -0400 |
commit | 816f3258e70db38d6d92c8d871377179fd69160f (patch) | |
tree | 7ab28132592c82e2ac40317733ea1dd7d6f4e5b5 /include | |
parent | b0e1e6462df3c5944010b3328a546d8fe5d932cd (diff) |
netdev: Kill qdisc_ingress, use netdev->rx_queue.qdisc instead.
Now that our qdisc management is bi-directional, per-queue, and fully
orthogonal, there is no reason to have a special ingress qdisc pointer
in struct net_device.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netdevice.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index df702a7b3db5..e7c49246fd88 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -634,9 +634,6 @@ struct net_device | |||
634 | 634 | ||
635 | struct netdev_queue rx_queue; | 635 | struct netdev_queue rx_queue; |
636 | struct netdev_queue tx_queue ____cacheline_aligned_in_smp; | 636 | struct netdev_queue tx_queue ____cacheline_aligned_in_smp; |
637 | |||
638 | struct Qdisc *qdisc_ingress; | ||
639 | |||
640 | unsigned long tx_queue_len; /* Max frames per queue allowed */ | 637 | unsigned long tx_queue_len; /* Max frames per queue allowed */ |
641 | 638 | ||
642 | /* Partially transmitted GSO packet. */ | 639 | /* Partially transmitted GSO packet. */ |