diff options
author | Or Gerlitz <ogerlitz@mellanox.com> | 2018-07-17 19:27:16 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-07-19 23:26:01 -0700 |
commit | 07a557f47d7e09b2c60ad4d51b1ac8b035b75f73 (patch) | |
tree | 85ad1002a487332f6059eb8f49ee5d49b456f709 /include | |
parent | 3bc950c34b28b60f879ea0ef8d97e65a8c8f1d50 (diff) | |
download | linux-07a557f47d7e09b2c60ad4d51b1ac8b035b75f73.tar.bz2 |
net/sched: tunnel_key: Allow to set tos and ttl for tc based ip tunnels
Allow user-space to provide tos and ttl to be set for the tunnel headers.
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Reviewed-by: Roi Dayan <roid@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/linux/tc_act/tc_tunnel_key.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/uapi/linux/tc_act/tc_tunnel_key.h b/include/uapi/linux/tc_act/tc_tunnel_key.h index e284fec8c467..be384d63e1b5 100644 --- a/include/uapi/linux/tc_act/tc_tunnel_key.h +++ b/include/uapi/linux/tc_act/tc_tunnel_key.h @@ -39,6 +39,8 @@ enum { TCA_TUNNEL_KEY_ENC_OPTS, /* Nested TCA_TUNNEL_KEY_ENC_OPTS_ * attributes */ + TCA_TUNNEL_KEY_ENC_TOS, /* u8 */ + TCA_TUNNEL_KEY_ENC_TTL, /* u8 */ __TCA_TUNNEL_KEY_MAX, }; |