aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/block')
-rw-r--r--drivers/block/aoe/aoenet.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/block/aoe/aoenet.c b/drivers/block/aoe/aoenet.c
index 8fb26030eba8..9157d64270cb 100644
--- a/drivers/block/aoe/aoenet.c
+++ b/drivers/block/aoe/aoenet.c
@@ -99,8 +99,10 @@ aoenet_xmit(struct sk_buff_head *queue)
99{ 99{
100 struct sk_buff *skb, *tmp; 100 struct sk_buff *skb, *tmp;
101 101
102 skb_queue_walk_safe(queue, skb, tmp) 102 skb_queue_walk_safe(queue, skb, tmp) {
103 __skb_unlink(skb, queue);
103 dev_queue_xmit(skb); 104 dev_queue_xmit(skb);
105 }
104} 106}
105 107
106/* 108/*