summaryrefslogtreecommitdiff
path: root/lib/classifier.h
diff options
context:
space:
mode:
authorJarno Rajahalme <jrajahalme@nicira.com>2015-05-29 11:28:38 -0700
committerJarno Rajahalme <jrajahalme@nicira.com>2015-06-01 13:24:09 -0700
commitfc02ecc7171009453f71de572d7874d385266aed (patch)
treea4ed770ce5795a26c1f56c7d92058bdcdf0c4023 /lib/classifier.h
parent7b3dca89069d81296e07d29014e7d47f921e669b (diff)
downloadopenvswitch-fc02ecc7171009453f71de572d7874d385266aed.tar.gz
classifier: Add support for invisible flows.
This makes it possible to tentatively add flows to the classifier without the datapath seeing them. Signed-off-by: Jarno Rajahalme <jrajahalme@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'lib/classifier.h')
-rw-r--r--lib/classifier.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/classifier.h b/lib/classifier.h
index f9af33e32..c38d92200 100644
--- a/lib/classifier.h
+++ b/lib/classifier.h
@@ -285,6 +285,7 @@ void cls_rule_format(const struct cls_rule *, struct ds *);
bool cls_rule_is_catchall(const struct cls_rule *);
bool cls_rule_is_loose_match(const struct cls_rule *rule,
const struct minimatch *criteria);
+void cls_rule_make_visible(const struct cls_rule *rule);
/* Constructor/destructor. Must run single-threaded. */
void classifier_init(struct classifier *, const uint8_t *flow_segments);
@@ -358,7 +359,6 @@ void cls_cursor_advance(struct cls_cursor *);
#ifdef __cplusplus
}
#endif
-
static inline void
classifier_defer(struct classifier *cls)