aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/linux/lwtunnel.h
diff options
context:
space:
mode:
authorJiri Benc <jbenc@redhat.com>2015-08-14 16:40:40 +0200
committerDavid S. Miller <davem@davemloft.net>2015-08-17 14:07:15 -0700
commita1c234f95cae2d293047bb6c36e7a4840dbac815 (patch)
tree5dfecd1a62471db38504511b8c9d79c150e8330f /include/uapi/linux/lwtunnel.h
parentsmsc911x: Fix crash seen if neither ACPI nor OF is configured or used (diff)
downloadlinux-dev-a1c234f95cae2d293047bb6c36e7a4840dbac815.tar.xz
linux-dev-a1c234f95cae2d293047bb6c36e7a4840dbac815.zip
lwtunnel: rename ip lwtunnel attributes
We already have IFLA_IPTUN_ netlink attributes. The IP_TUN_ attributes look very similar, yet they serve very different purpose. This is confusing for anyone trying to implement a user space tool supporting lwt. As the IP_TUN_ attributes are used only for the lightweight tunnels, prefix them with LWTUNNEL_IP_ instead to make their purpose clear. Also, it's more logical to have them in lwtunnel.h together with the encap enum. Fixes: 3093fbe7ff4b ("route: Per route IP tunnel metadata via lightweight tunnel") Signed-off-by: Jiri Benc <jbenc@redhat.com> Acked-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/uapi/linux/lwtunnel.h')
-rw-r--r--include/uapi/linux/lwtunnel.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/uapi/linux/lwtunnel.h b/include/uapi/linux/lwtunnel.h
index 31377bbea3f8..3bf223bc2367 100644
--- a/include/uapi/linux/lwtunnel.h
+++ b/include/uapi/linux/lwtunnel.h
@@ -12,5 +12,19 @@ enum lwtunnel_encap_types {
#define LWTUNNEL_ENCAP_MAX (__LWTUNNEL_ENCAP_MAX - 1)
+enum lwtunnel_ip_t {
+ LWTUNNEL_IP_UNSPEC,
+ LWTUNNEL_IP_ID,
+ LWTUNNEL_IP_DST,
+ LWTUNNEL_IP_SRC,
+ LWTUNNEL_IP_TTL,
+ LWTUNNEL_IP_TOS,
+ LWTUNNEL_IP_SPORT,
+ LWTUNNEL_IP_DPORT,
+ LWTUNNEL_IP_FLAGS,
+ __LWTUNNEL_IP_MAX,
+};
+
+#define LWTUNNEL_IP_MAX (__LWTUNNEL_IP_MAX - 1)
#endif /* _UAPI_LWTUNNEL_H_ */