mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Vincent Guittot <vincent.guittot@linaro.org>,
	mingo@redhat.com, peterz@infradead.org, juri.lelli@redhat.com,
	dietmar.eggemann@arm.com, rostedt@goodmis.org,
	bsegall@google.com, mgorman@suse.de, vschneid@redhat.com,
	lukasz.luba@arm.com, rafael.j.wysocki@intel.com,
	pierre.gondois@arm.com, linux-kernel@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev, qyousef@layalina.io,
	hongyan.xia2@arm.com, christian.loehle@arm.com,
	luis.machado@arm.com, qperret@google.com,
	Vincent Guittot <vincent.guittot@linaro.org>
Subject: Re: [PATCH 6/7 v4] sched/fair: Add misfit case to push task mecanism for EAS
Date: Mon, 3 Mar 2025 04:49:33 +0800	[thread overview]
Message-ID: <202503030443.zgft6lMb-lkp@intel.com> (raw)
In-Reply-To: <20250302161321.1476139-7-vincent.guittot@linaro.org>

Hi Vincent,

kernel test robot noticed the following build errors:

[auto build test ERROR on tip/sched/core]
[also build test ERROR on peterz-queue/sched/core linus/master v6.14-rc4 next-20250228]
[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/Vincent-Guittot/sched-fair-Filter-false-overloaded_group-case-for-EAS/20250303-001556
base:   tip/sched/core
patch link:    https://lore.kernel.org/r/20250302161321.1476139-7-vincent.guittot%40linaro.org
patch subject: [PATCH 6/7 v4] sched/fair: Add misfit case to push task mecanism for EAS
config: riscv-randconfig-002-20250303 (https://download.01.org/0day-ci/archive/20250303/202503030443.zgft6lMb-lkp@intel.com/config)
compiler: riscv32-linux-gcc (GCC) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250303/202503030443.zgft6lMb-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/202503030443.zgft6lMb-lkp@intel.com/

All errors (new ones prefixed by >>):

   kernel/sched/fair.c: In function 'check_pushable_task':
>> kernel/sched/fair.c:8964:21: error: expected ';' before '}' token
    8964 |         return false
         |                     ^
         |                     ;
    8965 | }
         | ~                    


vim +8964 kernel/sched/fair.c

  8952	
  8953	static int
  8954	balance_fair(struct rq *rq, struct task_struct *prev, struct rq_flags *rf)
  8955	{
  8956		if (sched_fair_runnable(rq))
  8957			return 1;
  8958	
  8959		return sched_balance_newidle(rq, rf) != 0;
  8960	}
  8961	#else
  8962	static inline bool check_pushable_task(struct task_struct *p, struct rq *rq)
  8963	{
> 8964		return false
  8965	}
  8966	

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  reply	other threads:[~2025-03-02 20:50 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-02 16:13 [PATCH 0/7 v4] sched/fair: Rework EAS to handle more cases Vincent Guittot
2025-03-02 16:13 ` [PATCH 1/7 v4] sched/fair: Filter false overloaded_group case for EAS Vincent Guittot
2025-03-02 16:13 ` [PATCH 2/7 v4] energy model: Add a get previous state function Vincent Guittot
2025-03-02 16:13 ` [PATCH 3/7 v4] sched/fair: Rework feec() to use cost instead of spare capacity Vincent Guittot
2025-03-02 16:13 ` [PATCH 4/7 v4] energy model: Remove unused em_cpu_energy() Vincent Guittot
2025-03-02 16:13 ` [PATCH 5/7 v4] sched/fair: Add push task mechanism for EAS Vincent Guittot
2025-03-02 16:13 ` [PATCH 6/7 v4] sched/fair: Add misfit case to push task mecanism " Vincent Guittot
2025-03-02 20:49   ` kernel test robot [this message]
2025-03-02 16:13 ` [PATCH 7/7 v4] sched/fair: Update overutilized detection Vincent Guittot

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=202503030443.zgft6lMb-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=bsegall@google.com \
    --cc=christian.loehle@arm.com \
    --cc=dietmar.eggemann@arm.com \
    --cc=hongyan.xia2@arm.com \
    --cc=juri.lelli@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luis.machado@arm.com \
    --cc=lukasz.luba@arm.com \
    --cc=mgorman@suse.de \
    --cc=mingo@redhat.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=peterz@infradead.org \
    --cc=pierre.gondois@arm.com \
    --cc=qperret@google.com \
    --cc=qyousef@layalina.io \
    --cc=rafael.j.wysocki@intel.com \
    --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®