qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 2/8] net: purge queued packets in tap_cleanup()


From: Mark McLoughlin
Subject: [Qemu-devel] [PATCH 2/8] net: purge queued packets in tap_cleanup()
Date: Thu, 18 Jun 2009 18:21:30 +0100

If tap has any packets queued at host_net_remove time, it needs to purge
them in order to prevent a sent callback being invoked for it.

Signed-off-by: Mark McLoughlin <address@hidden>
---
 net.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/net.c b/net.c
index 0753a7c..91c08bd 100644
--- a/net.c
+++ b/net.c
@@ -1128,6 +1128,8 @@ static void tap_cleanup(VLANClientState *vc)
 {
     TAPState *s = vc->opaque;
 
+    qemu_purge_queued_packets(vc);
+
     if (s->down_script[0])
         launch_script(s->down_script, s->down_script_arg, s->fd);
 
-- 
1.6.0.6





reply via email to

[Prev in Thread] Current Thread [Next in Thread]