diff options
Diffstat (limited to 'fs/ocfs2/suballoc.c')
-rw-r--r-- | fs/ocfs2/suballoc.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/fs/ocfs2/suballoc.c b/fs/ocfs2/suballoc.c index bb774d70d268..f1871ca83815 100644 --- a/fs/ocfs2/suballoc.c +++ b/fs/ocfs2/suballoc.c | |||
@@ -493,9 +493,9 @@ bail: | |||
493 | return status; | 493 | return status; |
494 | } | 494 | } |
495 | 495 | ||
496 | int ocfs2_reserve_new_metadata(struct ocfs2_super *osb, | 496 | int ocfs2_reserve_new_metadata_blocks(struct ocfs2_super *osb, |
497 | struct ocfs2_extent_list *root_el, | 497 | int blocks, |
498 | struct ocfs2_alloc_context **ac) | 498 | struct ocfs2_alloc_context **ac) |
499 | { | 499 | { |
500 | int status; | 500 | int status; |
501 | u32 slot; | 501 | u32 slot; |
@@ -507,7 +507,7 @@ int ocfs2_reserve_new_metadata(struct ocfs2_super *osb, | |||
507 | goto bail; | 507 | goto bail; |
508 | } | 508 | } |
509 | 509 | ||
510 | (*ac)->ac_bits_wanted = ocfs2_extend_meta_needed(root_el); | 510 | (*ac)->ac_bits_wanted = blocks; |
511 | (*ac)->ac_which = OCFS2_AC_USE_META; | 511 | (*ac)->ac_which = OCFS2_AC_USE_META; |
512 | slot = osb->slot_num; | 512 | slot = osb->slot_num; |
513 | (*ac)->ac_group_search = ocfs2_block_group_search; | 513 | (*ac)->ac_group_search = ocfs2_block_group_search; |
@@ -532,6 +532,15 @@ bail: | |||
532 | return status; | 532 | return status; |
533 | } | 533 | } |
534 | 534 | ||
535 | int ocfs2_reserve_new_metadata(struct ocfs2_super *osb, | ||
536 | struct ocfs2_extent_list *root_el, | ||
537 | struct ocfs2_alloc_context **ac) | ||
538 | { | ||
539 | return ocfs2_reserve_new_metadata_blocks(osb, | ||
540 | ocfs2_extend_meta_needed(root_el), | ||
541 | ac); | ||
542 | } | ||
543 | |||
535 | static int ocfs2_steal_inode_from_other_nodes(struct ocfs2_super *osb, | 544 | static int ocfs2_steal_inode_from_other_nodes(struct ocfs2_super *osb, |
536 | struct ocfs2_alloc_context *ac) | 545 | struct ocfs2_alloc_context *ac) |
537 | { | 546 | { |