diff options
author | Lachlan McIlroy <lachlan@sgi.com> | 2008-02-26 01:00:14 -0500 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-02-26 01:05:37 -0500 |
commit | db69c915e67705daac25cad06d816c09be634de0 (patch) | |
tree | 8befd8c9eb1763345a031dfcd64a7559e0c388e0 /fs/xfs/xfs_bit.h | |
parent | 91e229bbad6524aabaac8717b2f559283670c37a (diff) |
[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>
Diffstat (limited to 'fs/xfs/xfs_bit.h')
-rw-r--r-- | fs/xfs/xfs_bit.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/xfs_bit.h b/fs/xfs/xfs_bit.h index 325a007dec91..0f9fc9a3c415 100644 --- a/fs/xfs/xfs_bit.h +++ b/fs/xfs/xfs_bit.h | |||
@@ -61,15 +61,15 @@ static inline int xfs_highbit64(__uint64_t v) | |||
61 | /* Get low bit set out of 32-bit argument, -1 if none set */ | 61 | /* Get low bit set out of 32-bit argument, -1 if none set */ |
62 | static inline int xfs_lowbit32(__uint32_t v) | 62 | static inline int xfs_lowbit32(__uint32_t v) |
63 | { | 63 | { |
64 | __uint32_t t = v; | 64 | unsigned long t = v; |
65 | return (t) ? find_first_bit((unsigned long *)&t, 32) : -1; | 65 | return (v) ? find_first_bit(&t, 32) : -1; |
66 | } | 66 | } |
67 | 67 | ||
68 | /* Get low bit set out of 64-bit argument, -1 if none set */ | 68 | /* Get low bit set out of 64-bit argument, -1 if none set */ |
69 | static inline int xfs_lowbit64(__uint64_t v) | 69 | static inline int xfs_lowbit64(__uint64_t v) |
70 | { | 70 | { |
71 | __uint64_t t = v; | 71 | unsigned long t = v; |
72 | return (t) ? find_first_bit((unsigned long *)&t, 64) : -1; | 72 | return (v) ? find_first_bit(&t, 64) : -1; |
73 | } | 73 | } |
74 | 74 | ||
75 | /* Return whether bitmap is empty (1 == empty) */ | 75 | /* Return whether bitmap is empty (1 == empty) */ |