Lines Matching refs:bhs
1039 bool wait, struct buffer_head **bhs) in ext4_bread_batch() argument
1044 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */); in ext4_bread_batch()
1045 if (IS_ERR(bhs[i])) { in ext4_bread_batch()
1046 err = PTR_ERR(bhs[i]); in ext4_bread_batch()
1054 if (bhs[i] && !ext4_buffer_uptodate(bhs[i])) in ext4_bread_batch()
1056 &bhs[i]); in ext4_bread_batch()
1062 if (bhs[i]) in ext4_bread_batch()
1063 wait_on_buffer(bhs[i]); in ext4_bread_batch()
1066 if (bhs[i] && !buffer_uptodate(bhs[i])) { in ext4_bread_batch()
1075 brelse(bhs[i]); in ext4_bread_batch()
1076 bhs[i] = NULL; in ext4_bread_batch()