]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net: sched: move rtm_tca_policy declaration to include file
authorEric Dumazet <edumazet@google.com>
Tue, 6 Jun 2023 11:42:33 +0000 (11:42 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 14 Jun 2023 08:57:13 +0000 (10:57 +0200)
[ Upstream commit 886bc7d6ed3357975c5f1d3c784da96000d4bbb4 ]

rtm_tca_policy is used from net/sched/sch_api.c and net/sched/cls_api.c,
thus should be declared in an include file.

This fixes the following sparse warning:
net/sched/sch_api.c:1434:25: warning: symbol 'rtm_tca_policy' was not declared. Should it be static?

Fixes: e331473fee3d ("net/sched: cls_api: add missing validation of netlink attributes")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
include/net/pkt_sched.h
net/sched/cls_api.c

index 1a6ac924266dbd97f1e1be6acdff5500cbb01c6a..e09ea6917c0617bd91b55483d7c44dc30735e536 100644 (file)
@@ -124,6 +124,8 @@ static inline void qdisc_run(struct Qdisc *q)
        }
 }
 
+extern const struct nla_policy rtm_tca_policy[TCA_MAX + 1];
+
 /* Calculate maximal size of packet seen by hard_start_xmit
    routine of this device.
  */
index 435911dc9f16ab4054393925f1348de7cdf40a45..fdd4af137c9fecdff43faa447dd2acfb715511d4 100644 (file)
@@ -31,8 +31,6 @@
 #include <net/pkt_sched.h>
 #include <net/pkt_cls.h>
 
-extern const struct nla_policy rtm_tca_policy[TCA_MAX + 1];
-
 /* The list of all installed classifier types */
 static LIST_HEAD(tcf_proto_base);