[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <200805261753.23860.rusty@rustcorp.com.au>
Date: Mon, 26 May 2008 17:53:23 +1000
From: Rusty Russell <rusty@...tcorp.com.au>
To: Jeff Garzik <jeff@...zik.org>
Cc: netdev@...r.kernel.org, virtualization@...ts.linux-foundation.org,
Mark McLoughlin <markmc@...hat.com>,
Wang Chen <wangchen@...fujitsu.com>
Subject: [PATCH 3/3] virtio: Use __skb_queue_purge()
From: Wang Chen <wangchen@...fujitsu.com>
Use standard routine for queue purging.
Signed-off-by: Wang Chen <wangchen@...fujitsu.com>
Signed-off-by: Rusty Russell <rusty@...tcorp.com.au>
---
drivers/net/virtio_net.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index f926b5a..fe7cdf2 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -470,8 +470,7 @@ static void virtnet_remove(struct virtio_device *vdev)
kfree_skb(skb);
vi->num--;
}
- while ((skb = __skb_dequeue(&vi->send)) != NULL)
- kfree_skb(skb);
+ __skb_queue_purge(&vi->send);
BUG_ON(vi->num != 0);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists