ovsdb-idl: Make rows inserted by transaction appear during table iteration.
authorBen Pfaff <blp@nicira.com>
Wed, 27 Jan 2010 22:12:35 +0000 (14:12 -0800)
committerBen Pfaff <blp@nicira.com>
Wed, 27 Jan 2010 22:12:35 +0000 (14:12 -0800)
lib/ovsdb-idl.c

index fd4c915..960e086 100644 (file)
@@ -799,7 +799,7 @@ next_real_row(struct ovsdb_idl_table *table, struct hmap_node *node)
         struct ovsdb_idl_row *row;
 
         row = CONTAINER_OF(node, struct ovsdb_idl_row, hmap_node);
-        if (!ovsdb_idl_row_is_orphan(row)) {
+        if (row->new || !ovsdb_idl_row_is_orphan(row)) {
             return row;
         }
     }