Lines Matching defs:bhs
903 bool wait, struct buffer_head **bhs)
908 bhs[i] = ext4_getblk(NULL, inode, block + i, 0 /* map_flags */);
909 if (IS_ERR(bhs[i])) {
910 err = PTR_ERR(bhs[i]);
917 /* Note that NULL bhs[i] is valid because of holes. */
918 if (bhs[i] && !ext4_buffer_uptodate(bhs[i]))
919 ext4_read_bh_lock(bhs[i], REQ_META | REQ_PRIO, false);
925 if (bhs[i])
926 wait_on_buffer(bhs[i]);
929 if (bhs[i] && !buffer_uptodate(bhs[i])) {
938 brelse(bhs[i]);
939 bhs[i] = NULL;