qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [6645] fix pci net hot-remove (Marcelo Tosatti)


From: Anthony Liguori
Subject: [Qemu-devel] [6645] fix pci net hot-remove (Marcelo Tosatti)
Date: Thu, 26 Feb 2009 16:40:31 +0000

Revision: 6645
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6645
Author:   aliguori
Date:     2009-02-26 16:40:31 +0000 (Thu, 26 Feb 2009)

Log Message:
-----------
fix pci net hot-remove (Marcelo Tosatti)


Missing brackets, doh.

Signed-off-by: Marcelo Tosatti <address@hidden>
Signed-off-by: Anthony Liguori <address@hidden>

Modified Paths:
--------------
    trunk/hw/device-hotplug.c

Modified: trunk/hw/device-hotplug.c
===================================================================
--- trunk/hw/device-hotplug.c   2009-02-26 16:40:19 UTC (rev 6644)
+++ trunk/hw/device-hotplug.c   2009-02-26 16:40:31 UTC (rev 6645)
@@ -51,7 +51,7 @@
     int i;
     NICInfo *nic;
 
-    for (i = 0; i < MAX_NICS; i++)
+    for (i = 0; i < MAX_NICS; i++) {
         nic = &nd_table[i];
         if (nic->used) {
             if (nic->private && match_fn(nic->private, arg)) {
@@ -64,6 +64,7 @@
                 net_client_uninit(nic);
             }
         }
+    }
 }
 
 void destroy_bdrvs(dev_match_fn *match_fn, void *arg)






reply via email to

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