Lines Matching defs:bhs
914 bool wait, struct buffer_head **bhs)
919 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */);
920 if (IS_ERR(bhs[i])) {
921 err = PTR_ERR(bhs[i]);
928 /* Note that NULL bhs[i] is valid because of holes. */
929 if (bhs[i] && !ext4_buffer_uptodate(bhs[i]))
930 ext4_read_bh_lock(bhs[i], REQ_META | REQ_PRIO, false);
936 if (bhs[i])
937 wait_on_buffer(bhs[i]);
940 if (bhs[i] && !buffer_uptodate(bhs[i])) {
949 brelse(bhs[i]);
950 bhs[i] = NULL;