Searched refs:bitmap_bh (Results 1 – 6 of 6) sorted by relevance
| /linux/fs/ext2/ |
| H A D | ialloc.c | 110 struct buffer_head *bitmap_bh; in ext2_free_inode() local 137 bitmap_bh = read_inode_bitmap(sb, block_group); in ext2_free_inode() 138 if (!bitmap_bh) in ext2_free_inode() 143 bit, (void *) bitmap_bh->b_data)) in ext2_free_inode() 148 mark_buffer_dirty(bitmap_bh); in ext2_free_inode() 150 sync_dirty_buffer(bitmap_bh); in ext2_free_inode() 152 brelse(bitmap_bh); in ext2_free_inode() 423 struct buffer_head *bitmap_bh = NULL; in ext2_new_inode() local 462 brelse(bitmap_bh); in ext2_new_inode() 463 bitmap_bh = read_inode_bitmap(sb, group); in ext2_new_inode() [all …]
|
| H A D | balloc.c | 485 struct buffer_head *bitmap_bh = NULL; in ext2_free_blocks() local 520 brelse(bitmap_bh); in ext2_free_blocks() 521 bitmap_bh = read_block_bitmap(sb, block_group); in ext2_free_blocks() 522 if (!bitmap_bh) in ext2_free_blocks() 544 bit + i, bitmap_bh->b_data)) { in ext2_free_blocks() 552 mark_buffer_dirty(bitmap_bh); in ext2_free_blocks() 554 sync_dirty_buffer(bitmap_bh); in ext2_free_blocks() 565 brelse(bitmap_bh); in ext2_free_blocks() 669 struct buffer_head *bitmap_bh, ext2_grpblk_t grp_goal, in ext2_try_to_allocate() argument 692 grp_goal = find_next_usable_block(start, bitmap_bh, end); in ext2_try_to_allocate() [all …]
|
| /linux/fs/ocfs2/ |
| H A D | suballoc.h | 136 struct buffer_head *bitmap_bh, 141 struct buffer_head *bitmap_bh,
|
| H A D | localalloc.c | 53 struct buffer_head **bitmap_bh); 1095 struct buffer_head **bitmap_bh) in ocfs2_local_alloc_reserve_for_window() argument 1125 *bitmap_bh = (*ac)->ac_bh; in ocfs2_local_alloc_reserve_for_window() 1126 get_bh(*bitmap_bh); in ocfs2_local_alloc_reserve_for_window()
|
| H A D | suballoc.c | 2656 struct buffer_head *bitmap_bh, in _ocfs2_free_clusters() argument 2683 status = _ocfs2_free_suballoc_bits(handle, bitmap_inode, bitmap_bh, in _ocfs2_free_clusters() 2700 struct buffer_head *bitmap_bh, in ocfs2_free_clusters() argument 2704 return _ocfs2_free_clusters(handle, bitmap_inode, bitmap_bh, in ocfs2_free_clusters() 2715 struct buffer_head *bitmap_bh, in ocfs2_release_clusters() argument 2719 return _ocfs2_free_clusters(handle, bitmap_inode, bitmap_bh, in ocfs2_release_clusters()
|
| /linux/fs/ext4/ |
| H A D | inode.c | 4854 struct buffer_head *bitmap_bh; in __ext4_get_inode_loc() local 4860 bitmap_bh = sb_getblk(sb, ext4_inode_bitmap(sb, gdp)); in __ext4_get_inode_loc() 4861 if (unlikely(!bitmap_bh)) in __ext4_get_inode_loc() 4869 if (!buffer_uptodate(bitmap_bh)) { in __ext4_get_inode_loc() 4870 brelse(bitmap_bh); in __ext4_get_inode_loc() 4876 if (ext4_test_bit(i, bitmap_bh->b_data)) in __ext4_get_inode_loc() 4879 brelse(bitmap_bh); in __ext4_get_inode_loc()
|