You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
lib/bitmap.c: update bitmap_onto to unsigned
Change the nbits parameter of bitmap_onto to unsigned int for consistency with other bitmap_* functions. [akpm@linux-foundation.org: coding-style fixes] Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
f5ac1f5520
commit
eb56988378
+2
-2
@@ -1006,9 +1006,9 @@ EXPORT_SYMBOL(bitmap_bitremap);
|
||||
* All bits in @dst not set by the above rule are cleared.
|
||||
*/
|
||||
void bitmap_onto(unsigned long *dst, const unsigned long *orig,
|
||||
const unsigned long *relmap, int bits)
|
||||
const unsigned long *relmap, unsigned int bits)
|
||||
{
|
||||
int n, m; /* same meaning as in above comment */
|
||||
unsigned int n, m; /* same meaning as in above comment */
|
||||
|
||||
if (dst == orig) /* following doesn't handle inplace mappings */
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user