[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <201002041819.22985.knikanth@suse.de>
Date: Thu, 4 Feb 2010 18:19:22 +0530
From: Nikanth Karthikesan <knikanth@...e.de>
To: Tejun Heo <tj@...nel.org>
Cc: Ingo Molnar <mingo@...hat.com>, linux-kernel@...r.kernel.org,
Suresh Jayaraman <sjayaraman@...e.de>
Subject: [PATCH] define percpu_counter_batch when CONFIG_SMP is not set
percpu_counter_batch is not defined if CONFIG_SMP is not set.
Signed-off-by: Nikanth Karthikesan <knikanth@...e.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;
--
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