Skip to content

Commit

Permalink
ofproto-dpif: Fix UFID typo.
Browse files Browse the repository at this point in the history
While UFIDs are technically userspace flow IDs, the canonical name is
"unique flow identifiers".

Signed-off-by: Joe Stringer <[email protected]>
  • Loading branch information
joestringer committed Feb 27, 2015
1 parent b037bc5 commit 7915c9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ofproto/ofproto-dpif.c
Original file line number Diff line number Diff line change
Expand Up @@ -1077,7 +1077,7 @@ check_recirc(struct dpif_backer *backer)
return enable_recirc;
}

/* Tests whether 'dpif' supports userspace flow ids. We can skip serializing
/* Tests whether 'dpif' supports unique flow ids. We can skip serializing
* some flow attributes for datapaths that support this feature.
*
* Returns true if 'dpif' supports UFID for flow operations.
Expand All @@ -1101,10 +1101,10 @@ check_ufid(struct dpif_backer *backer)
enable_ufid = dpif_probe_feature(backer->dpif, "UFID", &key, &ufid);

if (enable_ufid) {
VLOG_INFO("%s: Datapath supports userspace flow ids",
VLOG_INFO("%s: Datapath supports unique flow ids",
dpif_name(backer->dpif));
} else {
VLOG_INFO("%s: Datapath does not support userspace flow ids",
VLOG_INFO("%s: Datapath does not support unique flow ids",
dpif_name(backer->dpif));
}
return enable_ufid;
Expand Down

0 comments on commit 7915c9d

Please sign in to comment.