Re: [PATCH 2/6] sched/fair: Check whether active load balance is needed in busiest group

From: Tim Chen
Date: Fri May 05 2023 - 18:29:56 EST


On Fri, 2023-05-05 at 14:16 +0200, Peter Zijlstra wrote:
>
> > +static inline bool asym_active_balance_busiest(struct lb_env *env, struct sd_lb_stats *sds)
> > +{
> > + /*
> > + * Don't balance to a group without spare capacity.
> > + *
> > + * Skip non asymmetric sched group balancing. That check
> > + * is handled by code path handling imbalanced load between
> > + * similar groups.
> > + */
> > + if (env->idle == CPU_NOT_IDLE ||
> > + sds->local_stat.group_type != group_has_spare ||
> > + !asymmetric_groups(sds->local, sds->busiest))
> > + return false;
> > +
> > + /*
> > + * For SMT source group, pull when there are two or more
> > + * tasks over-utilizing a core.
> > + */
> > + if (sds->busiest->flags & SD_SHARE_CPUCAPACITY &&
> > + sds->busiest_stat.sum_h_nr_running > 1)
> > + return true;
> > +
> > + return false;
> > +}
>
> This all seems to be mixing two 'asymmetric' things in the 'asym'
> namespace :/ One being the SD_ASYM_PACKING and then the above SMT/no-SMT
> core thing.

Yeah, I am kind of abusing the "asymmetric" word. However, the above
code does try to set things up for the aysm_active_balance() code
later. Any suggestion on better names for "asymmetric_groups()" and
and "asym_active_balance_busiest()"? 

Perhaps "hybrid_groups()" and "hybrid_active_balance_busiest()"?

>
> > +
> > /**
> > * calculate_imbalance - Calculate the amount of imbalance present within the
> > * groups of a given sched_domain during load balance.
> > @@ -10164,6 +10200,12 @@ static inline void calculate_imbalance(struct lb_env *env, struct sd_lb_stats *s
> > return;
> > }
> >
> > + if (asym_active_balance_busiest(env, sds)) {
> > + env->migration_type = migrate_task;
> > + env->imbalance = 1;
> > + return;
> > + }
> > +
> > if (busiest->group_weight == 1 || sds->prefer_sibling) {
> > unsigned int nr_diff = busiest->sum_nr_running;
> > /*
> > @@ -10371,6 +10413,9 @@ static struct sched_group *find_busiest_group(struct lb_env *env)
> > */
> > goto out_balanced;
> >
> > + if (asym_active_balance_busiest(env, &sds))
> > + goto force_balance;
> > +
> > if (busiest->group_weight > 1 &&
> > local->idle_cpus <= (busiest->idle_cpus + 1))
> > /*
>
> All the cases here have a nice (CodingStyle busting) comment, perhaps
> add the missing {} when hou add the comment?

Sure, will add a comment here.

Tim