2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 06:15:47 +00:00

classifier: Fix comment.

Signed-off-by: Jarno Rajahalme <jrajahalme@nicira.com>
Acked-by: Joe Stringer <joestringer@nicira.com>
This commit is contained in:
Jarno Rajahalme
2015-08-12 16:00:48 -07:00
parent b883db2497
commit 96152d1daf

View File

@@ -283,11 +283,10 @@ cls_rule_is_catchall(const struct cls_rule *rule)
return minimask_is_catchall(rule->match.mask);
}
/* Makes rule invisible after 'version'. Once that version is made invisible
* (by changing the version parameter used in lookups), the rule should be
* actually removed via ovsrcu_postpone().
/* Makes 'rule' invisible in 'remove_version'. Once that version is used in
* lookups, the caller should remove 'rule' via ovsrcu_postpone().
*
* 'rule_' must be in a classifier. */
* 'rule' must be in a classifier. */
void
cls_rule_make_invisible_in_version(const struct cls_rule *rule,
cls_version_t remove_version)