From 95a5454c511057ae6f35c18f0adfce4d2dbe5410 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 4 Dec 2019 15:06:07 -0800 Subject: ofp-print: Abbreviate lists of fields in table features output. This makes the output both shorter and easier to read. Signed-off-by: Ben Pfaff Signed-off-by: William Tu --- include/openvswitch/meta-flow.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/openvswitch') diff --git a/include/openvswitch/meta-flow.h b/include/openvswitch/meta-flow.h index b7fd6cb3f..1f81d830e 100644 --- a/include/openvswitch/meta-flow.h +++ b/include/openvswitch/meta-flow.h @@ -1943,6 +1943,9 @@ struct mf_bitmap { bool mf_bitmap_is_superset(const struct mf_bitmap *super, const struct mf_bitmap *sub); +struct mf_bitmap mf_bitmap_and(struct mf_bitmap, struct mf_bitmap); +struct mf_bitmap mf_bitmap_or(struct mf_bitmap, struct mf_bitmap); +struct mf_bitmap mf_bitmap_not(struct mf_bitmap); /* Use this macro as CASE_MFF_REGS: in a switch statement to choose all of the * MFF_REGn cases. */ -- cgit v1.2.1