/Linux-v5.15/drivers/md/persistent-data/ |
D | dm-bitset.h | 93 int dm_bitset_empty(struct dm_disk_bitset *info, dm_block_t *new_root); 123 bool default_value, dm_block_t *new_root); 141 uint32_t index, dm_block_t *new_root); 154 uint32_t index, dm_block_t *new_root); 168 uint32_t index, dm_block_t *new_root, bool *result); 178 dm_block_t *new_root);
|
D | dm-bitset.c | 86 bool default_value, dm_block_t *new_root) in dm_bitset_resize() argument 94 &value, new_root); in dm_bitset_resize() 105 dm_block_t *new_root) in dm_bitset_flush() argument 117 &value, new_root); in dm_bitset_flush() 147 uint32_t index, dm_block_t *new_root) in get_array_entry() argument 156 r = dm_bitset_flush(info, root, new_root); in get_array_entry() 165 uint32_t index, dm_block_t *new_root) in dm_bitset_set_bit() argument 170 r = get_array_entry(info, root, index, new_root); in dm_bitset_set_bit() 182 uint32_t index, dm_block_t *new_root) in dm_bitset_clear_bit() argument 187 r = get_array_entry(info, root, index, new_root); in dm_bitset_clear_bit() [all …]
|
D | dm-btree.h | 123 uint64_t *keys, void *value, dm_block_t *new_root) 132 uint64_t *keys, void *value, dm_block_t *new_root, 142 uint64_t *keys, dm_block_t *new_root); 152 dm_block_t *new_root, unsigned *nr_removed);
|
D | dm-array.h | 111 const void *value, dm_block_t *new_root) 168 uint32_t index, const void *value, dm_block_t *new_root)
|
D | dm-array.c | 661 const void *value, dm_block_t *new_root) in array_resize() argument 667 *new_root = root; in array_resize() 687 *new_root = resize.root; in array_resize() 693 const void *value, dm_block_t *new_root) in dm_array_resize() argument 696 int r = array_resize(info, root, old_size, new_size, value, new_root); in dm_array_resize() 801 uint32_t index, const void *value, dm_block_t *new_root) in array_set_value() argument 818 *new_root = root; in array_set_value() 842 uint32_t index, const void *value, dm_block_t *new_root) in dm_array_set_value() argument 847 r = array_set_value(info, root, index, value, new_root); in dm_array_set_value()
|
D | dm-btree-remove.c | 519 uint64_t *keys, dm_block_t *new_root) in dm_btree_remove() argument 553 *new_root = shadow_root(&spine); in dm_btree_remove() 617 dm_block_t *new_root, unsigned *nr_removed) in remove_one() argument 666 *new_root = shadow_root(&spine); in remove_one() 674 dm_block_t *new_root, unsigned *nr_removed) in dm_btree_remove_leaves() argument 685 *new_root = root; in dm_btree_remove_leaves()
|
D | dm-btree.c | 1191 dm_block_t *new_root, struct dm_block **leaf) in btree_get_overwrite_leaf() argument 1200 *new_root = shadow_root(&spine); in btree_get_overwrite_leaf() 1222 uint64_t *keys, void *value, dm_block_t *new_root, in insert() argument 1296 *new_root = shadow_root(&spine); in insert() 1309 uint64_t *keys, void *value, dm_block_t *new_root) in dm_btree_insert() argument 1312 return insert(info, root, keys, value, new_root, NULL); in dm_btree_insert() 1317 uint64_t *keys, void *value, dm_block_t *new_root, in dm_btree_insert_notify() argument 1321 return insert(info, root, keys, value, new_root, inserted); in dm_btree_insert_notify()
|
D | dm-btree-internal.h | 158 dm_block_t *new_root, struct dm_block **leaf);
|
/Linux-v5.15/fs/ |
D | fs_struct.c | 58 void chroot_fs_refs(const struct path *old_root, const struct path *new_root) in chroot_fs_refs() argument 72 hits += replace_path(&fs->root, old_root, new_root); in chroot_fs_refs() 73 hits += replace_path(&fs->pwd, old_root, new_root); in chroot_fs_refs() 77 path_get(new_root); in chroot_fs_refs()
|
D | namespace.c | 3816 SYSCALL_DEFINE2(pivot_root, const char __user *, new_root, in SYSCALL_DEFINE2() argument 3827 error = user_path_at(AT_FDCWD, new_root, in SYSCALL_DEFINE2()
|
/Linux-v5.15/lib/ |
D | generic-radix-tree.c | 113 struct genradix_root *r = v, *new_root; in __genradix_ptr_alloc() local 128 new_root = ((struct genradix_root *) in __genradix_ptr_alloc() 131 if ((v = cmpxchg_release(&radix->root, r, new_root)) == r) { in __genradix_ptr_alloc() 132 v = new_root; in __genradix_ptr_alloc()
|
D | assoc_array.c | 1463 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() 1630 new_root = ptr; in assoc_array_gc() 1647 new_root = ptr; in assoc_array_gc() 1680 new_root = assoc_array_node_to_ptr(new_n); in assoc_array_gc() 1710 edit->set[0].to = new_root; in assoc_array_gc() 1717 assoc_array_destroy_subtree(new_root, edit->ops); in assoc_array_gc()
|
/Linux-v5.15/fs/afs/ |
D | cell.c | 345 struct afs_cell *old_root, *new_root; in afs_cell_init() local 370 new_root = afs_lookup_cell(net, rootcell, len, vllist, false); in afs_cell_init() 371 if (IS_ERR(new_root)) { in afs_cell_init() 372 _leave(" = %ld", PTR_ERR(new_root)); in afs_cell_init() 373 return PTR_ERR(new_root); in afs_cell_init() 376 if (!test_and_set_bit(AFS_CELL_FL_NO_GC, &new_root->flags)) in afs_cell_init() 377 afs_use_cell(new_root, afs_cell_trace_use_pin); in afs_cell_init() 381 afs_see_cell(new_root, afs_cell_trace_see_ws); in afs_cell_init() 383 net->ws_cell = new_root; in afs_cell_init()
|
/Linux-v5.15/fs/btrfs/ |
D | tree-mod-log.h | 32 struct extent_buffer *new_root,
|
D | ioctl.c | 514 struct btrfs_root *new_root; in create_subvol() local 631 new_root = btrfs_get_new_fs_root(fs_info, objectid, anon_dev); in create_subvol() 632 if (IS_ERR(new_root)) { in create_subvol() 634 ret = PTR_ERR(new_root); in create_subvol() 641 ret = btrfs_record_root_in_trans(trans, new_root); in create_subvol() 643 btrfs_put_root(new_root); in create_subvol() 648 ret = btrfs_create_subvol_root(trans, new_root, root, mnt_userns); in create_subvol() 649 btrfs_put_root(new_root); in create_subvol() 3429 struct btrfs_root *new_root; in btrfs_ioctl_default_subvol() local 3453 new_root = btrfs_get_fs_root(fs_info, objectid, true); in btrfs_ioctl_default_subvol() [all …]
|
D | tree-mod-log.c | 344 struct extent_buffer *new_root, in btrfs_tree_mod_log_insert_root() argument 381 tm->logical = new_root->start; in btrfs_tree_mod_log_insert_root()
|
D | inode.c | 5718 struct btrfs_root *new_root; in fixup_tree_root_location() local 5757 new_root = btrfs_get_fs_root(fs_info, location->objectid, true); in fixup_tree_root_location() 5758 if (IS_ERR(new_root)) { in fixup_tree_root_location() 5759 err = PTR_ERR(new_root); in fixup_tree_root_location() 5763 *sub_root = new_root; in fixup_tree_root_location() 5764 location->objectid = btrfs_root_dirid(&new_root->root_item); in fixup_tree_root_location() 9032 struct btrfs_root *new_root, in btrfs_create_subvol_root() argument 9041 err = btrfs_get_free_objectid(new_root, &ino); in btrfs_create_subvol_root() 9045 inode = btrfs_new_inode(trans, new_root, mnt_userns, NULL, "..", 2, in btrfs_create_subvol_root() 9058 err = btrfs_subvol_inherit_props(trans, new_root, parent_root); in btrfs_create_subvol_root() [all …]
|
D | relocation.c | 4472 struct btrfs_root *new_root; in btrfs_reloc_post_snapshot() local 4490 new_root = pending->snap; in btrfs_reloc_post_snapshot() 4492 new_root->root_key.objectid); in btrfs_reloc_post_snapshot() 4503 new_root->reloc_root = btrfs_grab_root(reloc_root); in btrfs_reloc_post_snapshot()
|
D | ctree.h | 3166 struct btrfs_root *new_root,
|
/Linux-v5.15/fs/reiserfs/ |
D | ibalance.c | 658 struct buffer_head *new_root; in balance_internal_when_delete() local 669 new_root = tb->R[h - 1]; in balance_internal_when_delete() 671 new_root = tb->L[h - 1]; in balance_internal_when_delete() 675 PUT_SB_ROOT_BLOCK(tb->tb_sb, new_root->b_blocknr); in balance_internal_when_delete() 686 check_internal(new_root); in balance_internal_when_delete()
|
/Linux-v5.15/tools/perf/util/ |
D | hist.c | 2180 struct rb_root_cached new_root = RB_ROOT_CACHED; in resort_filtered_entry() local 2209 resort_filtered_entry(&new_root, h); in resort_filtered_entry() 2212 he->hroot_out = new_root; in resort_filtered_entry() 2218 struct rb_root_cached new_root = RB_ROOT_CACHED; in hists__filter_hierarchy() local 2276 resort_filtered_entry(&new_root, h); in hists__filter_hierarchy() 2279 hists->entries = new_root; in hists__filter_hierarchy()
|
/Linux-v5.15/mm/ |
D | rmap.c | 241 struct anon_vma *new_root = anon_vma->root; in lock_anon_vma_root() local 242 if (new_root != root) { in lock_anon_vma_root() 245 root = new_root; in lock_anon_vma_root()
|
/Linux-v5.15/include/linux/ |
D | syscalls.h | 441 asmlinkage long sys_pivot_root(const char __user *new_root,
|