Searched refs:subtree (Results 1 - 9 of 9) sorted by relevance

/linux-master/security/apparmor/include/
H A Dperms.h73 u32 subtree; /* allow perm on full subtree only when allow is set */ member in struct:aa_perms
119 accum->subtree |= addend->subtree & ~addend->deny;
146 accum->subtree &= addend->subtree & ~accum->deny;
/linux-master/lib/
H A Drbtree_test.c225 u32 subtree, max = node->val; local
227 subtree = rb_entry(node->rb.rb_left, struct test_node,
229 if (max < subtree)
230 max = subtree;
233 subtree = rb_entry(node->rb.rb_right, struct test_node,
235 if (max < subtree)
236 max = subtree;
/linux-master/tools/testing/selftests/kvm/lib/
H A Dsparsebit.c273 * subtree and duplicates the bit settings to the newly allocated nodes.
274 * Returns the newly allocated copy of subtree.
276 static struct node *node_copy_subtree(const struct node *subtree) argument
280 /* Duplicate the node at the root of the subtree */
287 root->idx = subtree->idx;
288 root->mask = subtree->mask;
289 root->num_after = subtree->num_after;
292 if (subtree->left) {
293 root->left = node_copy_subtree(subtree->left);
297 if (subtree
[all...]
/linux-master/net/ipv6/
H A Dip6_fib.c68 * affected subtree. This allows for cached routes to be asynchronously
1421 if (!rcu_access_pointer(fn->subtree)) {
1425 * Create subtree.
1429 * sfn[subtree root]
1434 /* Create subtree root node */
1444 /* Now add the first leaf node to new subtree */
1461 /* Now link new subtree to main tree */
1463 rcu_assign_pointer(fn->subtree, sfn);
1538 * route to it in both subtree creation failure and fib6_add_rt2node()
1592 struct fib6_node *subtree local
1735 struct fib6_node *subtree = FIB6_SUBTREE(fn); local
[all...]
/linux-master/include/net/
H A Dip6_fib.h72 struct fib6_node __rcu *subtree; member in struct:fib6_node
116 #define FIB6_SUBTREE(fn) (rcu_dereference_protected((fn)->subtree, 1))
/linux-master/scripts/dtc/
H A Ddtx_diff44 If DTx is a directory, it is treated as a DT subtree, such as
/linux-master/fs/ext4/
H A Dindirect.c580 * Count number blocks in a subtree under 'partial'. At each
582 * current offset and then descend into the subtree only
798 * a) free the subtree starting from *@top
1057 * released. Now let this top-of-subtree go.
1353 /* Free top, but only if partial2 isn't its subtree. */
1357 int subtree = 1; local
1361 subtree = 0;
1366 if (!subtree) {
/linux-master/security/apparmor/
H A Dpolicy_unpack.c654 aa_unpack_u32(e, &perm->subtree, NULL) &&
1185 if (perm->subtree & ~perm->allow)
/linux-master/fs/
H A Dnamespace.c2920 * specified subtree. Such references can act as pins for mount namespaces
2924 static bool check_for_nsfs_mounts(struct mount *subtree) argument
2930 for (p = subtree; p; p = next_mnt(p, subtree))
4067 * a mount subtree.

Completed in 178 milliseconds