On Tue, 27 Jan 2015 13:58:59 +0100 Peter Zijlstra <[email protected]> wrote:
> Not a bad idea, Cc'ed Steve who likes to look after the RT bits, > excessive quoting for him. Yep I do. > > index ade2958..48c9576 100644 > > --- a/kernel/sched/core.c > > +++ b/kernel/sched/core.c > > @@ -5652,6 +5652,8 @@ static int init_rootdomain(struct root_domain *rd) > > > > if (cpupri_init(&rd->cpupri) != 0) > > goto free_rto_mask; > > + > > + rd->cpupri.cpudl = &rd->cpudl; > > This is disgusting though; it breaks the cpuri abstraction. Why not pass > in the mask in the one place you actually need it? Yeah, probably should change cpupri_init() to take the rd->cpudl as a parameter. Rest looks good (ignoring Peter's other comment that he realized wasn't an issue). -- Steve -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

