> +static unsigned int cgroup_tc_classid(struct task_struct *tsk)
quoted text > +{
> + unsigned int tc_classid;
> +
> + rcu_read_lock();
> + tc_classid = container_of(task_subsys_state(tsk, tc_subsys_id),
trivial: 2 spaces ^^
quoted text > + struct tc_cgroup, css)->classid;
> + rcu_read_unlock();
> + return tc_classid;
> +}
> +
...
quoted text > +static int tc_write_u64(struct cgroup *cgrp, struct cftype *cft, u64 val)
> +{
> + struct tc_cgroup *tc = cgroup_to_tc(cgrp);
> +
> + cgroup_lock();
> + if (cgroup_is_removed(cgrp)) {
> + cgroup_unlock();
> + return -ENODEV;
> + }
> +
You may use cgroup_lock_live_group():
if (cgroup_lock_live_group(cgrp0))
return -ENODEV;
quoted text > + tc->classid = (unsigned int) (val & 0xffffffff);
> + cgroup_unlock();
> + return 0;
> +}
> +
> +static u64 tc_read_u64(struct cgroup *cont, struct cftype *cft)
'cont', 'cgrp' and 'cgroup' are used, it's better to make it consistent
to use 'cgrp' (or 'cgroup') only.
quoted text > +{
> + struct tc_cgroup *tc = cgroup_to_tc(cont);
> + return tc->classid;
> +}
--
unsubscribe notice To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Messages in current thread:
Re: [PATCH 1/2] Traffic control cgroups subsystem , Li Zefan , (Thu Aug 21, 10:11 pm)