From: Shan Wei Date: Tue, 13 Nov 2012 01:53:26 +0000 (+0800) Subject: batman-adv: use per_cpu_add helper X-Git-Tag: Ubuntu-5.13.0-19.19~22885^2~391^2~14 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=569174433d3bd96e206a4b5969a4498371c70d16;p=mirror_ubuntu-jammy-kernel.git batman-adv: use per_cpu_add helper this_cpu_add is an atomic operation. and be more faster than per_cpu_ptr operation. Signed-off-by: Shan Wei Reviewed-by: Christoph Lameter Signed-off-by: Sven Eckelmann Signed-off-by: Marek Lindner Signed-off-by: Antonio Quartulli --- diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h index 2f85577086a7..c4fe41f7c2f0 100644 --- a/net/batman-adv/main.h +++ b/net/batman-adv/main.h @@ -276,9 +276,7 @@ static inline bool batadv_has_timed_out(unsigned long timestamp, static inline void batadv_add_counter(struct batadv_priv *bat_priv, size_t idx, size_t count) { - int cpu = get_cpu(); - per_cpu_ptr(bat_priv->bat_counters, cpu)[idx] += count; - put_cpu(); + this_cpu_add(bat_priv->bat_counters[idx], count); } #define batadv_inc_counter(b, i) batadv_add_counter(b, i, 1)