Lines Matching refs:tmp_bh
750 struct buffer_head tmp_bh; in jfs_quota_read() local
763 tmp_bh.b_state = 0; in jfs_quota_read()
764 tmp_bh.b_size = 1 << inode->i_blkbits; in jfs_quota_read()
765 err = jfs_get_block(inode, blk, &tmp_bh, 0); in jfs_quota_read()
768 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in jfs_quota_read()
771 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_read()
795 struct buffer_head tmp_bh; in jfs_quota_write() local
803 tmp_bh.b_state = 0; in jfs_quota_write()
804 tmp_bh.b_size = 1 << inode->i_blkbits; in jfs_quota_write()
805 err = jfs_get_block(inode, blk, &tmp_bh, 1); in jfs_quota_write()
809 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_write()
811 bh = sb_getblk(sb, tmp_bh.b_blocknr); in jfs_quota_write()