Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 42985
b: refs/heads/master
c: 7d1c520
h: refs/heads/master
i:
  42983: 41c5e62
v: v3
  • Loading branch information
Hugh Dickins authored and Linus Torvalds committed Dec 7, 2006
1 parent f2d56a0 commit bc7c7dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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: 2823b5535efad71e950ef50c2ce5f9e4dbaedc17
refs/heads/master: 7d1c520bb57e4b5e94ec937c13553dccf473341b
2 changes: 1 addition & 1 deletion trunk/fs/ext3/balloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ find_next_usable_block(ext3_grpblk_t start, struct buffer_head *bh,
here = 0;

p = ((char *)bh->b_data) + (here >> 3);
r = memscan(p, 0, (maxblocks - here + 7) >> 3);
r = memscan(p, 0, ((maxblocks + 7) >> 3) - (here >> 3));
next = (r - ((char *)bh->b_data)) << 3;

if (next < maxblocks && next >= start && ext3_test_allocatable(next, bh))
Expand Down

0 comments on commit bc7c7dd

Please sign in to comment.