Re: [Xen-devel] [PATCH v4 5/5] sched: Use the auto-generated list of schedulers

2016-01-09 Thread Andrew Cooper
On 08/01/16 21:22, Jonathan Creekmore wrote: > diff --git a/xen/common/schedule.c b/xen/common/schedule.c > index 2f98a48..91e53c1 100644 > --- a/xen/common/schedule.c > +++ b/xen/common/schedule.c > @@ -64,20 +64,10 @@ static void poll_timer_fn(void *data); > DEFINE_PER_CPU(struct schedule_data,

Re: [Xen-devel] [PATCH v4 5/5] sched: Use the auto-generated list of schedulers

2016-01-09 Thread Jonathan Creekmore
Andrew Cooper writes: > On 08/01/16 21:22, Jonathan Creekmore wrote: >> diff --git a/xen/common/schedule.c b/xen/common/schedule.c >> index 2f98a48..91e53c1 100644 >> --- a/xen/common/schedule.c >> +++ b/xen/common/schedule.c >> @@ -64,20 +64,10 @@ static void poll_timer_fn(void *data); >>

[Xen-devel] [PATCH v4 5/5] sched: Use the auto-generated list of schedulers

2016-01-08 Thread Jonathan Creekmore
Instead of having a manually-curated list of schedulers, use the array that was auto-generated simply by compiling in the scheduler files as the sole source of truth of the available schedulers. CC: George Dunlap CC: Dario Faggioli