Lines Matching refs:tmp_bh
745 struct buffer_head tmp_bh; in jfs_quota_read() local
758 tmp_bh.b_state = 0; in jfs_quota_read()
759 tmp_bh.b_size = i_blocksize(inode); in jfs_quota_read()
760 err = jfs_get_block(inode, blk, &tmp_bh, 0); in jfs_quota_read()
763 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in jfs_quota_read()
766 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_read()
790 struct buffer_head tmp_bh; in jfs_quota_write() local
798 tmp_bh.b_state = 0; in jfs_quota_write()
799 tmp_bh.b_size = i_blocksize(inode); in jfs_quota_write()
800 err = jfs_get_block(inode, blk, &tmp_bh, 1); in jfs_quota_write()
804 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_write()
806 bh = sb_getblk(sb, tmp_bh.b_blocknr); in jfs_quota_write()