Searched refs:tmp_bh (Results 1 - 5 of 5) sorted by relevance

/linux-master/fs/jfs/
H A Dsuper.c738 struct buffer_head tmp_bh; local
750 tmp_bh.b_state = 0;
751 tmp_bh.b_size = i_blocksize(inode);
752 err = jfs_get_block(inode, blk, &tmp_bh, 0);
755 if (!buffer_mapped(&tmp_bh)) /* A hole? */
758 bh = sb_bread(sb, tmp_bh.b_blocknr);
782 struct buffer_head tmp_bh; local
789 tmp_bh.b_state = 0;
790 tmp_bh.b_size = i_blocksize(inode);
791 err = jfs_get_block(inode, blk, &tmp_bh,
[all...]
/linux-master/fs/affs/
H A Dfile.c472 struct buffer_head *bh, tmp_bh; local
475 tmp_bh.b_state = 0;
476 err = affs_get_block(inode, block, &tmp_bh, create);
478 bh = affs_bread(inode->i_sb, tmp_bh.b_blocknr);
480 bh->b_state |= tmp_bh.b_state;
491 struct buffer_head *bh, tmp_bh; local
494 tmp_bh.b_state = 0;
495 err = affs_get_block(inode, block, &tmp_bh, 1);
497 bh = affs_getzeroblk(inode->i_sb, tmp_bh.b_blocknr);
499 bh->b_state |= tmp_bh
510 struct buffer_head *bh, tmp_bh; local
[all...]
/linux-master/fs/ext2/
H A Dsuper.c1494 struct buffer_head tmp_bh; local
1506 tmp_bh.b_state = 0;
1507 tmp_bh.b_size = sb->s_blocksize;
1508 err = ext2_get_block(inode, blk, &tmp_bh, 0);
1511 if (!buffer_mapped(&tmp_bh)) /* A hole? */
1514 bh = sb_bread(sb, tmp_bh.b_blocknr);
1538 struct buffer_head tmp_bh; local
1544 tmp_bh.b_state = 0;
1545 tmp_bh.b_size = sb->s_blocksize;
1546 err = ext2_get_block(inode, blk, &tmp_bh,
[all...]
/linux-master/fs/reiserfs/
H A Dsuper.c2495 struct buffer_head tmp_bh, *bh; local
2505 tmp_bh.b_state = 0;
2511 err = reiserfs_get_block(inode, blk, &tmp_bh, 0);
2515 if (!buffer_mapped(&tmp_bh)) /* A hole? */
2518 bh = sb_bread(sb, tmp_bh.b_blocknr);
2544 struct buffer_head tmp_bh, *bh; local
2553 tmp_bh.b_state = 0;
2555 err = reiserfs_get_block(inode, blk, &tmp_bh, GET_BLOCK_CREATE);
2560 bh = sb_bread(sb, tmp_bh.b_blocknr);
2562 bh = sb_getblk(sb, tmp_bh
[all...]
H A Djournal.c1650 struct buffer_head *tmp_bh; local
1656 tmp_bh = cn->bh;
1657 get_bh(tmp_bh);
1658 lock_buffer(tmp_bh);
1659 if (cn->bh && can_dirty(cn) && buffer_dirty(tmp_bh)) {
1660 if (!buffer_journal_dirty(tmp_bh) ||
1661 buffer_journal_prepared(tmp_bh))
1663 add_to_chunk(chunk, tmp_bh, NULL, write_chunk);
1667 unlock_buffer(tmp_bh);
1669 put_bh(tmp_bh);
4201 struct buffer_head *tmp_bh; local
[all...]

Completed in 139 milliseconds