Re: [PATCH v3 4/5] sched/pelt: Add a new runnable average signal

From: Dietmar Eggemann
Date: Fri Feb 21 2020 - 04:45:30 EST


On 19/02/2020 13:55, Vincent Guittot wrote:

[...]

> +static inline long se_runnable(struct sched_entity *se)
> +{

Why returning long here? sched_entity::runnable_weight is unsigned long
but could be unsigned int (cfs_rq::h_nr_running is unsigned int).

___update_load_sum() has 'unsigned long runnable' as parameter.