aboutsummaryrefslogtreecommitdiff
path: root/net/sched/act_gact.c
diff options
context:
space:
mode:
authorGravatar Pedro Tammela <pctammela@mojatatu.com> 2022-12-06 10:55:12 -0300
committerGravatar David S. Miller <davem@davemloft.net> 2022-12-09 09:18:07 +0000
commit871cf386dd16705b1e08942efd02c58801293d01 (patch)
tree5aa639cf8129d1e5f78cefe0f48ee18a7c098985 /net/sched/act_gact.c
parentnet/sched: add retpoline wrapper for tc (diff)
downloadlinux-871cf386dd16705b1e08942efd02c58801293d01.tar.gz
linux-871cf386dd16705b1e08942efd02c58801293d01.tar.bz2
linux-871cf386dd16705b1e08942efd02c58801293d01.zip
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_gact.c')
-rw-r--r--net/sched/act_gact.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/net/sched/act_gact.c b/net/sched/act_gact.c
index 62d682b96b88..54f1b13b2360 100644
--- a/net/sched/act_gact.c
+++ b/net/sched/act_gact.c
@@ -18,6 +18,7 @@
#include <net/pkt_cls.h>
#include <linux/tc_act/tc_gact.h>
#include <net/tc_act/tc_gact.h>
+#include <net/tc_wrapper.h>
static struct tc_action_ops act_gact_ops;
@@ -145,8 +146,9 @@ release_idr:
return err;
}
-static int tcf_gact_act(struct sk_buff *skb, const struct tc_action *a,
- struct tcf_result *res)
+TC_INDIRECT_SCOPE int tcf_gact_act(struct sk_buff *skb,
+ const struct tc_action *a,
+ struct tcf_result *res)
{
struct tcf_gact *gact = to_gact(a);
int action = READ_ONCE(gact->tcf_action);