Prev: [tip:perf/core] ftrace/alternatives: Introducing *_text_reserved functions
Next: define percpu_counter_batch when CONFIG_SMP is not set
From: Nikanth Karthikesan on 4 Feb 2010 07:50 percpu_counter_batch is not defined if CONFIG_SMP is not set. Signed-off-by: Nikanth Karthikesan <knikanth(a)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; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |