Home
last modified time | relevance | path

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

/linux-4.4.14/arch/s390/numa/
Dtoptree.h35 #define toptree_for_each_child(child, ptree) \ argument
36 list_for_each_entry(child, &ptree->children, sibling)
38 #define toptree_for_each_child_safe(child, ptmp, ptree) \ argument
39 list_for_each_entry_safe(child, ptmp, &ptree->children, sibling)
41 #define toptree_is_last(ptree) \ argument
42 ((ptree->parent == NULL) || \
43 (ptree->parent->children.prev == &ptree->sibling))
45 #define toptree_for_each(ptree, cont, ttype) \ argument
46 for (ptree = toptree_first(cont, ttype); \
47 ptree != NULL; \
[all …]