netdev: Move gso_skb into netdev_queue.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller
2008-07-08 23:10:33 -07:00
parent c2aa288548
commit 970565bbad
2 changed files with 24 additions and 22 deletions

View File

@@ -452,6 +452,7 @@ struct netdev_queue {
spinlock_t lock;
struct net_device *dev;
struct Qdisc *qdisc;
struct sk_buff *gso_skb;
struct Qdisc *qdisc_sleeping;
struct list_head qdisc_list;
struct netdev_queue *next_sched;
@@ -635,9 +636,6 @@ struct net_device
struct netdev_queue tx_queue ____cacheline_aligned_in_smp;
unsigned long tx_queue_len; /* Max frames per queue allowed */
/* Partially transmitted GSO packet. */
struct sk_buff *gso_skb;
/*
* One part is mostly used on xmit path (device)
*/