Thread (16 messages) 16 messages, 4 authors, 2021-01-29

Re: [PATCH 2/6] bitmap: move some macros from linux/bitmap.h to linux/bitops.h

From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Date: 2021-01-21 10:23:54
Also in: linux-m68k, linux-sh, lkml

On Wed, Jan 20, 2021 at 04:06:26PM -0800, Yury Norov wrote:
In the following patches of the series they are used by
find_bit subsystem.
s/subsystem/API/

...
quoted hunk ↗ jump to hunk
--- a/include/linux/bitops.h
+++ b/include/linux/bitops.h
@@ -7,6 +7,17 @@
 
 #include <uapi/linux/kernel.h>
 
+#define BITMAP_FIRST_WORD_MASK(start) (~0UL << ((start) & (BITS_PER_LONG - 1)))
+#define BITMAP_LAST_WORD_MASK(nbits) (~0UL >> (-(nbits) & (BITS_PER_LONG - 1)))
Hmm... Naming here is not in the bitops namespace.
I would expect BITS rather than BITMAP for these two.

So, we have at least the following options:
 - split to a separate header, like bitmap_macros.h
 - s/BITMAP/BITS/ and either define BITMAP_* as respective BITS_* or rename it
   everywhere in bitmap.*
 - your variant
 - ...???...


-- 
With Best Regards,
Andy Shevchenko

Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help