GFS2: Fix bug in block allocation
The new bitfit algorithm was counting from the wrong end of 64 bit words in the bitfield. This fixes it by using __ffs64 instead of fls64 Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
This commit is contained in:
@@ -212,8 +212,7 @@ static u32 gfs2_bitfit(const u8 *buf, const unsigned int len,
|
|||||||
if (tmp == 0)
|
if (tmp == 0)
|
||||||
return BFITNOENT;
|
return BFITNOENT;
|
||||||
ptr--;
|
ptr--;
|
||||||
bit = fls64(tmp);
|
bit = __ffs64(tmp);
|
||||||
bit--; /* fls64 always adds one to the bit count */
|
|
||||||
bit /= 2; /* two bits per entry in the bitmap */
|
bit /= 2; /* two bits per entry in the bitmap */
|
||||||
return (((const unsigned char *)ptr - buf) * GFS2_NBBY) + bit;
|
return (((const unsigned char *)ptr - buf) * GFS2_NBBY) + bit;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user