Skip to content

Commit

Permalink
Remove last mentions of 'facet' from comments.
Browse files Browse the repository at this point in the history
How did these survive so long?!  OVS hasn't had facets since 2013.

Signed-off-by: Ben Pfaff <[email protected]>
  • Loading branch information
blp committed Feb 6, 2018
1 parent 845e688 commit 4899982
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/odp-util.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ enum {
#undef SPR
};

/* Reasons why a subfacet might not be fast-pathable.
/* Reasons why a flow might not be fast-pathable.
*
* Each reason is a separate bit to allow reasons to be combined. */
enum slow_path_reason {
Expand Down
11 changes: 5 additions & 6 deletions ofproto/ofproto-dpif-mirror.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 4899982

Please sign in to comment.