On 15/03/21 15:24, Vincent Guittot wrote: >> @@ -113,6 +113,13 @@ int __weak arch_asym_cpu_priority(int cpu) >> */ >> #define fits_capacity(cap, max) ((cap) * 1280 < (max) * 1024) >> >> +/* >> + * The margin used when comparing CPU capacities. >> + * is 'cap1' noticeably greater than 'cap2' >> + * >> + * (default: ~5%) >> + */ >> +#define capacity_greater(cap1, cap2) ((cap1) * 1024 > (cap2) * 1078) > > defined but not used. > > Should be merged with next patch which start to use it >
Will do.

