summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Dumazet <edumazet@google.com>2023-06-06 11:42:33 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2023-06-14 10:35:25 +0200
commitcf83a2b6d11d24113dc48a95ec728eda7ce669ea (patch)
treeb0e9c3711bd32f5fd1472ac4aaeab3966bba9890
parentb435b86d91933aafc2648cb8fb5bdf455718a51f (diff)
downloadlinux-stable-cf83a2b6d11d24113dc48a95ec728eda7ce669ea.tar.gz
linux-stable-cf83a2b6d11d24113dc48a95ec728eda7ce669ea.tar.bz2
linux-stable-cf83a2b6d11d24113dc48a95ec728eda7ce669ea.zip
net: sched: move rtm_tca_policy declaration to include file
[ 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>
-rw-r--r--include/net/pkt_sched.h2
-rw-r--r--net/sched/cls_api.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/net/pkt_sched.h b/include/net/pkt_sched.h
index b3869f97d37d..85e059d3bc23 100644
--- a/include/net/pkt_sched.h
+++ b/include/net/pkt_sched.h
@@ -126,6 +126,8 @@ static inline __be16 tc_skb_protocol(const struct sk_buff *skb)
return skb->protocol;
}
+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.
*/
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c
index 32819d1e2075..8808133e78a3 100644
--- a/net/sched/cls_api.c
+++ b/net/sched/cls_api.c
@@ -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);