public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] define percpu_counter_batch when CONFIG_SMP is not set
@ 2010-02-04 12:49 Nikanth Karthikesan
  2010-02-04 12:58 ` Nikanth Karthikesan
  0 siblings, 1 reply; 3+ messages in thread
From: Nikanth Karthikesan @ 2010-02-04 12:49 UTC (permalink / raw)
  To: Tejun Heo; +Cc: Ingo Molnar, linux-kernel, Suresh Jayaraman

percpu_counter_batch is not defined if CONFIG_SMP is not set.

Signed-off-by: Nikanth Karthikesan <knikanth@suse.de>

---

diff --git a/include/linux/percpu_counter.h b/include/linux/percpu_counter.h
index a7684a5..ff57cef 100644
--- a/include/linux/percpu_counter.h
+++ b/include/linux/percpu_counter.h
@@ -83,6 +83,8 @@ struct percpu_counter {
 	s64 count;
 };
 
+#define percpu_counter_batch 2
+
 static inline int percpu_counter_init(struct percpu_counter *fbc, s64 amount)
 {
 	fbc->count = amount;

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-02-04 15:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-04 12:49 [PATCH] define percpu_counter_batch when CONFIG_SMP is not set Nikanth Karthikesan
2010-02-04 12:58 ` Nikanth Karthikesan
2010-02-04 15:03   ` Peter Zijlstra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox