diff options
author | Li RongQing <roy.qing.li@gmail.com> | 2014-01-15 17:03:30 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-15 15:53:18 -0800 |
commit | d76ed22b225c02228c643ae336f76e086fdc32f0 (patch) | |
tree | e420a54624555e185458c2d8a443820ef9a276e5 /net/ipv6/ip6_tunnel.c | |
parent | e96a41ebde3b66dbb59d3ffa0a38dff6e5ca25a9 (diff) |
ipv6: move IPV6_TCLASS_SHIFT into ipv6.h and define a helper
Two places defined IPV6_TCLASS_SHIFT, so we should move it into ipv6.h,
and use this macro as possible. And define ip6_tclass helper to return
tclass
Signed-off-by: Li RongQing <roy.qing.li@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ip6_tunnel.c')
-rw-r--r-- | net/ipv6/ip6_tunnel.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c index 1e5e2404f1af..5db8d310f9c0 100644 --- a/net/ipv6/ip6_tunnel.c +++ b/net/ipv6/ip6_tunnel.c @@ -69,8 +69,6 @@ MODULE_ALIAS_NETDEV("ip6tnl0"); #define IP6_TNL_TRACE(x...) do {;} while(0) #endif -#define IPV6_TCLASS_SHIFT 20 - #define HASH_SIZE_SHIFT 5 #define HASH_SIZE (1 << HASH_SIZE_SHIFT) |