On 29.01.2024 18:17, Carlo Nonato wrote: > --- a/xen/include/xen/sched.h > +++ b/xen/include/xen/sched.h > @@ -626,6 +626,11 @@ struct domain > > /* Holding CDF_* constant. Internal flags for domain creation. */ > unsigned int cdf; > + > +#ifdef CONFIG_LLC_COLORING > + unsigned const int *llc_colors; > + unsigned int num_llc_colors; > +#endif > };
Btw, at this point flipping the order of the two fields will be more efficient for 64-bit architectures (consuming a padding hole rather than adding yet another one). Jan