Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 176755
b: refs/heads/master
c: 868d648
h: refs/heads/master
i:
  176753: 6ec5feb
  176751: 985e91a
v: v3
  • Loading branch information
Akinobu Mita authored and Linus Torvalds committed Dec 16, 2009
1 parent fae7f0a commit f410510
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ca120b20c32ffabf0e1d4319f65360e920fb4fe2
refs/heads/master: 868d64812ae84e8f094e0bcf95157c7d79d625ec
17 changes: 1 addition & 16 deletions trunk/fs/qnx4/bitmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,7 @@ static void count_bits(register const char *bmPart, register int size,
}
do {
b = *bmPart++;
if ((b & 1) == 0)
tot++;
if ((b & 2) == 0)
tot++;
if ((b & 4) == 0)
tot++;
if ((b & 8) == 0)
tot++;
if ((b & 16) == 0)
tot++;
if ((b & 32) == 0)
tot++;
if ((b & 64) == 0)
tot++;
if ((b & 128) == 0)
tot++;
tot += 8 - hweight8(b);
size--;
} while (size != 0);
*tf = tot;
Expand Down

0 comments on commit f410510

Please sign in to comment.