Searched refs:gd_bh (Results 1 – 4 of 4) sorted by relevance
/linux-4.1.27/fs/ocfs2/ |
D | move_extents.c | 376 struct buffer_head *ac_bh = NULL, *gd_bh = NULL; in ocfs2_find_victim_alloc_group() local 427 if (gd_bh) { in ocfs2_find_victim_alloc_group() 428 brelse(gd_bh); in ocfs2_find_victim_alloc_group() 429 gd_bh = NULL; in ocfs2_find_victim_alloc_group() 432 ret = ocfs2_read_blocks_sync(osb, blkno, 1, &gd_bh); in ocfs2_find_victim_alloc_group() 438 bg = (struct ocfs2_group_desc *)gd_bh->b_data; in ocfs2_find_victim_alloc_group() 443 *ret_bh = gd_bh; in ocfs2_find_victim_alloc_group() 474 struct buffer_head *gd_bh = NULL; in ocfs2_validate_and_adjust_move_goal() local 492 &goal_bit, &gd_bh); in ocfs2_validate_and_adjust_move_goal() 496 bg = (struct ocfs2_group_desc *)gd_bh->b_data; in ocfs2_validate_and_adjust_move_goal() [all …]
|
D | alloc.c | 7314 struct buffer_head *gd_bh = NULL; in ocfs2_trim_fs() local 7372 &gd_bh); in ocfs2_trim_fs() 7378 gd = (struct ocfs2_group_desc *)gd_bh->b_data; in ocfs2_trim_fs() 7380 brelse(gd_bh); in ocfs2_trim_fs() 7381 gd_bh = NULL; in ocfs2_trim_fs()
|
/linux-4.1.27/fs/ext3/ |
D | balloc.c | 495 struct buffer_head *gd_bh; in ext3_free_blocks_sb() local 538 desc = ext3_get_group_desc (sb, block_group, &gd_bh); in ext3_free_blocks_sb() 570 BUFFER_TRACE(gd_bh, "get_write_access"); in ext3_free_blocks_sb() 571 err = ext3_journal_get_write_access(handle, gd_bh); in ext3_free_blocks_sb() 656 BUFFER_TRACE(gd_bh, "dirtied group descriptor block"); in ext3_free_blocks_sb() 657 ret = ext3_journal_dirty_metadata(handle, gd_bh); in ext3_free_blocks_sb()
|
/linux-4.1.27/fs/ext4/ |
D | mballoc.c | 4646 struct buffer_head *gd_bh; in ext4_free_blocks() local 4756 gdp = ext4_get_group_desc(sb, block_group, &gd_bh); in ext4_free_blocks() 4785 BUFFER_TRACE(gd_bh, "get_write_access"); in ext4_free_blocks() 4786 err = ext4_journal_get_write_access(handle, gd_bh); in ext4_free_blocks() 4864 BUFFER_TRACE(gd_bh, "dirtied group descriptor block"); in ext4_free_blocks() 4865 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh); in ext4_free_blocks() 4894 struct buffer_head *gd_bh; in ext4_group_add_blocks() local 4927 desc = ext4_get_group_desc(sb, block_group, &gd_bh); in ext4_group_add_blocks() 4955 BUFFER_TRACE(gd_bh, "get_write_access"); in ext4_group_add_blocks() 4956 err = ext4_journal_get_write_access(handle, gd_bh); in ext4_group_add_blocks() [all …]
|