Re: [RFC][mm] [PATCH 4/4] Memory cgroup hierarchy feature selector(v2)

From: Li Zefan
Date: Sat Nov 08 2008 - 04:42:30 EST


> +static int mem_cgroup_hierarchy_write(struct cgroup *cont, struct cftype *cft,
> + u64 val)
> +{
> + int retval = 0;
> + struct mem_cgroup *mem = mem_cgroup_from_cont(cont);
> +
> + if (val == 1) {
> + if (list_empty(&cont->children))

cgroup_lock should be held before checking cont->children.

> + mem->use_hierarchy = val;
> + else
> + retval = -EBUSY;
> + } else if (val == 0) {

And code duplicate.

> + if (list_empty(&cont->children))
> + mem->use_hierarchy = val;
> + else
> + retval = -EBUSY;
> + } else
> + retval = -EINVAL;
> +
> + return retval;
> +}
> +

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/