[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <202511171515.bQfhqZLh-lkp@intel.com>
Date: Mon, 17 Nov 2025 15:40:39 +0800
From: kernel test robot <lkp@...el.com>
To: cx19970 <cx19970@...com>, mingo@...hat.com, peterz@...radead.org,
juri.lelli@...hat.com, vincent.guittot@...aro.org
Cc: oe-kbuild-all@...ts.linux.dev, dietmar.eggemann@....com,
rostedt@...dmis.org, bsegall@...gle.com, mgorman@...e.de,
vschneid@...hat.com, linux-kernel@...r.kernel.org,
cx19970 <cx19970@...com>
Subject: Re: [PATCH] BUG: sysrq: Reset the watchdog during the polling of
sysrq-t processing tasks
Hi cx19970,
kernel test robot noticed the following build errors:
[auto build test ERROR on tip/sched/core]
[also build test ERROR on linus/master v6.18-rc6 next-20251114]
[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/cx19970/BUG-sysrq-Reset-the-watchdog-during-the-polling-of-sysrq-t-processing-tasks/20251117-130012
base: tip/sched/core
patch link: https://lore.kernel.org/r/tencent_B7DDA306E3B6A8CDF3195E4C083C9BD37E07%40qq.com
patch subject: [PATCH] BUG: sysrq: Reset the watchdog during the polling of sysrq-t processing tasks
config: i386-allnoconfig (https://download.01.org/0day-ci/archive/20251117/202511171515.bQfhqZLh-lkp@intel.com/config)
compiler: gcc-14 (Debian 14.2.0-19) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251117/202511171515.bQfhqZLh-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/202511171515.bQfhqZLh-lkp@intel.com/
All errors (new ones prefixed by >>):
kernel/sched/fair.c: In function 'print_cfs_stats':
>> kernel/sched/fair.c:13940:17: error: implicit declaration of function 'touch_nmi_watchdog' [-Wimplicit-function-declaration]
13940 | touch_nmi_watchdog();
| ^~~~~~~~~~~~~~~~~~
>> kernel/sched/fair.c:13941:17: error: implicit declaration of function 'touch_all_softlockup_watchdogs' [-Wimplicit-function-declaration]
13941 | touch_all_softlockup_watchdogs();
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--
In file included from kernel/sched/build_policy.c:52:
kernel/sched/rt.c: In function 'print_rt_stats':
>> kernel/sched/rt.c:2941:17: error: implicit declaration of function 'touch_nmi_watchdog' [-Wimplicit-function-declaration]
2941 | touch_nmi_watchdog();
| ^~~~~~~~~~~~~~~~~~
>> kernel/sched/rt.c:2942:17: error: implicit declaration of function 'touch_all_softlockup_watchdogs' [-Wimplicit-function-declaration]
2942 | touch_all_softlockup_watchdogs();
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
vim +/touch_nmi_watchdog +13940 kernel/sched/fair.c
13933
13934 void print_cfs_stats(struct seq_file *m, int cpu)
13935 {
13936 struct cfs_rq *cfs_rq, *pos;
13937
13938 rcu_read_lock();
13939 for_each_leaf_cfs_rq_safe(cpu_rq(cpu), cfs_rq, pos) {
13940 touch_nmi_watchdog();
13941 touch_all_softlockup_watchdogs();
13942 print_cfs_rq(m, cpu, cfs_rq);
13943 }
13944 rcu_read_unlock();
13945 }
13946
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
Powered by blists - more mailing lists