diff options
author | Vlad Buslov <vladbu@mellanox.com> | 2019-10-30 15:09:01 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-10-31 02:07:50 +0100 |
commit | 5e1ad95b630e652d3467d1fd1f0b5e5ea2c441e2 (patch) | |
tree | d58db786d3cf69472784345310715ff49b9f23c8 /net/sched/act_csum.c | |
parent | net: sched: extract common action counters update code into function (diff) | |
download | linux-5e1ad95b630e652d3467d1fd1f0b5e5ea2c441e2.tar.xz linux-5e1ad95b630e652d3467d1fd1f0b5e5ea2c441e2.zip |
net: sched: extract bstats update code into function
Extract common code that increments cpu_bstats counter into standalone act
API function. Change hardware offloaded actions that use percpu counter
allocation to use the new function instead of incrementing cpu_bstats
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_csum.c')
-rw-r--r-- | net/sched/act_csum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sched/act_csum.c b/net/sched/act_csum.c index d3cfad88dc3a..69747b1860aa 100644 --- a/net/sched/act_csum.c +++ b/net/sched/act_csum.c @@ -580,7 +580,7 @@ static int tcf_csum_act(struct sk_buff *skb, const struct tc_action *a, params = rcu_dereference_bh(p->params); tcf_lastuse_update(&p->tcf_tm); - bstats_cpu_update(this_cpu_ptr(p->common.cpu_bstats), skb); + tcf_action_update_bstats(&p->common, skb); action = READ_ONCE(p->tcf_action); if (unlikely(action == TC_ACT_SHOT)) |