Re: [Xen-devel] [PATCH 1/3] xen: Some code motion to avoid having to do forward-declaration

2016-07-18 Thread George Dunlap
On 18/07/16 10:58, Dario Faggioli wrote: > On Fri, 2016-07-15 at 19:02 +0100, George Dunlap wrote: >> For sched_credit2, move the vcpu insert / remove / free functions >> near the domain >> insert / remove / alloc / free functions (and after cpu_pick). >> >> For sched_rt, move rt_cpu_pick() further

Re: [Xen-devel] [PATCH 1/3] xen: Some code motion to avoid having to do forward-declaration

2016-07-18 Thread Dario Faggioli
On Fri, 2016-07-15 at 19:02 +0100, George Dunlap wrote: > For sched_credit2, move the vcpu insert / remove / free functions > near the domain > insert / remove / alloc / free functions (and after cpu_pick). > > For sched_rt, move rt_cpu_pick() further up. > > This is pure code motion; no function

Re: [Xen-devel] [PATCH 1/3] xen: Some code motion to avoid having to do forward-declaration

2016-07-16 Thread Meng Xu
On Fri, Jul 15, 2016 at 2:02 PM, George Dunlap wrote: > For sched_credit2, move the vcpu insert / remove / free functions near the > domain > insert / remove / alloc / free functions (and after cpu_pick). > > For sched_rt, move rt_cpu_pick() further up. > > This is pure code motion; no functional

[Xen-devel] [PATCH 1/3] xen: Some code motion to avoid having to do forward-declaration

2016-07-15 Thread George Dunlap
For sched_credit2, move the vcpu insert / remove / free functions near the domain insert / remove / alloc / free functions (and after cpu_pick). For sched_rt, move rt_cpu_pick() further up. This is pure code motion; no functional change. Signed-off-by: George Dunlap --- CC: Dario Faggioli CC: