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

2021-01-21 Thread Yury Norov
On Thu, Jan 21, 2021 at 2:18 AM Andy Shevchenko wrote: > > 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/ > > ... > > > --- a/include/linux/bitops.h > > +++ b/include/linux/bitops.

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

2021-01-21 Thread Andy Shevchenko
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/ ... > --- a/include/linux/bitops.h > +++ b/include/linux/bitops.h > @@ -7,6 +7,17 @@ > > #include > > +#define BITMAP_FIRST_WORD_MASK

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

2021-01-20 Thread Yury Norov
In the following patches of the series they are used by find_bit subsystem. Signed-off-by: Yury Norov --- include/linux/bitmap.h | 11 --- include/linux/bitops.h | 11 +++ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/include/linux/bitmap.h b/include/linux/bitm