Lines Matching refs:tmp_bh
1479 struct buffer_head tmp_bh; in ext2_quota_read() local
1492 tmp_bh.b_state = 0; in ext2_quota_read()
1493 tmp_bh.b_size = sb->s_blocksize; in ext2_quota_read()
1494 err = ext2_get_block(inode, blk, &tmp_bh, 0); in ext2_quota_read()
1497 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in ext2_quota_read()
1500 bh = sb_bread(sb, tmp_bh.b_blocknr); in ext2_quota_read()
1524 struct buffer_head tmp_bh; in ext2_quota_write() local
1531 tmp_bh.b_state = 0; in ext2_quota_write()
1532 tmp_bh.b_size = sb->s_blocksize; in ext2_quota_write()
1533 err = ext2_get_block(inode, blk, &tmp_bh, 1); in ext2_quota_write()
1537 bh = sb_bread(sb, tmp_bh.b_blocknr); in ext2_quota_write()
1539 bh = sb_getblk(sb, tmp_bh.b_blocknr); in ext2_quota_write()