summaryrefslogtreecommitdiff
path: root/ofproto
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2018-01-24 11:40:18 -0800
committerBen Pfaff <blp@ovn.org>2018-02-06 10:25:50 -0800
commit48999827e6b6021c610cc64a43c4835c9a3b2b9d (patch)
tree5bcc4f38b97b6d76e00153719cda6f5b02087a09 /ofproto
parent845e688435a38670f1364e322a39d0ff3bd87604 (diff)
downloadopenvswitch-48999827e6b6021c610cc64a43c4835c9a3b2b9d.tar.gz
Remove last mentions of 'facet' from comments.
How did these survive so long?! OVS hasn't had facets since 2013. Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'ofproto')
-rw-r--r--ofproto/ofproto-dpif-mirror.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/ofproto/ofproto-dpif-mirror.c b/ofproto/ofproto-dpif-mirror.c
index 4659a7d93..343b75f0e 100644
--- a/ofproto/ofproto-dpif-mirror.c
+++ b/ofproto/ofproto-dpif-mirror.c
@@ -387,12 +387,11 @@ mirror_update_stats(struct mbridge *mbridge, mirror_mask_t mirrors,
m = mbridge->mirrors[raw_ctz(mirrors)];
if (!m) {
- /* In normal circumstances 'm' will not be NULL. However,
- * if mirrors are reconfigured, we can temporarily get out
- * of sync in facet_revalidate(). We could "correct" the
- * mirror list before reaching here, but doing that would
- * not properly account the traffic stats we've currently
- * accumulated for previous mirror configuration. */
+ /* In normal circumstances 'm' will not be NULL. However, if
+ * mirrors are reconfigured, we can temporarily get out of sync.
+ * We could "correct" the mirror list before reaching here, but
+ * doing that would not properly account the traffic stats we've
+ * currently accumulated for previous mirror configuration. */
continue;
}