Home
last modified time | relevance | path

Searched refs:new_root (Results 1 – 20 of 20) sorted by relevance

/linux/drivers/md/persistent-data/
H A Ddm-bitset.h94 int dm_bitset_empty(struct dm_disk_bitset *info, dm_block_t *new_root);
124 bool default_value, dm_block_t *new_root);
142 uint32_t index, dm_block_t *new_root);
155 uint32_t index, dm_block_t *new_root);
169 uint32_t index, dm_block_t *new_root, bool *result);
179 dm_block_t *new_root);
H A Ddm-bitset.c88 bool default_value, dm_block_t *new_root) in dm_bitset_resize() argument
96 &value, new_root); in dm_bitset_resize()
107 dm_block_t *new_root) in dm_bitset_flush() argument
119 &value, new_root); in dm_bitset_flush()
149 uint32_t index, dm_block_t *new_root) in get_array_entry() argument
158 r = dm_bitset_flush(info, root, new_root); in get_array_entry()
167 uint32_t index, dm_block_t *new_root) in dm_bitset_set_bit() argument
172 r = get_array_entry(info, root, index, new_root); in dm_bitset_set_bit()
184 uint32_t index, dm_block_t *new_root) in dm_bitset_clear_bit() argument
189 r = get_array_entry(info, root, index, new_root); in dm_bitset_clear_bit()
[all …]
H A Ddm-btree.h124 uint64_t *keys, void *value, dm_block_t *new_root)
133 uint64_t *keys, void *value, dm_block_t *new_root,
143 uint64_t *keys, dm_block_t *new_root);
153 dm_block_t *new_root, unsigned int *nr_removed);
H A Ddm-array.h112 const void *value, dm_block_t *new_root)
169 uint32_t index, const void *value, dm_block_t *new_root)
H A Ddm-array.c665 const void *value, dm_block_t *new_root) in array_resize() argument
671 *new_root = root; in array_resize()
691 *new_root = resize.root; in array_resize()
697 const void *value, dm_block_t *new_root) in dm_array_resize() argument
700 int r = array_resize(info, root, old_size, new_size, value, new_root); in dm_array_resize()
807 uint32_t index, const void *value, dm_block_t *new_root) in array_set_value() argument
824 *new_root = root; in array_set_value()
848 uint32_t index, const void *value, dm_block_t *new_root) in dm_array_set_value() argument
853 r = array_set_value(info, root, index, value, new_root); in dm_array_set_value()
H A Ddm-btree-remove.c595 uint64_t *keys, dm_block_t *new_root) in dm_btree_remove() argument
629 *new_root = shadow_root(&spine); in dm_btree_remove()
694 dm_block_t *new_root, unsigned int *nr_removed) in remove_one() argument
743 *new_root = shadow_root(&spine); in remove_one()
751 dm_block_t *new_root, unsigned int *nr_removed) in dm_btree_remove_leaves() argument
762 *new_root = root; in dm_btree_remove_leaves()
H A Ddm-btree.c1204 dm_block_t *new_root, struct dm_block **leaf) in btree_get_overwrite_leaf() argument
1213 *new_root = shadow_root(&spine); in btree_get_overwrite_leaf()
1235 uint64_t *keys, void *value, dm_block_t *new_root, in insert() argument
1309 *new_root = shadow_root(&spine); in insert()
1322 uint64_t *keys, void *value, dm_block_t *new_root) in dm_btree_insert() argument
1325 return insert(info, root, keys, value, new_root, NULL); in dm_btree_insert()
1330 uint64_t *keys, void *value, dm_block_t *new_root, in dm_btree_insert_notify() argument
1334 return insert(info, root, keys, value, new_root, inserted); in dm_btree_insert_notify()
H A Ddm-btree-internal.h160 dm_block_t *new_root, struct dm_block **leaf);
/linux/fs/
H A Dfs_struct.c54 void chroot_fs_refs(const struct path *old_root, const struct path *new_root) in chroot_fs_refs() argument
67 hits += replace_path(&fs->root, old_root, new_root); in chroot_fs_refs()
68 hits += replace_path(&fs->pwd, old_root, new_root); in chroot_fs_refs()
71 path_get(new_root); in chroot_fs_refs()
/linux/lib/
H A Dgeneric-radix-tree.c35 struct genradix_root *r = v, *new_root; in __genradix_ptr_alloc() local
50 new_root = ((struct genradix_root *) in __genradix_ptr_alloc()
53 if ((v = cmpxchg_release(&radix->root, r, new_root)) == r) { in __genradix_ptr_alloc()
54 v = new_root; in __genradix_ptr_alloc()
H A Dassoc_array.c1462 struct assoc_array_ptr *new_root, *new_parent, **new_ptr_pp; in assoc_array_gc() local
1481 new_root = new_parent = NULL; in assoc_array_gc()
1482 new_ptr_pp = &new_root; in assoc_array_gc()
1636 new_root = ptr; in assoc_array_gc()
1653 new_root = ptr; in assoc_array_gc()
1686 new_root = assoc_array_node_to_ptr(new_n); in assoc_array_gc()
1716 edit->set[0].to = new_root; in assoc_array_gc()
1723 assoc_array_destroy_subtree(new_root, edit->ops); in assoc_array_gc()
H A Dmaple_tree.c2671 goto new_root; in mas_spanning_rebalance()
2724 new_root: in mas_spanning_rebalance()
/linux/fs/afs/
H A Dcell.c410 struct afs_cell *old_root, *new_root; in afs_cell_init() local
443 new_root = afs_lookup_cell(net, rootcell, len, vllist, in afs_cell_init()
446 if (IS_ERR(new_root)) { in afs_cell_init()
447 _leave(" = %ld", PTR_ERR(new_root)); in afs_cell_init()
448 return PTR_ERR(new_root); in afs_cell_init()
451 if (!test_and_set_bit(AFS_CELL_FL_NO_GC, &new_root->flags)) in afs_cell_init()
452 afs_use_cell(new_root, afs_cell_trace_use_pin); in afs_cell_init()
456 old_root = rcu_replace_pointer(net->ws_cell, new_root, in afs_cell_init()
/linux/fs/btrfs/
H A Dtree-mod-log.h38 struct extent_buffer *new_root,
H A Dioctl.c510 struct btrfs_root *new_root; in create_subvol() local
643 new_root = btrfs_get_new_fs_root(fs_info, objectid, &anon_dev); in create_subvol()
644 if (IS_ERR(new_root)) { in create_subvol()
645 ret = PTR_ERR(new_root); in create_subvol()
651 BTRFS_I(new_inode_args.inode)->root = new_root; in create_subvol()
654 ret = btrfs_record_root_in_trans(trans, new_root); in create_subvol()
2815 struct btrfs_root *new_root; in btrfs_ioctl_default_subvol() local
2840 new_root = btrfs_get_fs_root(fs_info, objectid, true); in btrfs_ioctl_default_subvol()
2841 if (IS_ERR(new_root)) { in btrfs_ioctl_default_subvol()
2842 ret = PTR_ERR(new_root); in btrfs_ioctl_default_subvol()
[all …]
H A Dtree-mod-log.c427 struct extent_buffer *new_root, in btrfs_tree_mod_log_insert_root() argument
464 tm->logical = new_root->start; in btrfs_tree_mod_log_insert_root()
H A Drelocation.c4368 struct btrfs_root *new_root; in btrfs_reloc_post_snapshot() local
4386 new_root = pending->snap; in btrfs_reloc_post_snapshot()
4387 reloc_root = create_reloc_root(trans, root->reloc_root, btrfs_root_id(new_root)); in btrfs_reloc_post_snapshot()
4398 new_root->reloc_root = btrfs_grab_root(reloc_root); in btrfs_reloc_post_snapshot()
/linux/tools/perf/util/
H A Dhist.c2356 struct rb_root_cached new_root = RB_ROOT_CACHED; in resort_filtered_entry() local
2385 resort_filtered_entry(&new_root, h); in resort_filtered_entry()
2388 he->hroot_out = new_root; in resort_filtered_entry()
2394 struct rb_root_cached new_root = RB_ROOT_CACHED; in hists__filter_hierarchy() local
2452 resort_filtered_entry(&new_root, h); in hists__filter_hierarchy()
2455 hists->entries = new_root; in hists__filter_hierarchy()
/linux/mm/
H A Drmap.c244 struct anon_vma *new_root = anon_vma->root; in lock_anon_vma_root() local
245 if (new_root != root) { in lock_anon_vma_root()
248 root = new_root; in lock_anon_vma_root()
/linux/include/linux/
H A Dsyscalls.h426 asmlinkage long sys_pivot_root(const char __user *new_root,