2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 14:25:26 +00:00

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>
This commit is contained in:
Jesse Gross
2012-11-06 12:45:19 -08:00
parent 5c7f58830a
commit 49a4902d76
5 changed files with 18 additions and 18 deletions

View File

@@ -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;