RE: [PATCH] xen/sched: fix arinc653 to not use variables across cpupools

2025-03-13 Thread Nathan Studer
+Jeff On 13/03/25 07:44, Andrew Cooper wrote: > On 13/03/2025 9:31 am, Juergen Gross wrote: > > a653sched_do_schedule() is using two function local static variables, > > which is resulting in bad behavior when using more than one cpupool > > with the arinc653 scheduler. > > > > Fix that by moving

Re: [PATCH] xen/sched: fix arinc653 to not use variables across cpupools

2025-03-13 Thread Andrew Cooper
On 13/03/2025 9:31 am, Juergen Gross wrote: > a653sched_do_schedule() is using two function local static variables, > which is resulting in bad behavior when using more than one cpupool > with the arinc653 scheduler. > > Fix that by moving those variables to the scheduler private data. > > Fixes: 2