]> Git Repo - qemu.git/commitdiff
net: Flush queued packets when guest resumes
authorFam Zheng <[email protected]>
Tue, 7 Jul 2015 01:21:07 +0000 (09:21 +0800)
committerStefan Hajnoczi <[email protected]>
Mon, 20 Jul 2015 17:11:24 +0000 (18:11 +0100)
Since commit 6e99c63 "net/socket: Drop net_socket_can_send" and friends,
net queues need to be explicitly flushed after qemu_can_send_packet()
returns false, because the netdev side will disable the polling of fd.

This fixes the case of "cont" after "stop" (or migration).

Signed-off-by: Fam Zheng <[email protected]>
Message-id: 1436232067[email protected]
Signed-off-by: Stefan Hajnoczi <[email protected]>
net/net.c

index 6ff7fec1bb1cc3ce879aa2a79998742473cbc7e2..28a5597b8d8db18ad07047f41c7fc11431120949 100644 (file)
--- a/net/net.c
+++ b/net/net.c
@@ -1257,14 +1257,19 @@ void qmp_set_link(const char *name, bool up, Error **errp)
 static void net_vm_change_state_handler(void *opaque, int running,
                                         RunState state)
 {
-    /* Complete all queued packets, to guarantee we don't modify
-     * state later when VM is not running.
-     */
-    if (!running) {
-        NetClientState *nc;
-        NetClientState *tmp;
+    NetClientState *nc;
+    NetClientState *tmp;
 
-        QTAILQ_FOREACH_SAFE(nc, &net_clients, next, tmp) {
+    QTAILQ_FOREACH_SAFE(nc, &net_clients, next, tmp) {
+        if (running) {
+            /* Flush queued packets and wake up backends. */
+            if (nc->peer && qemu_can_send_packet(nc)) {
+                qemu_flush_queued_packets(nc->peer);
+            }
+        } else {
+            /* Complete all queued packets, to guarantee we don't modify
+             * state later when VM is not running.
+             */
             qemu_flush_or_purge_queued_packets(nc, true);
         }
     }
This page took 0.030148 seconds and 4 git commands to generate.