qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [6844] make qemu_announce_self handle non contiguous net ta


From: Anthony Liguori
Subject: [Qemu-devel] [6844] make qemu_announce_self handle non contiguous net tables ( Marcelo Tosatti)
Date: Fri, 13 Mar 2009 15:03:59 +0000

Revision: 6844
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=6844
Author:   aliguori
Date:     2009-03-13 15:03:58 +0000 (Fri, 13 Mar 2009)
Log Message:
-----------
make qemu_announce_self handle non contiguous net tables (Marcelo Tosatti)


With hotplug nd_table might contain holes.

Noticed by Eduardo Habkost.

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

Modified Paths:
--------------
    trunk/savevm.c

Modified: trunk/savevm.c
===================================================================
--- trunk/savevm.c      2009-03-13 15:03:27 UTC (rev 6843)
+++ trunk/savevm.c      2009-03-13 15:03:58 UTC (rev 6844)
@@ -122,7 +122,9 @@
     VLANClientState *vc;
     uint8_t buf[256];
 
-    for (i = 0; i < nb_nics; i++) {
+    for (i = 0; i < MAX_NICS; i++) {
+        if (!nd_table[i].used)
+            continue;
         len = announce_self_create(buf, nd_table[i].macaddr);
         vlan = nd_table[i].vlan;
         for(vc = vlan->first_client; vc != NULL; vc = vc->next) {





reply via email to

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