mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 14:25:26 +00:00
classifier: Change classifier_rule_overlaps() to take a cls_rule *.
There's no benefit to spelling out all of the components of a cls_rule separately. Just use cls_rule itself.
This commit is contained in:
@@ -147,8 +147,8 @@ void classifier_insert_exact(struct classifier *, struct cls_rule *);
|
||||
void classifier_remove(struct classifier *, struct cls_rule *);
|
||||
struct cls_rule *classifier_lookup(const struct classifier *,
|
||||
const struct flow *, int include);
|
||||
bool classifier_rule_overlaps(const struct classifier *, const struct flow *,
|
||||
uint32_t wildcards, unsigned int priority);
|
||||
bool classifier_rule_overlaps(const struct classifier *,
|
||||
const struct cls_rule *);
|
||||
|
||||
typedef void cls_cb_func(struct cls_rule *, void *aux);
|
||||
|
||||
|
Reference in New Issue
Block a user