summaryrefslogtreecommitdiff
path: root/include/linux/openvswitch.h
diff options
context:
space:
mode:
authorJesse Gross <jesse@nicira.com>2012-11-06 12:45:19 -0800
committerJesse Gross <jesse@nicira.com>2012-11-06 23:27:55 -0800
commit49a4902d76b9149e4fa399bde6d5cb9a91e64c07 (patch)
treecd0f04ff81663d6f1d214c2278e309023ab2d52d /include/linux/openvswitch.h
parent5c7f58830a25520f7e18225b79de2774b9e9e012 (diff)
downloadopenvswitch-49a4902d76b9149e4fa399bde6d5cb9a91e64c07.tar.gz
datapath: Shorten flow tunneling flags.
The names for the flags used by flow based tunneling are pretty long. This shortens them a little by removing the word FLOW, which is a distinction that won't be meaningful in the near future. Signed-off-by: Jesse Gross <jesse@nicira.com> Acked-by: Kyle Mestery <kmestery@cisco.com>
Diffstat (limited to 'include/linux/openvswitch.h')
-rw-r--r--include/linux/openvswitch.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/openvswitch.h b/include/linux/openvswitch.h
index e3e41919f..c4823d9f5 100644
--- a/include/linux/openvswitch.h
+++ b/include/linux/openvswitch.h
@@ -364,9 +364,9 @@ struct ovs_key_nd {
};
/* Values for ovs_key_ipv4_tunnel->tun_flags */
-#define OVS_FLOW_TNL_F_DONT_FRAGMENT (1 << 0)
-#define OVS_FLOW_TNL_F_CSUM (1 << 1)
-#define OVS_FLOW_TNL_F_KEY (1 << 2)
+#define OVS_TNL_F_DONT_FRAGMENT (1 << 0)
+#define OVS_TNL_F_CSUM (1 << 1)
+#define OVS_TNL_F_KEY (1 << 2)
struct ovs_key_ipv4_tunnel {
__be64 tun_id;