diff mbox series

[net-next] netfilter: core: make local function __nf_unregister_net_hook static

Message ID 1515567906-188180-1-git-send-email-weiyongjun1@huawei.com
State Accepted
Delegated to: Pablo Neira
Headers show
Series [net-next] netfilter: core: make local function __nf_unregister_net_hook static | expand

Commit Message

Wei Yongjun Jan. 10, 2018, 7:05 a.m. UTC
Fixes the following sparse warning:

net/netfilter/core.c:380:6: warning:
 symbol '__nf_unregister_net_hook' was not declared. Should it be static?

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
---
 net/netfilter/core.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Pablo Neira Ayuso Jan. 10, 2018, 1:41 p.m. UTC | #1
On Wed, Jan 10, 2018 at 07:05:06AM +0000, Wei Yongjun wrote:
> Fixes the following sparse warning:
> 
> net/netfilter/core.c:380:6: warning:
>  symbol '__nf_unregister_net_hook' was not declared. Should it be static?

Also applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/net/netfilter/core.c b/net/netfilter/core.c
index 997dd38..3f8e2d0 100644
--- a/net/netfilter/core.c
+++ b/net/netfilter/core.c
@@ -377,8 +377,8 @@  static void nf_remove_net_hook(struct nf_hook_entries *old,
 	}
 }
 
-void __nf_unregister_net_hook(struct net *net, int pf,
-			      const struct nf_hook_ops *reg)
+static void __nf_unregister_net_hook(struct net *net, int pf,
+				     const struct nf_hook_ops *reg)
 {
 	struct nf_hook_entries __rcu **pp;
 	struct nf_hook_entries *p;