aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/ip_tunnels.h
diff options
context:
space:
mode:
authorJiri Benc <jbenc@redhat.com>2015-08-20 07:56:22 -0400
committerDavid S. Miller <davem@davemloft.net>2015-08-20 18:42:36 -0400
commit376534a3d17002d608985bd67c3b0880eacadd14 (patch)
tree7e0466d4b829c9a800f4eb65384a363c2473fc53 /include/net/ip_tunnels.h
parent6b8847c5a2bafbbf92f4b779f87165093457ea68 (diff)
ip_tunnels: use offsetofend
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/net/ip_tunnels.h')
-rw-r--r--include/net/ip_tunnels.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/net/ip_tunnels.h b/include/net/ip_tunnels.h
index ca173f22f07f..cc3b39e9010b 100644
--- a/include/net/ip_tunnels.h
+++ b/include/net/ip_tunnels.h
@@ -23,9 +23,7 @@
23#define IPTUNNEL_ERR_TIMEO (30*HZ) 23#define IPTUNNEL_ERR_TIMEO (30*HZ)
24 24
25/* Used to memset ip_tunnel padding. */ 25/* Used to memset ip_tunnel padding. */
26#define IP_TUNNEL_KEY_SIZE \ 26#define IP_TUNNEL_KEY_SIZE offsetofend(struct ip_tunnel_key, tp_dst)
27 (offsetof(struct ip_tunnel_key, tp_dst) + \
28 FIELD_SIZEOF(struct ip_tunnel_key, tp_dst))
29 27
30struct ip_tunnel_key { 28struct ip_tunnel_key {
31 __be64 tun_id; 29 __be64 tun_id;