net: bpfilter: make function bpfilter_mbox_request() static
authorWei Yongjun <weiyongjun1@huawei.com>
Sat, 26 May 2018 09:47:26 +0000 (09:47 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 29 May 2018 13:51:44 +0000 (09:51 -0400)
Fixes the following sparse warnings:

net/ipv4/bpfilter/sockopt.c:13:5: warning:
 symbol 'bpfilter_mbox_request' was not declared. Should it be static?

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/bpfilter/sockopt.c

index 42a96d2..5e04ed2 100644 (file)
@@ -10,8 +10,9 @@ int (*bpfilter_process_sockopt)(struct sock *sk, int optname,
                                unsigned int optlen, bool is_set);
 EXPORT_SYMBOL_GPL(bpfilter_process_sockopt);
 
-int bpfilter_mbox_request(struct sock *sk, int optname, char __user *optval,
-                         unsigned int optlen, bool is_set)
+static int bpfilter_mbox_request(struct sock *sk, int optname,
+                                char __user *optval,
+                                unsigned int optlen, bool is_set)
 {
        if (!bpfilter_process_sockopt) {
                int err = request_module("bpfilter");