Lines Matching refs:tmp_bh
771 struct buffer_head tmp_bh; in jfs_quota_read() local
784 tmp_bh.b_state = 0; in jfs_quota_read()
785 tmp_bh.b_size = i_blocksize(inode); in jfs_quota_read()
786 err = jfs_get_block(inode, blk, &tmp_bh, 0); in jfs_quota_read()
789 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in jfs_quota_read()
792 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_read()
816 struct buffer_head tmp_bh; in jfs_quota_write() local
824 tmp_bh.b_state = 0; in jfs_quota_write()
825 tmp_bh.b_size = i_blocksize(inode); in jfs_quota_write()
826 err = jfs_get_block(inode, blk, &tmp_bh, 1); in jfs_quota_write()
830 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_write()
832 bh = sb_getblk(sb, tmp_bh.b_blocknr); in jfs_quota_write()