Lines Matching refs:tmp_bh
744 struct buffer_head tmp_bh; in jfs_quota_read() local
757 tmp_bh.b_state = 0; in jfs_quota_read()
758 tmp_bh.b_size = i_blocksize(inode); in jfs_quota_read()
759 err = jfs_get_block(inode, blk, &tmp_bh, 0); in jfs_quota_read()
762 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in jfs_quota_read()
765 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_read()
789 struct buffer_head tmp_bh; in jfs_quota_write() local
797 tmp_bh.b_state = 0; in jfs_quota_write()
798 tmp_bh.b_size = i_blocksize(inode); in jfs_quota_write()
799 err = jfs_get_block(inode, blk, &tmp_bh, 1); in jfs_quota_write()
803 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_write()
805 bh = sb_getblk(sb, tmp_bh.b_blocknr); in jfs_quota_write()