mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-10 07:10:27 +00:00
[XFS] Undo bit ops cleanup mod due to regression on 32-bit powermac
platform. SGI-PV: 974005 SGI-Modid: xfs-linux-melb:xfs-kern:30558a Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
This commit is contained in:
parent
91e229bbad
commit
db69c915e6
@ -61,15 +61,15 @@ static inline int xfs_highbit64(__uint64_t v)
|
|||||||
/* Get low bit set out of 32-bit argument, -1 if none set */
|
/* Get low bit set out of 32-bit argument, -1 if none set */
|
||||||
static inline int xfs_lowbit32(__uint32_t v)
|
static inline int xfs_lowbit32(__uint32_t v)
|
||||||
{
|
{
|
||||||
__uint32_t t = v;
|
unsigned long t = v;
|
||||||
return (t) ? find_first_bit((unsigned long *)&t, 32) : -1;
|
return (v) ? find_first_bit(&t, 32) : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Get low bit set out of 64-bit argument, -1 if none set */
|
/* Get low bit set out of 64-bit argument, -1 if none set */
|
||||||
static inline int xfs_lowbit64(__uint64_t v)
|
static inline int xfs_lowbit64(__uint64_t v)
|
||||||
{
|
{
|
||||||
__uint64_t t = v;
|
unsigned long t = v;
|
||||||
return (t) ? find_first_bit((unsigned long *)&t, 64) : -1;
|
return (v) ? find_first_bit(&t, 64) : -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Return whether bitmap is empty (1 == empty) */
|
/* Return whether bitmap is empty (1 == empty) */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user