[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <5093EE7E.6040400@gmail.com>
Date: Sat, 03 Nov 2012 00:02:06 +0800
From: Shan Wei <shanwei88@...il.com>
To: lindner_marek@...oo.de, siwu@....tu-chemnitz.de,
ordex@...istici.org, b.a.t.m.a.n@...ts.open-mesh.org,
David Miller <davem@...emloft.net>,
NetDev <netdev@...r.kernel.org>,
Kernel-Maillist <linux-kernel@...r.kernel.org>,
Shan Wei <shanwei88@...il.com>,
Christoph Lameter <cl@...ux.com>
Subject: [PATCH v2 9/9] net: batman-adv: use per_cpu_add helper
From: Shan Wei <davidshan@...cent.com>
As Christoph Lameter said:
> In addition, following usage of per_cpu_ptr can be replaced by this_cpu_read.
>
> cpu=get_cpu()
> ....
> *per_cpu_ptr(p,cpu)
> ....
> ....
> put_cpu()
Right.
Signed-off-by: Shan Wei <davidshan@...cent.com>
---
net/batman-adv/main.h | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/net/batman-adv/main.h b/net/batman-adv/main.h
index 897ba6a..3aef5b2 100644
--- a/net/batman-adv/main.h
+++ b/net/batman-adv/main.h
@@ -263,9 +263,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)
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists