Lines Matching refs:tmp_bh
446 struct buffer_head *bh, tmp_bh; in affs_bread_ino() local
449 tmp_bh.b_state = 0; in affs_bread_ino()
450 err = affs_get_block(inode, block, &tmp_bh, create); in affs_bread_ino()
452 bh = affs_bread(inode->i_sb, tmp_bh.b_blocknr); in affs_bread_ino()
454 bh->b_state |= tmp_bh.b_state; in affs_bread_ino()
465 struct buffer_head *bh, tmp_bh; in affs_getzeroblk_ino() local
468 tmp_bh.b_state = 0; in affs_getzeroblk_ino()
469 err = affs_get_block(inode, block, &tmp_bh, 1); in affs_getzeroblk_ino()
471 bh = affs_getzeroblk(inode->i_sb, tmp_bh.b_blocknr); in affs_getzeroblk_ino()
473 bh->b_state |= tmp_bh.b_state; in affs_getzeroblk_ino()
484 struct buffer_head *bh, tmp_bh; in affs_getemptyblk_ino() local
487 tmp_bh.b_state = 0; in affs_getemptyblk_ino()
488 err = affs_get_block(inode, block, &tmp_bh, 1); in affs_getemptyblk_ino()
490 bh = affs_getemptyblk(inode->i_sb, tmp_bh.b_blocknr); in affs_getemptyblk_ino()
492 bh->b_state |= tmp_bh.b_state; in affs_getemptyblk_ino()