[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <202408221018.b3g39QVN-lkp@intel.com>
Date: Thu, 22 Aug 2024 10:42:06 +0800
From: kernel test robot <lkp@...el.com>
To: Hongyan Xia <hongyan.xia2@....com>, Ingo Molnar <mingo@...hat.com>,
Peter Zijlstra <peterz@...radead.org>,
Juri Lelli <juri.lelli@...hat.com>,
Vincent Guittot <vincent.guittot@...aro.org>,
Dietmar Eggemann <dietmar.eggemann@....com>,
Steven Rostedt <rostedt@...dmis.org>,
Ben Segall <bsegall@...gle.com>, Mel Gorman <mgorman@...e.de>,
Valentin Schneider <vschneid@...hat.com>
Cc: llvm@...ts.linux.dev, oe-kbuild-all@...ts.linux.dev,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] sched/fair: Warn against unbalanced util_est during
dequeue
Hi Hongyan,
kernel test robot noticed the following build errors:
[auto build test ERROR on tip/sched/core]
[also build test ERROR on tip/master peterz-queue/sched/core next-20240821]
[cannot apply to tip/auto-latest linus/master v6.11-rc4]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Hongyan-Xia/sched-fair-Warn-against-unbalanced-util_est-during-dequeue/20240821-210618
base: tip/sched/core
patch link: https://lore.kernel.org/r/752ae417c02b9277ca3ec18893747c54dd5f277f.1724245193.git.hongyan.xia2%40arm.com
patch subject: [PATCH] sched/fair: Warn against unbalanced util_est during dequeue
config: arm-allnoconfig (https://download.01.org/0day-ci/archive/20240822/202408221018.b3g39QVN-lkp@intel.com/config)
compiler: clang version 20.0.0git (https://github.com/llvm/llvm-project 26670e7fa4f032a019d23d56c6a02926e854e8af)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240822/202408221018.b3g39QVN-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@...el.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202408221018.b3g39QVN-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from kernel/sched/fair.c:27:
In file included from include/linux/mm_api.h:1:
In file included from include/linux/mm.h:2228:
include/linux/vmstat.h:514:36: warning: arithmetic between different enumeration types ('enum node_stat_item' and 'enum lru_list') [-Wenum-enum-conversion]
514 | return node_stat_name(NR_LRU_BASE + lru) + 3; // skip "nr_"
| ~~~~~~~~~~~ ^ ~~~
>> kernel/sched/fair.c:7180:26: error: no member named 'avg' in 'struct cfs_rq'
7180 | SCHED_WARN_ON(rq->cfs.avg.util_est);
| ~~~~~~~ ^
kernel/sched/sched.h:97:42: note: expanded from macro 'SCHED_WARN_ON'
97 | # define SCHED_WARN_ON(x) ({ (void)(x), 0; })
| ^
kernel/sched/fair.c:7186:25: error: no member named 'avg' in 'struct cfs_rq'
7186 | SCHED_WARN_ON(rq->cfs.avg.util_est);
| ~~~~~~~ ^
kernel/sched/sched.h:97:42: note: expanded from macro 'SCHED_WARN_ON'
97 | # define SCHED_WARN_ON(x) ({ (void)(x), 0; })
| ^
1 warning and 2 errors generated.
vim +7180 kernel/sched/fair.c
7168
7169 /*
7170 * The dequeue_task method is called before nr_running is
7171 * decreased. We remove the task from the rbtree and
7172 * update the fair scheduling stats:
7173 */
7174 static bool dequeue_task_fair(struct rq *rq, struct task_struct *p, int flags)
7175 {
7176 util_est_dequeue(&rq->cfs, p);
7177
7178 if (dequeue_entities(rq, &p->se, flags) < 0) {
7179 if (!rq->cfs.h_nr_running)
> 7180 SCHED_WARN_ON(rq->cfs.avg.util_est);
7181 util_est_update(&rq->cfs, p, DEQUEUE_SLEEP);
7182 return false;
7183 }
7184
7185 if (!rq->cfs.h_nr_running)
7186 SCHED_WARN_ON(rq->cfs.avg.util_est);
7187 util_est_update(&rq->cfs, p, flags & DEQUEUE_SLEEP);
7188 hrtick_update(rq);
7189 return true;
7190 }
7191
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
Powered by blists - more mailing lists