From: Akinobu Mita Date: Wed, 16 Dec 2009 00:46:55 +0000 (-0800) Subject: hpfs: use hweight32 X-Git-Tag: v2.6.33-rc1~71^2~100 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c2923c3a3ed71563891585bf58481bcdde72f403;p=platform%2Fkernel%2Flinux-3.10.git hpfs: use hweight32 Use hweight32 instead of counting for each bit Signed-off-by: Akinobu Mita Cc: Mikulas Patocka Cc: Al Viro Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/hpfs/super.c b/fs/hpfs/super.c index f2feaa0..cf6fe4a 100644 --- a/fs/hpfs/super.c +++ b/fs/hpfs/super.c @@ -119,11 +119,8 @@ unsigned hpfs_count_one_bitmap(struct super_block *s, secno secno) unsigned i, count; if (!(bits = hpfs_map_4sectors(s, secno, &qbh, 4))) return 0; count = 0; - for (i = 0; i < 2048 / sizeof(unsigned); i++) { - unsigned b; - if (!bits[i]) continue; - for (b = bits[i]; b; b>>=1) count += b & 1; - } + for (i = 0; i < 2048 / sizeof(unsigned); i++) + count += hweight32(bits[i]); hpfs_brelse4(&qbh); return count; }