aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched
diff options
context:
space:
mode:
authorWei Yongjun <weiyongjun1@huawei.com>2017-02-14 14:19:32 +0000
committerDavid S. Miller <davem@davemloft.net>2017-02-14 15:02:17 -0500
commit6f2e3f7d9785dacb358b48b44950182b5c13e4bc (patch)
treedbed4d1cfd5590a7d615f129b28caac6632a0de5 /net/sched
parentnet: irda: au1k_ir: drop useless include (diff)
downloadlinux-dev-6f2e3f7d9785dacb358b48b44950182b5c13e4bc.tar.xz
linux-dev-6f2e3f7d9785dacb358b48b44950182b5c13e4bc.zip
net_sched: nla_memdup_cookie() can be static
Fixes the following sparse warning: net/sched/act_api.c:532:5: warning: symbol 'nla_memdup_cookie' was not declared. Should it be static? Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r--net/sched/act_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/act_api.c b/net/sched/act_api.c
index 3c5e29ba6594..f219ff325ed4 100644
--- a/net/sched/act_api.c
+++ b/net/sched/act_api.c
@@ -529,7 +529,7 @@ errout:
return err;
}
-int nla_memdup_cookie(struct tc_action *a, struct nlattr **tb)
+static int nla_memdup_cookie(struct tc_action *a, struct nlattr **tb)
{
a->act_cookie = kzalloc(sizeof(*a->act_cookie), GFP_KERNEL);
if (!a->act_cookie)