Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 139623
b: refs/heads/master
c: 97f76d3
h: refs/heads/master
i:
  139621: 6c7994e
  139619: 4aa0862
  139615: ed9d767
v: v3
  • Loading branch information
Nikanth Karthikesan authored and Linus Torvalds committed Apr 3, 2009
1 parent 14de03c commit 8694283
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 9a896c9a48ac6704c0ce8ee081b836644d0afe40
refs/heads/master: 97f76d3d197f201ac8a8a3ced5b8fef81568e50e
6 changes: 3 additions & 3 deletions trunk/fs/buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,13 +199,13 @@ __find_get_block_slow(struct block_device *bdev, sector_t block)
head = page_buffers(page);
bh = head;
do {
if (bh->b_blocknr == block) {
if (!buffer_mapped(bh))
all_mapped = 0;
else if (bh->b_blocknr == block) {
ret = bh;
get_bh(bh);
goto out_unlock;
}
if (!buffer_mapped(bh))
all_mapped = 0;
bh = bh->b_this_page;
} while (bh != head);

Expand Down

0 comments on commit 8694283

Please sign in to comment.