Skip to content
Commit d7495343 authored by Tejun Heo's avatar Tejun Heo
Browse files

cgroup: fix incorrect WARN_ON_ONCE() in cgroup_setup_root()



74321038 ("cgroup: use cgrp->kn->id as the cgroup ID") added WARN
which triggers if cgroup_id(root_cgrp) is not 1.  This is fine on
64bit ino archs but on 32bit archs cgroup ID is ((gen << 32) | ino)
and gen starts at 1, so the root id is 0x1_0000_0001 instead of 1
always triggering the WARN.

What we wanna make sure is that the ino part is 1.  Fix it.

Reported-by: default avatarNaresh Kamboju <naresh.kamboju@linaro.org>
Fixes: 74321038 ("cgroup: use cgrp->kn->id as the cgroup ID")
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent 74321038
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment