]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
net: sched: make function qdisc_free_cb() static
authorWei Yongjun <weiyongjun1@huawei.com>
Thu, 27 Sep 2018 14:47:56 +0000 (14:47 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Dec 2021 09:18:10 +0000 (10:18 +0100)
commit 5362700c942b2cc4bab328361545a6d6fe649534 upstream.

Fixes the following sparse warning:

net/sched/sch_generic.c:944:6: warning:
 symbol 'qdisc_free_cb' was not declared. Should it be static?

Fixes: 3a7d0d07a386 ("net: sched: extend Qdisc with rcu")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/sched/sch_generic.c

index 80498c22d001bbd10a3ebb5f800356d726dd132d..b3ff610d35045a8113823f2b86b2bb7fa485eca5 100644 (file)
@@ -958,7 +958,7 @@ void qdisc_free(struct Qdisc *qdisc)
        kfree((char *) qdisc - qdisc->padded);
 }
 
-void qdisc_free_cb(struct rcu_head *head)
+static void qdisc_free_cb(struct rcu_head *head)
 {
        struct Qdisc *q = container_of(head, struct Qdisc, rcu);