diff options
author | David S. Miller <davem@davemloft.net> | 2008-09-21 22:36:49 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-09-21 22:36:49 -0700 |
commit | e9bb8fb0b6d61a822201537b25206a0ca34b9d1d (patch) | |
tree | 2bb2b45bd7f2e0826644e54cda957c22cd335aaa /drivers/block/aoe/aoechr.c | |
parent | 67fed45930fa31e92c11beb3a3dbf83a1a92a58d (diff) | |
download | blackbird-op-linux-e9bb8fb0b6d61a822201537b25206a0ca34b9d1d.tar.gz blackbird-op-linux-e9bb8fb0b6d61a822201537b25206a0ca34b9d1d.zip |
aoe: Use SKB interfaces for list management instead of home-grown stuff.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/block/aoe/aoechr.c')
-rw-r--r-- | drivers/block/aoe/aoechr.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/block/aoe/aoechr.c b/drivers/block/aoe/aoechr.c index 181ebb85f0be..1f56d2c5b7fc 100644 --- a/drivers/block/aoe/aoechr.c +++ b/drivers/block/aoe/aoechr.c @@ -9,6 +9,7 @@ #include <linux/completion.h> #include <linux/delay.h> #include <linux/smp_lock.h> +#include <linux/skbuff.h> #include "aoe.h" enum { @@ -103,7 +104,12 @@ loop: spin_lock_irqsave(&d->lock, flags); goto loop; } - aoenet_xmit(skb); + if (skb) { + struct sk_buff_head queue; + __skb_queue_head_init(&queue); + __skb_queue_tail(&queue, skb); + aoenet_xmit(&queue); + } aoecmd_cfg(major, minor); return 0; } |