Lines Matching refs:tmp_bh
1484 struct buffer_head tmp_bh; in ext2_quota_read() local
1497 tmp_bh.b_state = 0; in ext2_quota_read()
1498 tmp_bh.b_size = sb->s_blocksize; in ext2_quota_read()
1499 err = ext2_get_block(inode, blk, &tmp_bh, 0); in ext2_quota_read()
1502 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in ext2_quota_read()
1505 bh = sb_bread(sb, tmp_bh.b_blocknr); in ext2_quota_read()
1529 struct buffer_head tmp_bh; in ext2_quota_write() local
1536 tmp_bh.b_state = 0; in ext2_quota_write()
1537 tmp_bh.b_size = sb->s_blocksize; in ext2_quota_write()
1538 err = ext2_get_block(inode, blk, &tmp_bh, 1); in ext2_quota_write()
1542 bh = sb_bread(sb, tmp_bh.b_blocknr); in ext2_quota_write()
1544 bh = sb_getblk(sb, tmp_bh.b_blocknr); in ext2_quota_write()