> +static void cgroup_lock_hierarchy(struct cgroupfs_root *root)
> +{
> +     /* We need to take each hierarchy_mutex in a consistent order */

This comment is not so clear. Do you mean for_each_subsys() can't be
used here?

But this function is used in cgroup.c internally, and always called
with cgroup_lock held, so it's OK to use for_each_subsys().

> +     int i;
> +
> +     for (i = 0; i < CGROUP_SUBSYS_COUNT; i++) {
> +             struct cgroup_subsys *ss = subsys[i];
> +             if (ss->root == root)
> +                     mutex_lock_nested(&ss->hierarchy_mutex, i);
> +     }
> +}

_______________________________________________
Containers mailing list
[EMAIL PROTECTED]
https://lists.linux-foundation.org/mailman/listinfo/containers

_______________________________________________
Devel mailing list
Devel@openvz.org
https://openvz.org/mailman/listinfo/devel

Reply via email to