Lines Matching refs:bhs
1050 bool wait, struct buffer_head **bhs) in ext4_bread_batch() argument
1055 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */); in ext4_bread_batch()
1056 if (IS_ERR(bhs[i])) { in ext4_bread_batch()
1057 err = PTR_ERR(bhs[i]); in ext4_bread_batch()
1065 if (bhs[i] && !buffer_uptodate(bhs[i])) in ext4_bread_batch()
1067 &bhs[i]); in ext4_bread_batch()
1073 if (bhs[i]) in ext4_bread_batch()
1074 wait_on_buffer(bhs[i]); in ext4_bread_batch()
1077 if (bhs[i] && !buffer_uptodate(bhs[i])) { in ext4_bread_batch()
1086 brelse(bhs[i]); in ext4_bread_batch()
1087 bhs[i] = NULL; in ext4_bread_batch()