diff options
author | Li RongQing <roy.qing.li@gmail.com> | 2014-01-15 04:03:30 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-15 18:53:18 -0500 |
commit | d76ed22b225c02228c643ae336f76e086fdc32f0 (patch) | |
tree | e420a54624555e185458c2d8a443820ef9a276e5 /net/ipv6/ip6_gre.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_gre.c')
-rw-r--r-- | net/ipv6/ip6_gre.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/ipv6/ip6_gre.c b/net/ipv6/ip6_gre.c index e7a440dd5c0d..f3ffb43f59c0 100644 --- a/net/ipv6/ip6_gre.c +++ b/net/ipv6/ip6_gre.c | |||
@@ -61,8 +61,6 @@ static bool log_ecn_error = true; | |||
61 | module_param(log_ecn_error, bool, 0644); | 61 | module_param(log_ecn_error, bool, 0644); |
62 | MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN"); | 62 | MODULE_PARM_DESC(log_ecn_error, "Log packets received with corrupted ECN"); |
63 | 63 | ||
64 | #define IPV6_TCLASS_SHIFT 20 | ||
65 | |||
66 | #define HASH_SIZE_SHIFT 5 | 64 | #define HASH_SIZE_SHIFT 5 |
67 | #define HASH_SIZE (1 << HASH_SIZE_SHIFT) | 65 | #define HASH_SIZE (1 << HASH_SIZE_SHIFT) |
68 | 66 | ||