Commit da7f3ffc authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

cg: Add debug printing on subset mismatch

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@virtuozzo.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
parent ffcdeb7d
......@@ -866,6 +866,9 @@ static int dump_sets(CgroupEntry *cg)
if (!cg_set_compare(set, &root_cgset->ctls, CGCMP_ISSUB)) {
pr_err("Set %d is not subset of %d\n",
set->id, root_cgset->id);
list_for_each_entry(ctl, &set->ctls, l)
pr_info(" `- %s of %s\n", ctl->name, ctl->path);
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment