From: kernel test robot <lkp@intel.com>
To: Valentin Schneider <vschneid@redhat.com>
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev
Subject: Re: [RFC PATCH v1] sched/deadline: Add more reschedule cases to prio_changed_dl()
Date: Sat, 4 Feb 2023 21:01:54 +0800 [thread overview]
Message-ID: <202302042016.wBoBvL60-lkp@intel.com> (raw)
In-Reply-To: <20230202182854.3696665-1-vschneid@redhat.com>
Hi Valentin,
[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on tip/sched/core]
[also build test ERROR on tip/master tip/auto-latest linus/master v6.2-rc6 next-20230203]
[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/Valentin-Schneider/sched-deadline-Add-more-reschedule-cases-to-prio_changed_dl/20230203-023449
patch link: https://lore.kernel.org/r/20230202182854.3696665-1-vschneid%40redhat.com
patch subject: [RFC PATCH v1] sched/deadline: Add more reschedule cases to prio_changed_dl()
config: x86_64-randconfig-a001 (https://download.01.org/0day-ci/archive/20230204/202302042016.wBoBvL60-lkp@intel.com/config)
compiler: clang version 14.0.6 (https://github.com/llvm/llvm-project f28c006a5895fc0e329fe15fead81e37457cb1d1)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/intel-lab-lkp/linux/commit/83c5e4c04268bf314814c49022d874719a516dbe
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Valentin-Schneider/sched-deadline-Add-more-reschedule-cases-to-prio_changed_dl/20230203-023449
git checkout 83c5e4c04268bf314814c49022d874719a516dbe
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=x86_64 olddefconfig
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=x86_64 SHELL=/bin/bash
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
In file included from kernel/sched/build_policy.c:53:
>> kernel/sched/deadline.c:2684:14: error: no member named 'overloaded' in 'struct dl_rq'
if (!rq->dl.overloaded)
~~~~~~ ^
>> kernel/sched/deadline.c:2693:29: error: no member named 'earliest_dl' in 'struct dl_rq'
if (dl_time_before(rq->dl.earliest_dl.curr, p->dl.deadline))
~~~~~~ ^
2 errors generated.
vim +2684 kernel/sched/deadline.c
aab03e05e8f7e2 Dario Faggioli 2013-11-28 2658
1baca4ce16b8cc Juri Lelli 2013-11-07 2659 /*
1baca4ce16b8cc Juri Lelli 2013-11-07 2660 * If the scheduling parameters of a -deadline task changed,
1baca4ce16b8cc Juri Lelli 2013-11-07 2661 * a push or pull operation might be needed.
1baca4ce16b8cc Juri Lelli 2013-11-07 2662 */
aab03e05e8f7e2 Dario Faggioli 2013-11-28 2663 static void prio_changed_dl(struct rq *rq, struct task_struct *p,
aab03e05e8f7e2 Dario Faggioli 2013-11-28 2664 int oldprio)
aab03e05e8f7e2 Dario Faggioli 2013-11-28 2665 {
83c5e4c04268bf Valentin Schneider 2023-02-02 2666 if (!task_on_rq_queued(p))
83c5e4c04268bf Valentin Schneider 2023-02-02 2667 return;
83c5e4c04268bf Valentin Schneider 2023-02-02 2668
83c5e4c04268bf Valentin Schneider 2023-02-02 2669 /*
83c5e4c04268bf Valentin Schneider 2023-02-02 2670 * We don't know if p has a earlier or later deadline, so let's blindly
83c5e4c04268bf Valentin Schneider 2023-02-02 2671 * set a (maybe not needed) rescheduling point.
83c5e4c04268bf Valentin Schneider 2023-02-02 2672 */
83c5e4c04268bf Valentin Schneider 2023-02-02 2673 if (!IS_ENABLED(CONFIG_SMP)) {
83c5e4c04268bf Valentin Schneider 2023-02-02 2674 resched_curr(rq);
83c5e4c04268bf Valentin Schneider 2023-02-02 2675 return;
83c5e4c04268bf Valentin Schneider 2023-02-02 2676 }
83c5e4c04268bf Valentin Schneider 2023-02-02 2677
1baca4ce16b8cc Juri Lelli 2013-11-07 2678 /*
1baca4ce16b8cc Juri Lelli 2013-11-07 2679 * This might be too much, but unfortunately
1baca4ce16b8cc Juri Lelli 2013-11-07 2680 * we don't have the old deadline value, and
1baca4ce16b8cc Juri Lelli 2013-11-07 2681 * we can't argue if the task is increasing
1baca4ce16b8cc Juri Lelli 2013-11-07 2682 * or lowering its prio, so...
1baca4ce16b8cc Juri Lelli 2013-11-07 2683 */
1baca4ce16b8cc Juri Lelli 2013-11-07 @2684 if (!rq->dl.overloaded)
02d8ec9456f47b Ingo Molnar 2018-03-03 2685 deadline_queue_pull_task(rq);
1baca4ce16b8cc Juri Lelli 2013-11-07 2686
83c5e4c04268bf Valentin Schneider 2023-02-02 2687 if (task_current(rq, p)) {
1baca4ce16b8cc Juri Lelli 2013-11-07 2688 /*
1baca4ce16b8cc Juri Lelli 2013-11-07 2689 * If we now have a earlier deadline task than p,
1baca4ce16b8cc Juri Lelli 2013-11-07 2690 * then reschedule, provided p is still on this
1baca4ce16b8cc Juri Lelli 2013-11-07 2691 * runqueue.
1baca4ce16b8cc Juri Lelli 2013-11-07 2692 */
9916e214998a4a Peter Zijlstra 2015-06-11 @2693 if (dl_time_before(rq->dl.earliest_dl.curr, p->dl.deadline))
8875125efe8402 Kirill Tkhai 2014-06-29 2694 resched_curr(rq);
83c5e4c04268bf Valentin Schneider 2023-02-02 2695 } else {
1baca4ce16b8cc Juri Lelli 2013-11-07 2696 /*
83c5e4c04268bf Valentin Schneider 2023-02-02 2697 * Current may not be deadline in case p was throttled but we
83c5e4c04268bf Valentin Schneider 2023-02-02 2698 * have just replenished it (e.g. rt_mutex_setprio()).
83c5e4c04268bf Valentin Schneider 2023-02-02 2699 *
83c5e4c04268bf Valentin Schneider 2023-02-02 2700 * Otherwise, if p was given an earlier deadline, reschedule.
1baca4ce16b8cc Juri Lelli 2013-11-07 2701 */
83c5e4c04268bf Valentin Schneider 2023-02-02 2702 if (!dl_task(rq->curr) ||
83c5e4c04268bf Valentin Schneider 2023-02-02 2703 dl_time_before(p->dl.deadline, rq->curr->dl.deadline))
8875125efe8402 Kirill Tkhai 2014-06-29 2704 resched_curr(rq);
801ccdbf018ca5 Peter Zijlstra 2016-02-25 2705 }
aab03e05e8f7e2 Dario Faggioli 2013-11-28 2706 }
aab03e05e8f7e2 Dario Faggioli 2013-11-28 2707
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests
next prev parent reply other threads:[~2023-02-04 13:02 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-02 18:28 [RFC PATCH v1] sched/deadline: Add more reschedule cases to prio_changed_dl() Valentin Schneider
2023-02-03 7:06 ` Juri Lelli
2023-02-06 12:46 ` Valentin Schneider
2023-02-04 13:01 ` kernel test robot [this message]
2023-02-04 18:29 ` 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=202302042016.wBoBvL60-lkp@intel.com \
--to=lkp@intel.com \
--cc=llvm@lists.linux.dev \
--cc=oe-kbuild-all@lists.linux.dev \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.