Lines Matching refs:tmp_bh
1451 struct buffer_head tmp_bh; in ext2_quota_read() local
1464 tmp_bh.b_state = 0; in ext2_quota_read()
1465 tmp_bh.b_size = sb->s_blocksize; in ext2_quota_read()
1466 err = ext2_get_block(inode, blk, &tmp_bh, 0); in ext2_quota_read()
1469 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in ext2_quota_read()
1472 bh = sb_bread(sb, tmp_bh.b_blocknr); in ext2_quota_read()
1496 struct buffer_head tmp_bh; in ext2_quota_write() local
1503 tmp_bh.b_state = 0; in ext2_quota_write()
1504 tmp_bh.b_size = sb->s_blocksize; in ext2_quota_write()
1505 err = ext2_get_block(inode, blk, &tmp_bh, 1); in ext2_quota_write()
1509 bh = sb_bread(sb, tmp_bh.b_blocknr); in ext2_quota_write()
1511 bh = sb_getblk(sb, tmp_bh.b_blocknr); in ext2_quota_write()