Lines Matching refs:new_free_set

162                                          struct block_set* new_free_set,  in transaction_rebuild_free_set()  argument
189 block_set_init(tr->fs, new_free_set); in transaction_rebuild_free_set()
190 new_free_set->block_tree.copy_on_write = true; in transaction_rebuild_free_set()
191 new_free_set->block_tree.allow_copy_on_write = true; in transaction_rebuild_free_set()
193 block_set_add_range(tr, new_free_set, init_range); in transaction_rebuild_free_set()
196 block_set_remove_block(tr, new_free_set, in transaction_rebuild_free_set()
205 files_rebuild_free_set(tr, new_free_set, new_files); in transaction_rebuild_free_set()
217 block_set_remove_range(tr, new_free_set, range); in transaction_rebuild_free_set()
235 full_assert(block_set_check(tr, new_free_set)); in transaction_rebuild_free_set()
334 struct block_set new_free_set = BLOCK_SET_INITIAL_VALUE(new_free_set); in transaction_complete_etc() local
385 tr->new_free_set = &new_free_set; in transaction_complete_etc()
387 transaction_rebuild_free_set(tr, &new_free_set, &new_files, in transaction_complete_etc()
390 transaction_merge_free_sets(tr, &new_free_set, &tr->fs->free, in transaction_complete_etc()
398 if (!transaction_check_free(tr, &new_free_set, tr->fs->reserved_count)) { in transaction_complete_etc()
424 block_set_print(tr, &new_free_set); in transaction_complete_etc()
434 &new_free_set.block_tree.root); in transaction_complete_etc()
451 assert(block_range_empty(new_free_set.initial_range)); in transaction_complete_etc()
452 check_free_tree(tr, &new_free_set); in transaction_complete_etc()
455 &new_free_set.block_tree.root)) { in transaction_complete_etc()
461 &new_free_set.block_tree.root)); in transaction_complete_etc()
476 super_block_updated = update_super_block(tr, &new_free_set.block_tree.root, in transaction_complete_etc()
509 tr->fs->free.block_tree.root = new_free_set.block_tree.root; in transaction_complete_etc()
521 tr->fs->checkpoint_free.block_tree.root = new_free_set.block_tree.root; in transaction_complete_etc()
638 tr->new_free_set = NULL; in transaction_activate()