Re: [PATCH 1/3] sched: use EDF to schedule groups

From: Peter Zijlstra
Date: Thu Feb 25 2010 - 16:43:53 EST


On Tue, 2010-02-23 at 19:56 +0100, Fabio Checconi wrote:
> @@ -36,7 +29,8 @@ static inline struct task_struct *rt_task_of(struct sched_rt_entity *rt_se)
>
> static inline struct rq *rq_of_rt_rq(struct rt_rq *rt_rq)
> {
> - return container_of(rt_rq, struct rq, rt);
> + struct rt_root_rq *rt = container_of(rt_rq, struct rt_root_rq, rt_rq);
> + return container_of(rt, struct rq, rt);
> }

I think you can write that double container_of() as a single:

return container_of(rt_rq, struct rq, rt.rt_rq);



--
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/