Lines Matching refs:tmp_bh
469 struct buffer_head *bh, tmp_bh; in affs_bread_ino() local
472 tmp_bh.b_state = 0; in affs_bread_ino()
473 err = affs_get_block(inode, block, &tmp_bh, create); in affs_bread_ino()
475 bh = affs_bread(inode->i_sb, tmp_bh.b_blocknr); in affs_bread_ino()
477 bh->b_state |= tmp_bh.b_state; in affs_bread_ino()
488 struct buffer_head *bh, tmp_bh; in affs_getzeroblk_ino() local
491 tmp_bh.b_state = 0; in affs_getzeroblk_ino()
492 err = affs_get_block(inode, block, &tmp_bh, 1); in affs_getzeroblk_ino()
494 bh = affs_getzeroblk(inode->i_sb, tmp_bh.b_blocknr); in affs_getzeroblk_ino()
496 bh->b_state |= tmp_bh.b_state; in affs_getzeroblk_ino()
507 struct buffer_head *bh, tmp_bh; in affs_getemptyblk_ino() local
510 tmp_bh.b_state = 0; in affs_getemptyblk_ino()
511 err = affs_get_block(inode, block, &tmp_bh, 1); in affs_getemptyblk_ino()
513 bh = affs_getemptyblk(inode->i_sb, tmp_bh.b_blocknr); in affs_getemptyblk_ino()
515 bh->b_state |= tmp_bh.b_state; in affs_getemptyblk_ino()