[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <48845651.4010904@cn.fujitsu.com>
Date: Mon, 21 Jul 2008 17:26:41 +0800
From: Li Zefan <lizf@...fujitsu.com>
To: Ranjit Manomohan <ranjitm@...gle.com>
CC: linux-kernel@...r.kernel.org, netdev@...r.kernel.org,
menage@...gle.com
Subject: Re: [PATCH 1/2] Traffic control cgroups subsystem
Ranjit Manomohan wrote:
> This patch adds a traffic control cgroup subsystem that is used
> to tag all packets originating from tasks in this cgroup with a
> specific identifier (tc_classid).
>
> Signed-off-by: Ranjit Manomohan <ranjitm@...gle.com>
>
> ---
>
> diff --git a/include/linux/cgroup_subsys.h b/include/linux/cgroup_subsys.h
> index e287745..4b12372 100644
> --- a/include/linux/cgroup_subsys.h
> +++ b/include/linux/cgroup_subsys.h
> @@ -48,3 +48,9 @@ SUBSYS(devices)
> #endif
>
> /* */
> +
> +#ifdef CONFIG_CGROUP_TC
> +SUBSYS(tc)
> +#endif
> +
seems tc is not a good name... I won't know it stands for traffic-control if I
didn't know beforehand.
> +int cgroup_tc_classid(struct task_struct *tsk)
> +{
> + rcu_read_lock();
> + return container_of(task_subsys_state(tsk, tc_subsys_id),
> + struct tc_cgroup, css)->classid;
> + rcu_read_unlock();
How do you unlock after return ;)
> +}
> +
> +static struct cgroup_subsys_state *tc_create(struct cgroup_subsys *ss,
> + struct cgroup *cgroup)
> +{
> + struct tc_cgroup *tc_cgroup;
> +
> + tc_cgroup = kzalloc(sizeof(*tc_cgroup), GFP_KERNEL);
> +
The 'if (!tc_cgroup)' below should be here.
> + /* Copy parent's class id if present */
> + if (cgroup->parent)
> + tc_cgroup->classid = cgroup_to_tc(cgroup->parent)->classid;
> +
> + if (!tc_cgroup)
> + return ERR_PTR(-ENOMEM);
> + return &tc_cgroup->css;
> +}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists