The patch titled Subject: linux/bitmap.h: fix type of nbits in bitmap_shift_right() has been added to the -mm tree. Its filename is linux-bitmaph-fix-type-of-nbits-in-bitmap_shift_right.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/linux-bitmaph-fix-type-of-nbits-in-bitmap_shift_right.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/linux-bitmaph-fix-type-of-nbits-in-bitmap_shift_right.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Subject: linux/bitmap.h: fix type of nbits in bitmap_shift_right() Most other bitmap API, including the OOL version __bitmap_shift_right, take unsigned nbits. This was accidentally left out from 2fbad29917c98. Link: http://lkml.kernel.org/r/20180818131623.8755-5-linux@xxxxxxxxxxxxxxxxxx Fixes: 2fbad29917c98 ("lib: bitmap: change bitmap_shift_right to take unsigned parameters") Signed-off-by: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Reported-by: Yury Norov <ynorov@xxxxxxxxxxxxxxxxxx> Reviewed-by: Andy Shevchenko <andy.shevchenko@xxxxxxxxx> Cc: Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx> Cc: Sudeep Holla <sudeep.holla@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/bitmap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/bitmap.h~linux-bitmaph-fix-type-of-nbits-in-bitmap_shift_right +++ a/include/linux/bitmap.h @@ -391,7 +391,7 @@ static __always_inline void bitmap_clear } static inline void bitmap_shift_right(unsigned long *dst, const unsigned long *src, - unsigned int shift, int nbits) + unsigned int shift, unsigned int nbits) { if (small_const_nbits(nbits)) *dst = (*src & BITMAP_LAST_WORD_MASK(nbits)) >> shift; _ Patches currently in -mm which might be from linux@xxxxxxxxxxxxxxxxxx are lib-bitmapc-remove-wrong-documentation.patch linux-bitmaph-handle-constant-zero-size-bitmaps-correctly.patch linux-bitmaph-remove-redundant-uses-of-small_const_nbits.patch linux-bitmaph-fix-type-of-nbits-in-bitmap_shift_right.patch linux-bitmaph-relax-comment-on-compile-time-constant-nbits.patch lib-bitmapc-fix-remaining-space-computation-in-bitmap_print_to_pagebuf.patch lib-bitmapc-simplify-bitmap_print_to_pagebuf.patch