From: kernel test robot <lkp@intel.com>
To: Hongyan Xia <hongyan.xia2@arm.com>,
Ingo Molnar <mingo@redhat.com>,
Peter Zijlstra <peterz@infradead.org>,
Juri Lelli <juri.lelli@redhat.com>,
Vincent Guittot <vincent.guittot@linaro.org>,
Dietmar Eggemann <dietmar.eggemann@arm.com>,
Steven Rostedt <rostedt@goodmis.org>,
Ben Segall <bsegall@google.com>, Mel Gorman <mgorman@suse.de>,
Valentin Schneider <vschneid@redhat.com>
Cc: oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] sched/fair: Warn against unbalanced util_est during dequeue
Date: Thu, 22 Aug 2024 10:21:19 +0800 [thread overview]
Message-ID: <202408221024.pQc774Ya-lkp@intel.com> (raw)
In-Reply-To: <752ae417c02b9277ca3ec18893747c54dd5f277f.1724245193.git.hongyan.xia2@arm.com>
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: alpha-allnoconfig (https://download.01.org/0day-ci/archive/20240822/202408221024.pQc774Ya-lkp@intel.com/config)
compiler: alpha-linux-gcc (GCC) 13.3.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240822/202408221024.pQc774Ya-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@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202408221024.pQc774Ya-lkp@intel.com/
All errors (new ones prefixed by >>):
In file included from kernel/sched/fair.c:54:
kernel/sched/fair.c: In function 'dequeue_task_fair':
>> kernel/sched/fair.c:7180:46: error: 'struct cfs_rq' has no member named 'avg'
7180 | SCHED_WARN_ON(rq->cfs.avg.util_est);
| ^
kernel/sched/sched.h:97:42: note: in definition of macro 'SCHED_WARN_ON'
97 | # define SCHED_WARN_ON(x) ({ (void)(x), 0; })
| ^
kernel/sched/sched.h:97:44: warning: left-hand operand of comma expression has no effect [-Wunused-value]
97 | # define SCHED_WARN_ON(x) ({ (void)(x), 0; })
| ^
kernel/sched/fair.c:7180:25: note: in expansion of macro 'SCHED_WARN_ON'
7180 | SCHED_WARN_ON(rq->cfs.avg.util_est);
| ^~~~~~~~~~~~~
kernel/sched/fair.c:7186:38: error: 'struct cfs_rq' has no member named 'avg'
7186 | SCHED_WARN_ON(rq->cfs.avg.util_est);
| ^
kernel/sched/sched.h:97:42: note: in definition of macro 'SCHED_WARN_ON'
97 | # define SCHED_WARN_ON(x) ({ (void)(x), 0; })
| ^
kernel/sched/sched.h:97:44: warning: left-hand operand of comma expression has no effect [-Wunused-value]
97 | # define SCHED_WARN_ON(x) ({ (void)(x), 0; })
| ^
kernel/sched/fair.c:7186:17: note: in expansion of macro 'SCHED_WARN_ON'
7186 | SCHED_WARN_ON(rq->cfs.avg.util_est);
| ^~~~~~~~~~~~~
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
next prev parent reply other threads:[~2024-08-22 2:22 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-21 13:02 Hongyan Xia
2024-08-22 2:21 ` kernel test robot [this message]
2024-08-22 2:42 ` kernel test robot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202408221024.pQc774Ya-lkp@intel.com \
--to=lkp@intel.com \
--cc=bsegall@google.com \
--cc=dietmar.eggemann@arm.com \
--cc=hongyan.xia2@arm.com \
--cc=juri.lelli@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mgorman@suse.de \
--cc=mingo@redhat.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=vincent.guittot@linaro.org \
--cc=vschneid@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®