diff options
author | Vlad Buslov <vladbu@mellanox.com> | 2019-10-30 17:09:02 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-10-31 04:07:50 +0300 |
commit | 26b537a88ca5b7399c7ab0656e06dbd9da9513c1 (patch) | |
tree | ddbd17541c0dc871b712925bd5e5922b13f1ca75 /net/sched/act_gact.c | |
parent | 5e1ad95b630e652d3467d1fd1f0b5e5ea2c441e2 (diff) | |
download | linux-26b537a88ca5b7399c7ab0656e06dbd9da9513c1.tar.xz |
net: sched: extract qstats update code into functions
Extract common code that increments cpu_qstats counters into standalone act
API functions. Change hardware offloaded actions that use percpu counter
allocation to use the new functions instead of accessing cpu_qstats
directly.
This commit doesn't change functionality.
Signed-off-by: Vlad Buslov <vladbu@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/act_gact.c b/net/sched/act_gact.c index a7e3d5621608..221f0c2e26b1 100644 --- a/net/sched/act_gact.c +++ b/net/sched/act_gact.c @@ -163,7 +163,7 @@ static int tcf_gact_act(struct sk_buff *skb, const struct tc_action *a, #endif tcf_action_update_bstats(&gact->common, skb); if (action == TC_ACT_SHOT) - qstats_drop_inc(this_cpu_ptr(gact->common.cpu_qstats)); + tcf_action_inc_drop_qstats(&gact->common); tcf_lastuse_update(&gact->tcf_tm); |