From: Jesper Dangaard Brouer Date: Mon, 4 Feb 2013 22:14:12 +0000 (+0100) Subject: percpu_counter.h: comment code for better readability X-Git-Tag: v3.9-rc1~113^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7fa4cf920c36a4736b8fa7c0e262dcf292d0cd36;p=thirdparty%2Fkernel%2Flinux.git percpu_counter.h: comment code for better readability Help people reading the percpu_counter code, to notice the ifdef else statement that seperates CONFIG_SMP. Signed-off-by: Jesper Dangaard Brouer Acked-by: Tejun Heo Signed-off-by: Jiri Kosina --- diff --git a/include/linux/percpu_counter.h b/include/linux/percpu_counter.h index b9df9ed1adc06..d5dd4657c8d64 100644 --- a/include/linux/percpu_counter.h +++ b/include/linux/percpu_counter.h @@ -83,7 +83,7 @@ static inline int percpu_counter_initialized(struct percpu_counter *fbc) return (fbc->counters != NULL); } -#else +#else /* !CONFIG_SMP */ struct percpu_counter { s64 count;