Pls, ignore this patch. On Thu, Dec 27, 2018 at 10:17:21AM -0800, Andrei Vagin wrote: > Currently, we get refcnt twice if a new root isn't created. > > percpu_ref_tryget_live() is called and then cgroup_get() is called too. > > Fixes: aea3f2676c83 ("kernfs, sysfs, cgroup, intel_rdt: Support fs_context") > Signed-off-by: Andrei Vagin <avagin@xxxxxxxxx> > --- > kernel/cgroup/cgroup-v1.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/kernel/cgroup/cgroup-v1.c b/kernel/cgroup/cgroup-v1.c > index d5ae888b8c57..5ae9b3db8bfd 100644 > --- a/kernel/cgroup/cgroup-v1.c > +++ b/kernel/cgroup/cgroup-v1.c > @@ -1280,8 +1280,8 @@ int cgroup1_get_tree(struct fs_context *fc) > mutex_lock(&cgroup_mutex); > percpu_ref_reinit(&root->cgrp.self.refcnt); > mutex_unlock(&cgroup_mutex); > + cgroup_get(&root->cgrp); > } > - cgroup_get(&root->cgrp); > > /* > * If @pinned_sb, we're reusing an existing root and holding an > -- > 2.17.2 >