Searched refs:tmp_bh (Results 1 – 2 of 2) sorted by relevance
| /linux/fs/jfs/ |
| H A D | super.c | 703 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/ext2/ |
| H A D | super.c | 1527 struct buffer_head tmp_bh; in ext2_quota_read() local 1539 tmp_bh.b_state = 0; in ext2_quota_read() 1540 tmp_bh.b_size = sb->s_blocksize; in ext2_quota_read() 1541 err = ext2_get_block(inode, blk, &tmp_bh, 0); in ext2_quota_read() 1544 if (!buffer_mapped(&tmp_bh)) /* A hole? */ in ext2_quota_read() 1547 bh = sb_bread(sb, tmp_bh.b_blocknr); in ext2_quota_read() 1571 struct buffer_head tmp_bh; in ext2_quota_write() local 1577 tmp_bh.b_state = 0; in ext2_quota_write() 1578 tmp_bh.b_size = sb->s_blocksize; in ext2_quota_write() 1579 err = ext2_get_block(inode, blk, &tmp_bh, 1); in ext2_quota_write() [all …]
|