Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fed06ee8 authored by Or Gerlitz's avatar Or Gerlitz Committed by David S. Miller
Browse files

net/mlx5e: Disable preemption when doing TC statistics upcall



When called by HW offloading drivers, the TC action (e.g
net/sched/act_mirred.c) code uses this_cpu logic, e.g

 _bstats_cpu_update(this_cpu_ptr(a->cpu_bstats), bytes, packets)

per the kernel documention, preemption should be disabled, add that.

Before the fix, when running with CONFIG_PREEMPT set, we get a

BUG: using smp_processor_id() in preemptible [00000000] code: tc/3793

asserion from the TC action (mirred) stats_update callback.

Fixes: aad7e08d ('net/mlx5e: Hardware offloaded flower filter statistics support')
Signed-off-by: default avatarOr Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0c8ef291
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -1087,10 +1087,14 @@ int mlx5e_stats_flower(struct mlx5e_priv *priv,


	mlx5_fc_query_cached(counter, &bytes, &packets, &lastuse);
	mlx5_fc_query_cached(counter, &bytes, &packets, &lastuse);


	preempt_disable();

	tcf_exts_to_list(f->exts, &actions);
	tcf_exts_to_list(f->exts, &actions);
	list_for_each_entry(a, &actions, list)
	list_for_each_entry(a, &actions, list)
		tcf_action_stats_update(a, bytes, packets, lastuse);
		tcf_action_stats_update(a, bytes, packets, lastuse);


	preempt_enable();

	return 0;
	return 0;
}
}