]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[XFS] Undo bit ops cleanup mod due to regression on 32-bit powermac
authorLachlan McIlroy <lachlan@sgi.com>
Tue, 26 Feb 2008 06:00:14 +0000 (17:00 +1100)
committerLachlan McIlroy <lachlan@redback.melbourne.sgi.com>
Tue, 26 Feb 2008 06:05:37 +0000 (17:05 +1100)
platform.

SGI-PV: 974005
SGI-Modid: xfs-linux-melb:xfs-kern:30558a

Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
fs/xfs/xfs_bit.h

index 325a007dec91de7942df66db18afc0be2199a61c..0f9fc9a3c4153f38a552b3d781cebe8b9ba60ab6 100644 (file)
@@ -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 */
 static inline int xfs_lowbit32(__uint32_t v)
 {
-       __uint32_t t = v;
-       return (t) ? find_first_bit((unsigned long *)&t, 32) : -1;
+       unsigned long   t = v;
+       return (v) ? find_first_bit(&t, 32) : -1;
 }
 
 /* Get low bit set out of 64-bit argument, -1 if none set */
 static inline int xfs_lowbit64(__uint64_t v)
 {
-       __uint64_t t = v;
-       return (t) ? find_first_bit((unsigned long *)&t, 64) : -1;
+       unsigned long   t = v;
+       return (v) ? find_first_bit(&t, 64) : -1;
 }
 
 /* Return whether bitmap is empty (1 == empty) */