Re: [PATCH 4/5] sched/arinc653: Reorganize function definition order

2020-09-18 Thread Jeff Kubascik
On 9/17/2020 10:16 AM, Dario Faggioli wrote: >On Thu, 2020-09-17 at 10:12 +0200, Jan Beulich wrote: >> On 16.09.2020 20:18, Jeff Kubascik wrote: >>> @@ -517,27 +516,35 @@ static const struct scheduler >>> sched_arinc653_def = { >>> .sched_id = XEN_SCHEDULER_ARINC653, >>>

Re: [PATCH 4/5] sched/arinc653: Reorganize function definition order

2020-09-18 Thread Jeff Kubascik
On 9/17/2020 10:17 AM, Andrew Cooper wrote: > On 17/09/2020 09:12, Jan Beulich wrote: >> On 16.09.2020 20:18, Jeff Kubascik wrote: >>> @@ -517,27 +516,35 @@ static const struct scheduler sched_arinc653_def = { >>> .sched_id = XEN_SCHEDULER_ARINC653, >>> .sched_data = NULL, >>>

Re: [PATCH 4/5] sched/arinc653: Reorganize function definition order

2020-09-18 Thread Jeff Kubascik
On 9/17/2020 10:17 AM, Andrew Cooper wrote: > On 17/09/2020 09:12, Jan Beulich wrote: >> On 16.09.2020 20:18, Jeff Kubascik wrote: >>> @@ -517,27 +516,35 @@ static const struct scheduler sched_arinc653_def = { >>> .sched_id = XEN_SCHEDULER_ARINC653, >>> .sched_data = NULL, >>>

Re: [PATCH 4/5] sched/arinc653: Reorganize function definition order

2020-09-17 Thread Andrew Cooper
On 17/09/2020 09:12, Jan Beulich wrote: > On 16.09.2020 20:18, Jeff Kubascik wrote: >> @@ -517,27 +516,35 @@ static const struct scheduler sched_arinc653_def = { >> .sched_id = XEN_SCHEDULER_ARINC653, >> .sched_data = NULL, >> >> +.global_init= NULL, >> .init

Re: [PATCH 4/5] sched/arinc653: Reorganize function definition order

2020-09-17 Thread Dario Faggioli
On Thu, 2020-09-17 at 10:12 +0200, Jan Beulich wrote: > On 16.09.2020 20:18, Jeff Kubascik wrote: > > @@ -517,27 +516,35 @@ static const struct scheduler > > sched_arinc653_def = { > > .sched_id = XEN_SCHEDULER_ARINC653, > > .sched_data = NULL, > > > > +.global_init=

Re: [PATCH 4/5] sched/arinc653: Reorganize function definition order

2020-09-17 Thread Jan Beulich
On 16.09.2020 20:18, Jeff Kubascik wrote: > @@ -517,27 +516,35 @@ static const struct scheduler sched_arinc653_def = { > .sched_id = XEN_SCHEDULER_ARINC653, > .sched_data = NULL, > > +.global_init= NULL, > .init = a653sched_init, > .deinit

[PATCH 4/5] sched/arinc653: Reorganize function definition order

2020-09-16 Thread Jeff Kubascik
This change is in preperation for an overhaul of the arinc653 module. It groups functions in a logical order and fills out the sched_arinc653_def structure. There are no functional changes. Signed-off-by: Jeff Kubascik --- xen/common/sched/arinc653.c | 239 +++-