aboutsummaryrefslogtreecommitdiff
path: root/lib/dpif-linux.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-10-05 09:59:51 -0700
committerBen Pfaff <blp@nicira.com>2011-10-12 16:27:09 -0700
commit09ded0ad489630236210a02f2d315816e558d701 (patch)
treeab6fb6575e822d0c6026b4d564fb12ad64a8a25c /lib/dpif-linux.c
parent13c0dbe79a50c412721a5df697c6a6303b22d2da (diff)
datapath-protocol: Rename enums for consistency.
Most of the enum tags in this file are lowercased versions of the uppercase enum prefixes (or slightly less abbreviated versions, e.g. "dp" becomes "datapath"). This commit fixes up the others for consistency. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'lib/dpif-linux.c')
-rw-r--r--lib/dpif-linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dpif-linux.c b/lib/dpif-linux.c
index 08ac4425..43c21614 100644
--- a/lib/dpif-linux.c
+++ b/lib/dpif-linux.c
@@ -79,7 +79,7 @@ struct dpif_linux_dp {
const char *name; /* OVS_DP_ATTR_NAME. */
const uint32_t *upcall_pid; /* OVS_DP_UPCALL_PID. */
struct ovs_dp_stats stats; /* OVS_DP_ATTR_STATS. */
- enum ovs_frag_handling ipv4_frags; /* OVS_DP_ATTR_IPV4_FRAGS. */
+ enum ovs_datapath_frag ipv4_frags; /* OVS_DP_ATTR_IPV4_FRAGS. */
};
static void dpif_linux_dp_init(struct dpif_linux_dp *);