vti4: removed duplicate log message.
Removed info log-message if ipip tunnel registration fails during
module-initialization: it adds nothing to the error message that is
written on all failures.
Fixes: dd9ee34440
("vti4: Fix a ipip packet processing bug in 'IPCOMP' virtual tunnel")
Signed-off-by: Jeremy Sowden <jeremy@azazel.net>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
This commit is contained in:
parent
5483844c3f
commit
01ce31c57b
|
@ -646,10 +646,8 @@ static int __init vti_init(void)
|
||||||
|
|
||||||
msg = "ipip tunnel";
|
msg = "ipip tunnel";
|
||||||
err = xfrm4_tunnel_register(&ipip_handler, AF_INET);
|
err = xfrm4_tunnel_register(&ipip_handler, AF_INET);
|
||||||
if (err < 0) {
|
if (err < 0)
|
||||||
pr_info("%s: cant't register tunnel\n",__func__);
|
|
||||||
goto xfrm_tunnel_failed;
|
goto xfrm_tunnel_failed;
|
||||||
}
|
|
||||||
|
|
||||||
msg = "netlink interface";
|
msg = "netlink interface";
|
||||||
err = rtnl_link_register(&vti_link_ops);
|
err = rtnl_link_register(&vti_link_ops);
|
||||||
|
|
Loading…
Reference in New Issue