/linux-4.1.27/drivers/md/persistent-data/ |
D | dm-bitset.c | 44 bool default_value, dm_block_t *new_root) in dm_bitset_resize() argument 52 &value, new_root); in dm_bitset_resize() 63 dm_block_t *new_root) in dm_bitset_flush() argument 75 &value, new_root); in dm_bitset_flush() 105 uint32_t index, dm_block_t *new_root) in get_array_entry() argument 114 r = dm_bitset_flush(info, root, new_root); in get_array_entry() 123 uint32_t index, dm_block_t *new_root) in dm_bitset_set_bit() argument 128 r = get_array_entry(info, root, index, new_root); in dm_bitset_set_bit() 140 uint32_t index, dm_block_t *new_root) in dm_bitset_clear_bit() argument 145 r = get_array_entry(info, root, index, new_root); in dm_bitset_clear_bit() [all …]
|
D | dm-bitset.h | 93 int dm_bitset_empty(struct dm_disk_bitset *info, dm_block_t *new_root); 107 bool default_value, dm_block_t *new_root); 125 uint32_t index, dm_block_t *new_root); 138 uint32_t index, dm_block_t *new_root); 152 uint32_t index, dm_block_t *new_root, bool *result); 162 dm_block_t *new_root);
|
D | dm-btree.h | 116 uint64_t *keys, void *value, dm_block_t *new_root) 125 uint64_t *keys, void *value, dm_block_t *new_root, 135 uint64_t *keys, dm_block_t *new_root);
|
D | dm-array.h | 111 const void *value, dm_block_t *new_root) 149 uint32_t index, const void *value, dm_block_t *new_root)
|
D | dm-array.c | 643 const void *value, dm_block_t *new_root) in array_resize() argument 649 *new_root = root; in array_resize() 669 *new_root = resize.root; in array_resize() 675 const void *value, dm_block_t *new_root) in dm_array_resize() argument 678 int r = array_resize(info, root, old_size, new_size, value, new_root); in dm_array_resize() 719 uint32_t index, const void *value, dm_block_t *new_root) in array_set_value() argument 736 *new_root = root; in array_set_value() 760 uint32_t index, const void *value, dm_block_t *new_root) in dm_array_set_value() argument 765 r = array_set_value(info, root, index, value, new_root); in dm_array_set_value()
|
D | dm-btree.c | 659 uint64_t *keys, void *value, dm_block_t *new_root, in insert() argument 737 *new_root = shadow_root(&spine); in insert() 750 uint64_t *keys, void *value, dm_block_t *new_root) in dm_btree_insert() argument 753 return insert(info, root, keys, value, new_root, NULL); in dm_btree_insert() 758 uint64_t *keys, void *value, dm_block_t *new_root, in dm_btree_insert_notify() argument 762 return insert(info, root, keys, value, new_root, inserted); in dm_btree_insert_notify()
|
D | dm-btree-remove.c | 553 uint64_t *keys, dm_block_t *new_root) in dm_btree_remove() argument 586 *new_root = shadow_root(&spine); in dm_btree_remove()
|
/linux-4.1.27/fs/ |
D | fs_struct.c | 56 void chroot_fs_refs(const struct path *old_root, const struct path *new_root) in chroot_fs_refs() argument 70 hits += replace_path(&fs->root, old_root, new_root); in chroot_fs_refs() 71 hits += replace_path(&fs->pwd, old_root, new_root); in chroot_fs_refs() 75 path_get(new_root); in chroot_fs_refs()
|
D | namespace.c | 2968 SYSCALL_DEFINE2(pivot_root, const char __user *, new_root, in SYSCALL_DEFINE2() argument 2979 error = user_path_dir(new_root, &new); in SYSCALL_DEFINE2()
|
/linux-4.1.27/fs/afs/ |
D | cell.c | 228 struct afs_cell *old_root, *new_root; in afs_cell_init() local 248 new_root = afs_cell_create(rootcell, strlen(rootcell), cp, false); in afs_cell_init() 249 if (IS_ERR(new_root)) { in afs_cell_init() 250 _leave(" = %ld", PTR_ERR(new_root)); in afs_cell_init() 251 return PTR_ERR(new_root); in afs_cell_init() 257 afs_cell_root = new_root; in afs_cell_init()
|
/linux-4.1.27/lib/ |
D | assoc_array.c | 1494 struct assoc_array_ptr *new_root, *new_parent, **new_ptr_pp; in assoc_array_gc() local 1512 new_root = new_parent = NULL; in assoc_array_gc() 1513 new_ptr_pp = &new_root; in assoc_array_gc() 1661 new_root = ptr; in assoc_array_gc() 1678 new_root = ptr; in assoc_array_gc() 1711 new_root = assoc_array_node_to_ptr(new_n); in assoc_array_gc() 1741 edit->set[0].to = new_root; in assoc_array_gc() 1748 assoc_array_destroy_subtree(new_root, edit->ops); in assoc_array_gc()
|
/linux-4.1.27/fs/btrfs/ |
D | super.c | 849 struct btrfs_root *new_root; in get_default_root() local 892 new_root = fs_info->fs_root; in get_default_root() 900 new_root = btrfs_read_fs_root_no_name(fs_info, &location); in get_default_root() 901 if (IS_ERR(new_root)) in get_default_root() 902 return ERR_CAST(new_root); in get_default_root() 907 ret = btrfs_orphan_cleanup(new_root); in get_default_root() 913 dir_id = btrfs_root_dirid(&new_root->root_item); in get_default_root() 919 inode = btrfs_iget(sb, &location, new_root, &new); in get_default_root()
|
D | ioctl.c | 443 struct btrfs_root *new_root; in create_subvol() local 554 new_root = btrfs_read_fs_root_no_name(root->fs_info, &key); in create_subvol() 555 if (IS_ERR(new_root)) { in create_subvol() 556 btrfs_abort_transaction(trans, root, PTR_ERR(new_root)); in create_subvol() 557 ret = PTR_ERR(new_root); in create_subvol() 561 btrfs_record_root_in_trans(trans, new_root); in create_subvol() 563 ret = btrfs_create_subvol_root(trans, new_root, root, new_dirid); in create_subvol() 570 mutex_lock(&new_root->objectid_mutex); in create_subvol() 571 new_root->highest_objectid = new_dirid; in create_subvol() 572 mutex_unlock(&new_root->objectid_mutex); in create_subvol() [all …]
|
D | inode.c | 5282 struct btrfs_root *new_root; in fixup_tree_root_location() local 5322 new_root = btrfs_read_fs_root_no_name(root->fs_info, location); in fixup_tree_root_location() 5323 if (IS_ERR(new_root)) { in fixup_tree_root_location() 5324 err = PTR_ERR(new_root); in fixup_tree_root_location() 5328 *sub_root = new_root; in fixup_tree_root_location() 5329 location->objectid = btrfs_root_dirid(&new_root->root_item); in fixup_tree_root_location() 8854 struct btrfs_root *new_root, in btrfs_create_subvol_root() argument 8862 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, in btrfs_create_subvol_root() 8875 err = btrfs_subvol_inherit_props(trans, new_root, parent_root); in btrfs_create_subvol_root() 8877 btrfs_err(new_root->fs_info, in btrfs_create_subvol_root() [all …]
|
D | relocation.c | 4627 struct btrfs_root *new_root; local 4645 new_root = pending->snap; 4647 new_root->root_key.objectid); 4653 new_root->reloc_root = reloc_root;
|
D | ctree.c | 666 struct extent_buffer *new_root, gfp_t flags, in tree_mod_log_insert_root() argument 702 tm->index = new_root->start >> PAGE_CACHE_SHIFT; in tree_mod_log_insert_root()
|
D | ctree.h | 3910 struct btrfs_root *new_root,
|
/linux-4.1.27/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-4.1.27/drivers/infiniband/hw/nes/ |
D | nes_verbs.c | 1880 struct nes_root_vpbl *new_root, in root_256() argument 1887 new_root->pbl_vbase = pci_alloc_consistent(nesdev->pcidev, in root_256() 1888 512, &new_root->pbl_pbase); in root_256() 1890 if (new_root->pbl_vbase == NULL) in root_256() 1895 new_root->pbl_vbase[i].pa_low = in root_256() 1897 new_root->pbl_vbase[i].pa_high = in root_256() 1942 struct nes_root_vpbl new_root = { 0, NULL, NULL }; in nes_reg_mr() local 1997 if (root_256(nesdev, root_vpbl, &new_root, pbl_count_4k) == 1) { in nes_reg_mr() 1998 if (new_root.pbl_pbase != 0) in nes_reg_mr() 1999 root_vpbl = &new_root; in nes_reg_mr() [all …]
|
/linux-4.1.27/mm/ |
D | rmap.c | 224 struct anon_vma *new_root = anon_vma->root; in lock_anon_vma_root() local 225 if (new_root != root) { in lock_anon_vma_root() 228 root = new_root; in lock_anon_vma_root()
|
/linux-4.1.27/arch/s390/kernel/ |
D | compat_wrapper.c | 148 COMPAT_SYSCALL_WRAP2(pivot_root, const char __user *, new_root, const char __user *, put_old);
|
/linux-4.1.27/include/linux/ |
D | syscalls.h | 471 asmlinkage long sys_pivot_root(const char __user *new_root,
|