aboutsummaryrefslogtreecommitdiff
path: root/lib/dpif.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-01-17 14:43:30 -0800
committerBen Pfaff <blp@nicira.com>2011-01-27 21:08:39 -0800
commit693c4a01124ec5ad9253f8cfcfd99075a9d637f6 (patch)
treef0dd2d0c9b9c6e667d247c5d4fe8b4c44744794d /lib/dpif.h
parentc33087b8507ff486acd13fea85506cfe96901b01 (diff)
datapath: Eliminate 'flags' member from odp_flow.
Nothing was productively using the 'flags' member of odp_flow, so this commit removes it. ODPFF_ZERO_TCP_FLAGS isn't used at all (as of the previous commit). ODPFF_EOF has been replaced by a special case of the 'key_len' member. This will go away, too, once AF_NETLINK starts being used. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'lib/dpif.h')
-rw-r--r--lib/dpif.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dpif.h b/lib/dpif.h
index 20fe0f77..e401168e 100644
--- a/lib/dpif.h
+++ b/lib/dpif.h
@@ -131,7 +131,7 @@ int dpif_flow_put(struct dpif *, enum dpif_flow_put_flags,
int dpif_flow_del(struct dpif *,
const struct nlattr *key, size_t key_len,
struct dpif_flow_stats *);
-int dpif_flow_get(const struct dpif *, int flags,
+int dpif_flow_get(const struct dpif *,
const struct nlattr *key, size_t key_len,
struct ofpbuf **actionsp, struct dpif_flow_stats *);