* Walks up the tree from 'set' to find the root. Returns the root * referenced. */
| 181 | * referenced. |
| 182 | */ |
| 183 | static struct cpuset * |
| 184 | cpuset_refroot(struct cpuset *set) |
| 185 | { |
| 186 | |
| 187 | return (cpuset_ref(cpuset_getroot(set))); |
| 188 | } |
| 189 | |
| 190 | /* |
| 191 | * Find the first non-anonymous set starting from 'set'. Returns this set |
no test coverage detected