aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/ocfs2/aops.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c
index b8869fd0884f..e8d16ae12ef0 100644
--- a/fs/ocfs2/aops.c
+++ b/fs/ocfs2/aops.c
@@ -712,7 +712,8 @@ int ocfs2_map_page_blocks(struct page *page, u64 *p_blkno,
712 if (!buffer_uptodate(bh)) 712 if (!buffer_uptodate(bh))
713 set_buffer_uptodate(bh); 713 set_buffer_uptodate(bh);
714 } else if (!buffer_uptodate(bh) && !buffer_delay(bh) && 714 } else if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
715 (block_start < from || block_end > to)) { 715 !buffer_new(bh) &&
716 (block_start < from || block_end > to)) {
716 ll_rw_block(READ, 1, &bh); 717 ll_rw_block(READ, 1, &bh);
717 *wait_bh++=bh; 718 *wait_bh++=bh;
718 } 719 }