summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHan Zhou <zhouhan@gmail.com>2018-08-13 10:48:00 -0700
committerBen Pfaff <blp@ovn.org>2018-08-14 14:25:09 -0700
commitc6cc8f38ebf1ba50664a339a25ee42915dbeacd1 (patch)
tree3b723ba48d77138f5647e2b653cbfa4944b26a65 /lib
parent31e434fc985c682708f5d92bde2ceae452bdaa4f (diff)
downloadopenvswitch-c6cc8f38ebf1ba50664a339a25ee42915dbeacd1.tar.gz
ovsdb-idl: Remove a misleading comment for change tracking.
The comment was added when the feature was introduced but what it described is not what is implemented, probably because of revisions after code reviews. Signed-off-by: Han Zhou <hzhou8@ebay.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/ovsdb-idl.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/ovsdb-idl.c b/lib/ovsdb-idl.c
index 8fdd18f46..501c2bef9 100644
--- a/lib/ovsdb-idl.c
+++ b/lib/ovsdb-idl.c
@@ -2834,9 +2834,7 @@ ovsdb_idl_row_clear_arcs(struct ovsdb_idl_row *row, bool destroy_dsts)
struct ovsdb_idl_arc *arc, *next;
/* Delete all forward arcs. If 'destroy_dsts', destroy any orphaned rows
- * that this causes to be unreferenced, if tracking is not enabled.
- * If tracking is enabled, orphaned nodes are removed from hmap but not
- * freed.
+ * that this causes to be unreferenced.
*/
LIST_FOR_EACH_SAFE (arc, next, src_node, &row->src_arcs) {
ovs_list_remove(&arc->dst_node);