diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2011-12-10 04:48:31 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-12-11 18:25:16 -0500 |
commit | dfd56b8b38fff3586f36232db58e1e9f7885a605 (patch) | |
tree | 64c7142ebf4625939f68bd3603f1d37bacb20a73 /net/ipv4/tunnel4.c | |
parent | 1ded132d4c3442aa3a619c94c245d7b5e0eb9731 (diff) |
net: use IS_ENABLED(CONFIG_IPV6)
Instead of testing defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tunnel4.c')
-rw-r--r-- | net/ipv4/tunnel4.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/ipv4/tunnel4.c b/net/ipv4/tunnel4.c index ac3b3ee4b07c..01775983b997 100644 --- a/net/ipv4/tunnel4.c +++ b/net/ipv4/tunnel4.c | |||
@@ -105,7 +105,7 @@ drop: | |||
105 | return 0; | 105 | return 0; |
106 | } | 106 | } |
107 | 107 | ||
108 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) | 108 | #if IS_ENABLED(CONFIG_IPV6) |
109 | static int tunnel64_rcv(struct sk_buff *skb) | 109 | static int tunnel64_rcv(struct sk_buff *skb) |
110 | { | 110 | { |
111 | struct xfrm_tunnel *handler; | 111 | struct xfrm_tunnel *handler; |
@@ -134,7 +134,7 @@ static void tunnel4_err(struct sk_buff *skb, u32 info) | |||
134 | break; | 134 | break; |
135 | } | 135 | } |
136 | 136 | ||
137 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) | 137 | #if IS_ENABLED(CONFIG_IPV6) |
138 | static void tunnel64_err(struct sk_buff *skb, u32 info) | 138 | static void tunnel64_err(struct sk_buff *skb, u32 info) |
139 | { | 139 | { |
140 | struct xfrm_tunnel *handler; | 140 | struct xfrm_tunnel *handler; |
@@ -152,7 +152,7 @@ static const struct net_protocol tunnel4_protocol = { | |||
152 | .netns_ok = 1, | 152 | .netns_ok = 1, |
153 | }; | 153 | }; |
154 | 154 | ||
155 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) | 155 | #if IS_ENABLED(CONFIG_IPV6) |
156 | static const struct net_protocol tunnel64_protocol = { | 156 | static const struct net_protocol tunnel64_protocol = { |
157 | .handler = tunnel64_rcv, | 157 | .handler = tunnel64_rcv, |
158 | .err_handler = tunnel64_err, | 158 | .err_handler = tunnel64_err, |
@@ -167,7 +167,7 @@ static int __init tunnel4_init(void) | |||
167 | printk(KERN_ERR "tunnel4 init: can't add protocol\n"); | 167 | printk(KERN_ERR "tunnel4 init: can't add protocol\n"); |
168 | return -EAGAIN; | 168 | return -EAGAIN; |
169 | } | 169 | } |
170 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) | 170 | #if IS_ENABLED(CONFIG_IPV6) |
171 | if (inet_add_protocol(&tunnel64_protocol, IPPROTO_IPV6)) { | 171 | if (inet_add_protocol(&tunnel64_protocol, IPPROTO_IPV6)) { |
172 | printk(KERN_ERR "tunnel64 init: can't add protocol\n"); | 172 | printk(KERN_ERR "tunnel64 init: can't add protocol\n"); |
173 | inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP); | 173 | inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP); |
@@ -179,7 +179,7 @@ static int __init tunnel4_init(void) | |||
179 | 179 | ||
180 | static void __exit tunnel4_fini(void) | 180 | static void __exit tunnel4_fini(void) |
181 | { | 181 | { |
182 | #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE) | 182 | #if IS_ENABLED(CONFIG_IPV6) |
183 | if (inet_del_protocol(&tunnel64_protocol, IPPROTO_IPV6)) | 183 | if (inet_del_protocol(&tunnel64_protocol, IPPROTO_IPV6)) |
184 | printk(KERN_ERR "tunnel64 close: can't remove protocol\n"); | 184 | printk(KERN_ERR "tunnel64 close: can't remove protocol\n"); |
185 | #endif | 185 | #endif |