/Linux-v4.19/drivers/fmc/ |
D | fmc-sdb.c | 52 arr->subtree = kcalloc(n, sizeof(arr->subtree[0]), GFP_KERNEL); in __fmc_scan_sdb_tree() 53 if (!arr->record || !arr->subtree) { in __fmc_scan_sdb_tree() 55 kfree(arr->subtree); in __fmc_scan_sdb_tree() 71 arr->subtree[i] = ERR_PTR(-ENODEV); in __fmc_scan_sdb_tree() 81 arr->subtree[i] = sub; /* may be error */ in __fmc_scan_sdb_tree() 112 if (IS_ERR(arr->subtree[i])) in __fmc_sdb_free() 114 __fmc_sdb_free(arr->subtree[i]); in __fmc_sdb_free() 117 kfree(arr->subtree); in __fmc_sdb_free() 200 if (!IS_ERR(tree->subtree[i])) in fmc_find_sdb_device() 201 res = fmc_find_sdb_device(tree->subtree[i], in fmc_find_sdb_device()
|
D | fmc-debug.c | 80 if (IS_ERR(arr->subtree[i])) { in fmc_sdb_dump_recursive() 82 PTR_ERR(arr->subtree[i])); in fmc_sdb_dump_recursive() 85 fmc_sdb_dump_recursive(fmc, s, arr->subtree[i]); in fmc_sdb_dump_recursive()
|
/Linux-v4.19/include/linux/ |
D | fmc-sdb.h | 32 struct sdb_array **subtree; /* only valid for bridge items */ member
|
/Linux-v4.19/Documentation/ |
D | rbtree.txt | 234 the contents of all nodes in the subtree rooted at N. This data can 267 - A copy callback, which copies the augmented value for a given subtree 268 to a newly assigned subtree root. 271 subtree to a newly assigned subtree root AND recomputes the augmented 272 information for the former subtree root. 318 * Some nodes in left subtree satisfy Cond2.
|
D | vfio.txt | 314 subtree that can be treated as a unit for the purposes of partitioning and
|
/Linux-v4.19/tools/testing/selftests/kvm/lib/ |
D | sparsebit.c | 277 static struct node *node_copy_subtree(struct node *subtree) in node_copy_subtree() argument 288 root->idx = subtree->idx; in node_copy_subtree() 289 root->mask = subtree->mask; in node_copy_subtree() 290 root->num_after = subtree->num_after; in node_copy_subtree() 293 if (subtree->left) { in node_copy_subtree() 294 root->left = node_copy_subtree(subtree->left); in node_copy_subtree() 298 if (subtree->right) { in node_copy_subtree() 299 root->right = node_copy_subtree(subtree->right); in node_copy_subtree()
|
/Linux-v4.19/net/ipv6/ |
D | ip6_fib.c | 1236 if (!rcu_access_pointer(fn->subtree)) { in fib6_add() 1278 rcu_assign_pointer(fn->subtree, sfn); in fib6_add() 1403 struct fib6_node *subtree = FIB6_SUBTREE(fn); in fib6_node_lookup_1() local 1405 if (subtree || fn->fn_flags & RTN_RTINFO) { in fib6_node_lookup_1() 1416 if (subtree) { in fib6_node_lookup_1() 1418 sfn = fib6_node_lookup_1(subtree, in fib6_node_lookup_1() 1545 struct fib6_node *subtree = FIB6_SUBTREE(fn); in fib6_locate() local 1547 if (subtree) { in fib6_locate() 1548 fn = fib6_locate_1(subtree, saddr, src_len, in fib6_locate() 1668 RCU_INIT_POINTER(pn->subtree, NULL); in fib6_repair_tree()
|
/Linux-v4.19/include/net/ |
D | ip6_fib.h | 76 struct fib6_node __rcu *subtree; member 95 #define FIB6_SUBTREE(fn) (rcu_dereference_protected((fn)->subtree, 1))
|
/Linux-v4.19/Documentation/core-api/ |
D | assoc_array.rst | 441 the metadata key prefix must be in the subtree that the metadata pointer points 486 When the number of objects in the subtree rooted at a node falls to 16 or 487 fewer, then the subtree will be collapsed down to a single node - and this will 516 3. Insertion replacing part of a subtree that we haven't yet entered. This 517 may involve replacement of part of that subtree - but that won't affect 535 could see the new node. The entire collapsed subtree is thrown away
|
/Linux-v4.19/Documentation/sound/designs/ |
D | procfile.rst | 14 Each card has its subtree cardX, where X is from 0 to 7. The 70 this subtree is described later.
|
/Linux-v4.19/Documentation/filesystems/ |
D | sharedsubtree.txt | 21 that got mounted recently. Shared subtree semantics provide the necessary 30 Shared subtree provides four different flavors of mounts; struct vfsmount to be 422 then the subtree under the unbindable mount is pruned in the new 653 Q2. Why can't the shared subtree be implemented using exportfs? 656 shared subtree can do. I cannot imagine a way to implement the 662 locations within the same subtree. 664 if one rbind mounts a tree within the same subtree 'n' times
|
D | vfs.txt | 167 ->mount() may choose to return a subtree of existing filesystem - it 1127 past and construct the subtree there. 0 should be returned to let the
|
D | proc.txt | 1038 in the controller specific subtree.
|
/Linux-v4.19/Documentation/filesystems/nfs/ |
D | Exporting | 68 subtree is successfully reconnected to root. Until then dentries 69 in such subtree are retained only as long as there are references;
|
/Linux-v4.19/fs/ext4/ |
D | indirect.c | 1339 int subtree = 1; in ext4_ind_remove_space() local 1343 subtree = 0; in ext4_ind_remove_space() 1348 if (!subtree) { in ext4_ind_remove_space()
|
/Linux-v4.19/Documentation/admin-guide/ |
D | cgroup-v2.rst | 243 a subtree while still maintaining the common resource domain for them. 251 of a threaded subtree, that is, the nearest ancestor which is not 253 serves as the resource domain for the entire subtree. 255 Inside a threaded subtree, threads of a process can be put in 261 consumptions of the subtree, it is considered to have internal 269 domain, a domain which is serving as the domain of a threaded subtree, 311 subtree. 314 subtree, and, while the threads can be scattered across the subtree, 317 processes in the subtree and is not readable in the subtree proper. 318 However, "cgroup.procs" can be written to from anywhere in the subtree [all …]
|
/Linux-v4.19/scripts/dtc/ |
D | dtx_diff | 41 If DTx is a directory, it is treated as a DT subtree, such as
|
/Linux-v4.19/Documentation/acpi/ |
D | namespace.txt | 192 sysfs as directories in the subtree under /sys/devices/LNXSYSTM:00. The
|
/Linux-v4.19/drivers/staging/unisys/Documentation/ |
D | overview.txt | 176 Every active visorbus device will have a sysfs subtree under:
|
/Linux-v4.19/Documentation/cgroup-v1/ |
D | blkio-controller.txt | 113 to the whole subtree while all statistics are local to the IOs
|
/Linux-v4.19/Documentation/filesystems/caching/ |
D | netfs-api.txt | 842 There is no direct way to invalidate an index subtree. To do this, the caller
|
/Linux-v4.19/Documentation/networking/ |
D | can.rst | 1427 - Andrey Volkov (kernel subtree structure, ioctls, MSCAN driver)
|