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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user