X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fclassifier.c;h=8e5c1a657f2929b7179a913fe6eae5c67c2a6999;hb=3ad6619bf3f7e1fc879bb74285f0379ac473243f;hp=378faf8e0e09f215728be2a2185a45bd4ee74c62;hpb=eabc4fc41952e9d4b979ba137d15d9b7ab791959;p=sliver-openvswitch.git diff --git a/lib/classifier.c b/lib/classifier.c index 378faf8e0..8e5c1a657 100644 --- a/lib/classifier.c +++ b/lib/classifier.c @@ -465,7 +465,10 @@ classifier_for_each_match(const struct classifier *cls, * it must not delete (or move) any other rules in 'cls' that are in the same * table as the argument rule. Two rules are in the same table if their * cls_rule structs have the same table_idx; as a special case, a rule with - * wildcards and an exact-match rule will never be in the same table. */ + * wildcards and an exact-match rule will never be in the same table. + * + * If 'include' is CLS_INC_EXACT then CLASSIFIER_FOR_EACH_EXACT_RULE(_SAFE) is + * probably easier to use. */ void classifier_for_each(const struct classifier *cls, int include, void (*callback)(struct cls_rule *, void *aux),