Lines Matching refs:tmp_bh
747 struct buffer_head tmp_bh; in jfs_quota_read() local
760 tmp_bh.b_state = 0; in jfs_quota_read()
761 tmp_bh.b_size = 1 << inode->i_blkbits; in jfs_quota_read()
762 err = jfs_get_block(inode, blk, &tmp_bh, 0); in jfs_quota_read()
765 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in jfs_quota_read()
768 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_read()
792 struct buffer_head tmp_bh; in jfs_quota_write() local
800 tmp_bh.b_state = 0; in jfs_quota_write()
801 tmp_bh.b_size = 1 << inode->i_blkbits; in jfs_quota_write()
802 err = jfs_get_block(inode, blk, &tmp_bh, 1); in jfs_quota_write()
806 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_write()
808 bh = sb_getblk(sb, tmp_bh.b_blocknr); in jfs_quota_write()