Commit 41e7b166 authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by Linus Torvalds

linux/bitmap.h: relax comment on compile-time constant nbits

It's not clear what's so horrible about emitting a function call to handle
a run-time sized bitmap.  Moreover, gcc also emits a function call for a
compile-time-constant-but-huge nbits, so the comment isn't even accurate.

Link: http://lkml.kernel.org/r/20180818131623.8755-6-linux@rasmusvillemoes.dkSigned-off-by: default avatarRasmus Villemoes <linux@rasmusvillemoes.dk>
Reviewed-by: default avatarAndy Shevchenko <andy.shevchenko@gmail.com>
Cc: Yury Norov <ynorov@caviumnetworks.com>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent d9873969
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
* The available bitmap operations and their rough meaning in the * The available bitmap operations and their rough meaning in the
* case that the bitmap is a single unsigned long are thus: * case that the bitmap is a single unsigned long are thus:
* *
* Note that nbits should be always a compile time evaluable constant. * The generated code is more efficient when nbits is known at
* Otherwise many inlines will generate horrible code. * compile-time and at most BITS_PER_LONG.
* *
* :: * ::
* *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment