summaryrefslogtreecommitdiff
path: root/lib/dpif.c
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@ovn.org>2018-07-25 13:52:42 -0700
committerJustin Pettit <jpettit@ovn.org>2018-07-25 14:17:36 -0700
commit494a74557a7d8eb8aafcc8a6e96ac3493356e033 (patch)
tree55f717a0118cf07f9b5a71315723a78b58350c62 /lib/dpif.c
parentf603d7d262fdfa2dc977f3f3ec516b54e6a7deae (diff)
downloadopenvswitch-494a74557a7d8eb8aafcc8a6e96ac3493356e033.tar.gz
Revert "dpctl: Expand the flow dump type filter"
Commit ab15e70eb587 ("dpctl: Expand the flow dump type filter") had a number of issues with style, build breakage, and failing unit tests. The patch is being reverted so that they can addressed. This reverts commit ab15e70eb5878b46f8f84da940ffc915b6d74cad. CC: Gavi Teitz <gavi@mellanox.com> CC: Simon Horman <simon.horman@netronome.com> CC: Roi Dayan <roid@mellanox.com> CC: Aaron Conole <aconole@redhat.com> Signed-off-by: Justin Pettit <jpettit@ovn.org> Acked-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'lib/dpif.c')
-rw-r--r--lib/dpif.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/dpif.c b/lib/dpif.c
index 21bc06226..d78330bef 100644
--- a/lib/dpif.c
+++ b/lib/dpif.c
@@ -1080,10 +1080,9 @@ dpif_flow_del(struct dpif *dpif,
* This function always successfully returns a dpif_flow_dump. Error
* reporting is deferred to dpif_flow_dump_destroy(). */
struct dpif_flow_dump *
-dpif_flow_dump_create(const struct dpif *dpif, bool terse,
- struct dpif_flow_dump_types *types)
+dpif_flow_dump_create(const struct dpif *dpif, bool terse, char *type)
{
- return dpif->dpif_class->flow_dump_create(dpif, terse, types);
+ return dpif->dpif_class->flow_dump_create(dpif, terse, type);
}
/* Destroys 'dump', which must have been created with dpif_flow_dump_create().