Lines Matching refs:tmp_bh
738 struct buffer_head tmp_bh; in jfs_quota_read() local
751 tmp_bh.b_state = 0; in jfs_quota_read()
752 tmp_bh.b_size = i_blocksize(inode); in jfs_quota_read()
753 err = jfs_get_block(inode, blk, &tmp_bh, 0); in jfs_quota_read()
756 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in jfs_quota_read()
759 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_read()
783 struct buffer_head tmp_bh; in jfs_quota_write() local
791 tmp_bh.b_state = 0; in jfs_quota_write()
792 tmp_bh.b_size = i_blocksize(inode); in jfs_quota_write()
793 err = jfs_get_block(inode, blk, &tmp_bh, 1); in jfs_quota_write()
797 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_write()
799 bh = sb_getblk(sb, tmp_bh.b_blocknr); in jfs_quota_write()