提交 7ae665f1 编写于 作者: A Arnd Bergmann 提交者: David S. Miller

sctp: fix unused lable warning

The proc file cleanup left a label possibly unused:

net/sctp/protocol.c: In function 'sctp_defaults_init':
net/sctp/protocol.c:1304:1: error: label 'err_init_proc' defined but not used [-Werror=unused-label]

This adds an #ifdef around it to match the respective 'goto'.

Fixes: d47d08c8 ("sctp: use proc_remove_subtree()")
Signed-off-by: NArnd Bergmann <arnd@arndb.de>
Acked-by: NNeil Horman <nhorman@tuxdriver.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 75498aa1
......@@ -1258,8 +1258,10 @@ static int __net_init sctp_defaults_init(struct net *net)
return 0;
#ifdef CONFIG_PROC_FS
err_init_proc:
cleanup_sctp_mibs(net);
#endif
err_init_mibs:
sctp_sysctl_net_unregister(net);
err_sysctl_register:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册