Searched refs:gd_bh (Results 1 – 4 of 4) sorted by relevance
/linux-3.4.99/fs/ocfs2/ |
D | move_extents.c | 375 struct buffer_head *ac_bh = NULL, *gd_bh = NULL; in ocfs2_find_victim_alloc_group() local 426 if (gd_bh) { in ocfs2_find_victim_alloc_group() 427 brelse(gd_bh); in ocfs2_find_victim_alloc_group() 428 gd_bh = NULL; in ocfs2_find_victim_alloc_group() 431 ret = ocfs2_read_blocks_sync(osb, blkno, 1, &gd_bh); in ocfs2_find_victim_alloc_group() 437 bg = (struct ocfs2_group_desc *)gd_bh->b_data; in ocfs2_find_victim_alloc_group() 442 *ret_bh = gd_bh; in ocfs2_find_victim_alloc_group() 473 struct buffer_head *gd_bh = NULL; in ocfs2_validate_and_adjust_move_goal() local 498 &goal_bit, &gd_bh); in ocfs2_validate_and_adjust_move_goal() 502 bg = (struct ocfs2_group_desc *)gd_bh->b_data; in ocfs2_validate_and_adjust_move_goal() [all …]
|
D | alloc.c | 7257 struct buffer_head *gd_bh = NULL; in ocfs2_trim_fs() local 7319 &gd_bh); in ocfs2_trim_fs() 7325 gd = (struct ocfs2_group_desc *)gd_bh->b_data; in ocfs2_trim_fs() 7327 brelse(gd_bh); in ocfs2_trim_fs() 7328 gd_bh = NULL; in ocfs2_trim_fs()
|
/linux-3.4.99/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-3.4.99/fs/ext4/ |
D | mballoc.c | 4491 struct buffer_head *gd_bh; in ext4_free_blocks() local 4595 gdp = ext4_get_group_desc(sb, block_group, &gd_bh); in ext4_free_blocks() 4624 BUFFER_TRACE(gd_bh, "get_write_access"); in ext4_free_blocks() 4625 err = ext4_journal_get_write_access(handle, gd_bh); in ext4_free_blocks() 4700 BUFFER_TRACE(gd_bh, "dirtied group descriptor block"); in ext4_free_blocks() 4701 ret = ext4_handle_dirty_metadata(handle, NULL, gd_bh); in ext4_free_blocks() 4731 struct buffer_head *gd_bh; in ext4_group_add_blocks() local 4764 desc = ext4_get_group_desc(sb, block_group, &gd_bh); in ext4_group_add_blocks() 4792 BUFFER_TRACE(gd_bh, "get_write_access"); in ext4_group_add_blocks() 4793 err = ext4_journal_get_write_access(handle, gd_bh); in ext4_group_add_blocks() [all …]
|