On 14.09.2019 10:52, Juergen Gross wrote: > @@ -1673,8 +1676,10 @@ static void schedule(void) > * switch, else lost_records resume will not work properly. > */ > > - ASSERT(!next->is_running); > + ASSERT(!next->sched_unit->is_running); > next->is_running = 1; > + next->sched_unit->is_running = 1;
Nit: The new field is of type bool, and hence you should write true and false into it. This may look odd next to the 1 above, but by the end of the series the two won't sit next to each other anymore. Jan _______________________________________________ Xen-devel mailing list [email protected] https://lists.xenproject.org/mailman/listinfo/xen-devel
