diff options
author | Pedro Tammela <pctammela@mojatatu.com> | 2022-12-06 16:55:12 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-12-09 12:18:07 +0300 |
commit | 871cf386dd16705b1e08942efd02c58801293d01 (patch) | |
tree | 5aa639cf8129d1e5f78cefe0f48ee18a7c098985 /net/sched/act_police.c | |
parent | 7f0e810220e2d985338ecdd907c1598404db251d (diff) | |
download | linux-871cf386dd16705b1e08942efd02c58801293d01.tar.xz |
net/sched: avoid indirect act functions on retpoline kernels
Expose the necessary tc act functions and wire up act_api to use
direct calls in retpoline kernels.
Signed-off-by: Pedro Tammela <pctammela@mojatatu.com>
Reviewed-by: Jamal Hadi Salim <jhs@mojatatu.com>
Reviewed-by: Victor Nogueira <victor@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/act_police.c')
-rw-r--r-- | net/sched/act_police.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/sched/act_police.c b/net/sched/act_police.c index 0adb26e366a7..227cba58ce9f 100644 --- a/net/sched/act_police.c +++ b/net/sched/act_police.c @@ -19,6 +19,7 @@ #include <net/netlink.h> #include <net/pkt_cls.h> #include <net/tc_act/tc_police.h> +#include <net/tc_wrapper.h> /* Each policer is serialized by its individual spinlock */ @@ -242,8 +243,9 @@ static bool tcf_police_mtu_check(struct sk_buff *skb, u32 limit) return len <= limit; } -static int tcf_police_act(struct sk_buff *skb, const struct tc_action *a, - struct tcf_result *res) +TC_INDIRECT_SCOPE int tcf_police_act(struct sk_buff *skb, + const struct tc_action *a, + struct tcf_result *res) { struct tcf_police *police = to_police(a); s64 now, toks, ppstoks = 0, ptoks = 0; |