aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2008-07-09 02:10:33 -0400
committerDavid S. Miller <davem@davemloft.net>2008-07-09 02:10:33 -0400
commit970565bbad0c7b98db0d14131a69e5a0f4445d49 (patch)
tree59ac641da5b22bb5ea6a0a333ceaa907f9959d10 /include
parentc2aa288548a29d909ec875e81137fb0dbbb420b7 (diff)
netdev: Move gso_skb into netdev_queue.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/netdevice.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 1379c822e51d..aae6c6d153f2 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -452,6 +452,7 @@ struct netdev_queue {
452 spinlock_t lock; 452 spinlock_t lock;
453 struct net_device *dev; 453 struct net_device *dev;
454 struct Qdisc *qdisc; 454 struct Qdisc *qdisc;
455 struct sk_buff *gso_skb;
455 struct Qdisc *qdisc_sleeping; 456 struct Qdisc *qdisc_sleeping;
456 struct list_head qdisc_list; 457 struct list_head qdisc_list;
457 struct netdev_queue *next_sched; 458 struct netdev_queue *next_sched;
@@ -635,9 +636,6 @@ struct net_device
635 struct netdev_queue tx_queue ____cacheline_aligned_in_smp; 636 struct netdev_queue tx_queue ____cacheline_aligned_in_smp;
636 unsigned long tx_queue_len; /* Max frames per queue allowed */ 637 unsigned long tx_queue_len; /* Max frames per queue allowed */
637 638
638 /* Partially transmitted GSO packet. */
639 struct sk_buff *gso_skb;
640
641/* 639/*
642 * One part is mostly used on xmit path (device) 640 * One part is mostly used on xmit path (device)
643 */ 641 */