Home
last modified time | relevance | path

Searched refs:tmp_bh (Results 1 – 3 of 3) sorted by relevance

/linux/fs/jfs/
H A Dsuper.c703 struct buffer_head tmp_bh; in jfs_quota_read() local
715 tmp_bh.b_state = 0; in jfs_quota_read()
716 tmp_bh.b_size = i_blocksize(inode); in jfs_quota_read()
717 err = jfs_get_block(inode, blk, &tmp_bh, 0); in jfs_quota_read()
720 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in jfs_quota_read()
723 bh = sb_bread(sb, tmp_bh.b_blocknr); in jfs_quota_read()
747 struct buffer_head tmp_bh; in jfs_quota_write() local
754 tmp_bh.b_state = 0; in jfs_quota_write()
755 tmp_bh.b_size = i_blocksize(inode); in jfs_quota_write()
756 err = jfs_get_block(inode, blk, &tmp_bh, 1); in jfs_quota_write()
[all …]
/linux/fs/affs/
H A Dfile.c473 struct buffer_head *bh, tmp_bh; in affs_bread_ino() local
476 tmp_bh.b_state = 0; in affs_bread_ino()
477 err = affs_get_block(inode, block, &tmp_bh, create); in affs_bread_ino()
479 bh = affs_bread(inode->i_sb, tmp_bh.b_blocknr); in affs_bread_ino()
481 bh->b_state |= tmp_bh.b_state; in affs_bread_ino()
492 struct buffer_head *bh, tmp_bh; in affs_getzeroblk_ino() local
495 tmp_bh.b_state = 0; in affs_getzeroblk_ino()
496 err = affs_get_block(inode, block, &tmp_bh, 1); in affs_getzeroblk_ino()
498 bh = affs_getzeroblk(inode->i_sb, tmp_bh.b_blocknr); in affs_getzeroblk_ino()
500 bh->b_state |= tmp_bh.b_state; in affs_getzeroblk_ino()
[all …]
/linux/fs/ext2/
H A Dsuper.c1529 struct buffer_head tmp_bh; in ext2_quota_read() local
1541 tmp_bh.b_state = 0; in ext2_quota_read()
1542 tmp_bh.b_size = sb->s_blocksize; in ext2_quota_read()
1543 err = ext2_get_block(inode, blk, &tmp_bh, 0); in ext2_quota_read()
1546 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in ext2_quota_read()
1549 bh = sb_bread(sb, tmp_bh.b_blocknr); in ext2_quota_read()
1573 struct buffer_head tmp_bh; in ext2_quota_write() local
1579 tmp_bh.b_state = 0; in ext2_quota_write()
1580 tmp_bh.b_size = sb->s_blocksize; in ext2_quota_write()
1581 err = ext2_get_block(inode, blk, &tmp_bh, 1); in ext2_quota_write()
[all …]