From: kernel test robot <lkp@intel.com>
To: Lecopzer Chen <lecopzer.chen@mediatek.com>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Cc: kbuild-all@lists.01.org, pmladek@suse.com, acme@kernel.org,
akpm@linux-foundation.org, alexander.shishkin@linux.intel.com,
catalin.marinas@arm.com, davem@davemloft.net, jolsa@redhat.com,
jthierry@redhat.com, keescook@chromium.org, kernelfans@gmail.com,
lecopzer.chen@mediatek.com, linux-mediatek@lists.infradead.org,
linux-perf-users@vger.kernel.org, mark.rutland@arm.com,
masahiroy@kernel.org, matthias.bgg@gmail.com, maz@kernel.org,
mcgrof@kernel.org, mingo@redhat.com, namhyung@kernel.org,
nixiaoming@huawei.com, peterz@infradead.org,
sparclinux@vger.kernel.org, sumit.garg@linaro.org,
wangqing@vivo.com, will@kernel.org, yj.chiang@mediatek.com
Subject: Re: [PATCH v5 4/6] kernel/watchdog: Adapt the watchdog_hld interface for async model
Date: Tue, 14 Jun 2022 13:57:53 +0800 [thread overview]
Message-ID: <202206141348.e7aqnN0q-lkp@intel.com> (raw)
In-Reply-To: <20220613135956.15711-5-lecopzer.chen@mediatek.com>
Hi Lecopzer,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on arm64/for-next/core]
[also build test ERROR on arm/for-next kvmarm/next soc/for-next linus/master v5.19-rc2 next-20220610]
[cannot apply to xilinx-xlnx/master]
[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]
url: https://github.com/intel-lab-lkp/linux/commits/Lecopzer-Chen/Support-hld-delayed-init-based-on-Pseudo-NMI-for/20220614-021318
base: https://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git for-next/core
config: sparc64-randconfig-r026-20220613 (https://download.01.org/0day-ci/archive/20220614/202206141348.e7aqnN0q-lkp@intel.com/config)
compiler: sparc64-linux-gcc (GCC) 11.3.0
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/7df94eb967160312b005f9d8a29b558beec2d5a7
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Lecopzer-Chen/Support-hld-delayed-init-based-on-Pseudo-NMI-for/20220614-021318
git checkout 7df94eb967160312b005f9d8a29b558beec2d5a7
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.3.0 make.cross W=1 O=build_dir ARCH=sparc64 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 >>):
kernel/watchdog.c: In function 'lockup_detector_init':
>> kernel/watchdog.c:915:17: error: 'allow_lockup_detector_init_retry' undeclared (first use in this function); did you mean 'retry_lockup_detector_init'?
915 | allow_lockup_detector_init_retry = true;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| retry_lockup_detector_init
kernel/watchdog.c:915:17: note: each undeclared identifier is reported only once for each function it appears in
vim +915 kernel/watchdog.c
903
904 void __init lockup_detector_init(void)
905 {
906 if (tick_nohz_full_enabled())
907 pr_info("Disabling watchdog on nohz_full cores by default\n");
908
909 cpumask_copy(&watchdog_cpumask,
910 housekeeping_cpumask(HK_TYPE_TIMER));
911
912 if (!watchdog_nmi_probe())
913 nmi_watchdog_available = true;
914 else
> 915 allow_lockup_detector_init_retry = true;
--
0-DAY CI Kernel Test Service
https://01.org/lkp
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2022-06-14 5:59 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-13 13:59 [PATCH v5 0/6] Support hld delayed init based on Pseudo-NMI for Lecopzer Chen
2022-06-13 13:59 ` [PATCH v5 1/6] kernel/watchdog: remove WATCHDOG_DEFAULT Lecopzer Chen
2022-06-13 13:59 ` [PATCH v5 2/6] kernel/watchdog: change watchdog_nmi_enable() to void Lecopzer Chen
2022-06-13 13:59 ` [PATCH v5 3/6] kernel/watchdog_hld: Ensure CPU-bound context when creating hardlockup detector event Lecopzer Chen
2022-06-13 13:59 ` [PATCH v5 4/6] kernel/watchdog: Adapt the watchdog_hld interface for async model Lecopzer Chen
2022-06-14 5:57 ` kernel test robot [this message]
2022-06-14 6:18 ` kernel test robot
2022-06-13 13:59 ` [PATCH v5 5/6] arm64: add hw_nmi_get_sample_period for preparation of lockup detector Lecopzer Chen
2022-06-13 13:59 ` [PATCH v5 6/6] arm64: Enable perf events based hard " Lecopzer Chen
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=202206141348.e7aqnN0q-lkp@intel.com \
--to=lkp@intel.com \
--cc=acme@kernel.org \
--cc=akpm@linux-foundation.org \
--cc=alexander.shishkin@linux.intel.com \
--cc=catalin.marinas@arm.com \
--cc=davem@davemloft.net \
--cc=jolsa@redhat.com \
--cc=jthierry@redhat.com \
--cc=kbuild-all@lists.01.org \
--cc=keescook@chromium.org \
--cc=kernelfans@gmail.com \
--cc=lecopzer.chen@mediatek.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=masahiroy@kernel.org \
--cc=matthias.bgg@gmail.com \
--cc=maz@kernel.org \
--cc=mcgrof@kernel.org \
--cc=mingo@redhat.com \
--cc=namhyung@kernel.org \
--cc=nixiaoming@huawei.com \
--cc=peterz@infradead.org \
--cc=pmladek@suse.com \
--cc=sparclinux@vger.kernel.org \
--cc=sumit.garg@linaro.org \
--cc=wangqing@vivo.com \
--cc=will@kernel.org \
--cc=yj.chiang@mediatek.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;
as well as URLs for NNTP newsgroup(s).