diff options
Diffstat (limited to 'net/ipv4/tunnel4.c')
-rw-r--r-- | net/ipv4/tunnel4.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv4/tunnel4.c b/net/ipv4/tunnel4.c index 01775983b997..0d0171830620 100644 --- a/net/ipv4/tunnel4.c +++ b/net/ipv4/tunnel4.c | |||
@@ -164,12 +164,12 @@ static const struct net_protocol tunnel64_protocol = { | |||
164 | static int __init tunnel4_init(void) | 164 | static int __init tunnel4_init(void) |
165 | { | 165 | { |
166 | if (inet_add_protocol(&tunnel4_protocol, IPPROTO_IPIP)) { | 166 | if (inet_add_protocol(&tunnel4_protocol, IPPROTO_IPIP)) { |
167 | printk(KERN_ERR "tunnel4 init: can't add protocol\n"); | 167 | pr_err("%s: can't add protocol\n", __func__); |
168 | return -EAGAIN; | 168 | return -EAGAIN; |
169 | } | 169 | } |
170 | #if IS_ENABLED(CONFIG_IPV6) | 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 | pr_err("tunnel64 init: can't add protocol\n"); |
173 | inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP); | 173 | inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP); |
174 | return -EAGAIN; | 174 | return -EAGAIN; |
175 | } | 175 | } |
@@ -181,10 +181,10 @@ static void __exit tunnel4_fini(void) | |||
181 | { | 181 | { |
182 | #if IS_ENABLED(CONFIG_IPV6) | 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 | pr_err("tunnel64 close: can't remove protocol\n"); |
185 | #endif | 185 | #endif |
186 | if (inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP)) | 186 | if (inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP)) |
187 | printk(KERN_ERR "tunnel4 close: can't remove protocol\n"); | 187 | pr_err("tunnel4 close: can't remove protocol\n"); |
188 | } | 188 | } |
189 | 189 | ||
190 | module_init(tunnel4_init); | 190 | module_init(tunnel4_init); |