Lines Matching refs:tmp_bh
448 struct buffer_head *bh, tmp_bh; in affs_bread_ino() local
451 tmp_bh.b_state = 0; in affs_bread_ino()
452 err = affs_get_block(inode, block, &tmp_bh, create); in affs_bread_ino()
454 bh = affs_bread(inode->i_sb, tmp_bh.b_blocknr); in affs_bread_ino()
456 bh->b_state |= tmp_bh.b_state; in affs_bread_ino()
467 struct buffer_head *bh, tmp_bh; in affs_getzeroblk_ino() local
470 tmp_bh.b_state = 0; in affs_getzeroblk_ino()
471 err = affs_get_block(inode, block, &tmp_bh, 1); in affs_getzeroblk_ino()
473 bh = affs_getzeroblk(inode->i_sb, tmp_bh.b_blocknr); in affs_getzeroblk_ino()
475 bh->b_state |= tmp_bh.b_state; in affs_getzeroblk_ino()
486 struct buffer_head *bh, tmp_bh; in affs_getemptyblk_ino() local
489 tmp_bh.b_state = 0; in affs_getemptyblk_ino()
490 err = affs_get_block(inode, block, &tmp_bh, 1); in affs_getemptyblk_ino()
492 bh = affs_getemptyblk(inode->i_sb, tmp_bh.b_blocknr); in affs_getemptyblk_ino()
494 bh->b_state |= tmp_bh.b_state; in affs_getemptyblk_ino()