From: kernel test robot <lkp@intel.com>
To: Bibo Mao <maobibo@loongson.cn>,
Paolo Bonzini <pbonzini@redhat.com>,
Huacai Chen <chenhuacai@kernel.org>,
WANG Xuerui <kernel@xen0n.name>,
Peter Zijlstra <peterz@infradead.org>,
Ingo Molnar <mingo@redhat.com>, Will Deacon <will@kernel.org>,
Boqun Feng <boqun.feng@gmail.com>,
Waiman Long <longman@redhat.com>, Juergen Gross <jgross@suse.com>,
Ajay Kaher <ajay.kaher@broadcom.com>,
Alexey Makhalov <alexey.makhalov@broadcom.com>,
Broadcom internal kernel review list
<bcm-kernel-feedback-list@broadcom.com>
Cc: oe-kbuild-all@lists.linux.dev, kvm@vger.kernel.org,
loongarch@lists.linux.dev, linux-kernel@vger.kernel.org,
virtualization@lists.linux.dev, x86@kernel.org
Subject: Re: [PATCH 2/3] LoongArch: Add paravirt support with vcpu_is_preempted()
Date: Thu, 20 Nov 2025 10:51:50 +0800 [thread overview]
Message-ID: <202511201009.WLpYNMAM-lkp@intel.com> (raw)
In-Reply-To: <20251118080656.2012805-3-maobibo@loongson.cn>
Hi Bibo,
kernel test robot noticed the following build errors:
[auto build test ERROR on 6a23ae0a96a600d1d12557add110e0bb6e32730c]
url: https://github.com/intel-lab-lkp/linux/commits/Bibo-Mao/LoongArch-KVM-Add-preempt-hint-feature-in-hypervisor-side/20251118-161212
base: 6a23ae0a96a600d1d12557add110e0bb6e32730c
patch link: https://lore.kernel.org/r/20251118080656.2012805-3-maobibo%40loongson.cn
patch subject: [PATCH 2/3] LoongArch: Add paravirt support with vcpu_is_preempted()
config: loongarch-randconfig-r052-20251120 (https://download.01.org/0day-ci/archive/20251120/202511201009.WLpYNMAM-lkp@intel.com/config)
compiler: clang version 18.1.8 (https://github.com/llvm/llvm-project 3b5b5c1ec4a3095ab096dd780e84d7ab81f3d7ff)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251120/202511201009.WLpYNMAM-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/202511201009.WLpYNMAM-lkp@intel.com/
All errors (new ones prefixed by >>):
>> arch/loongarch/kernel/paravirt.c:346:14: error: redefinition of 'vcpu_is_preempted'
346 | bool notrace vcpu_is_preempted(int cpu)
| ^
include/linux/sched.h:2263:20: note: previous definition is here
2263 | static inline bool vcpu_is_preempted(int cpu)
| ^
>> arch/loongarch/kernel/paravirt.c:348:9: error: use of undeclared identifier 'mp_ops'
348 | return mp_ops.vcpu_is_preempted(cpu);
| ^
2 errors generated.
vim +/vcpu_is_preempted +346 arch/loongarch/kernel/paravirt.c
345
> 346 bool notrace vcpu_is_preempted(int cpu)
347 {
> 348 return mp_ops.vcpu_is_preempted(cpu);
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-11-20 2:52 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-18 8:06 [PATCH 0/3] LoongArch: KVM: Add paravirt preempt hint support Bibo Mao
2025-11-18 8:06 ` [PATCH 1/3] LoongArch: KVM: Add preempt hint feature in hypervisor side Bibo Mao
2025-11-18 12:46 ` Huacai Chen
2025-11-19 1:20 ` Bibo Mao
2025-11-19 2:45 ` Huacai Chen
2025-11-19 2:55 ` Bibo Mao
2025-11-19 3:01 ` Huacai Chen
2025-11-18 8:06 ` [PATCH 2/3] LoongArch: Add paravirt support with vcpu_is_preempted() Bibo Mao
2025-11-18 12:48 ` Huacai Chen
2025-11-19 1:59 ` Bibo Mao
2025-11-19 2:58 ` Huacai Chen
2025-11-19 3:08 ` Bibo Mao
2025-11-19 6:09 ` Bibo Mao
2025-11-19 7:41 ` Huacai Chen
2025-11-19 2:50 ` Bibo Mao
2025-11-19 7:36 ` Huacai Chen
2025-11-20 2:51 ` kernel test robot [this message]
2025-11-18 8:06 ` [PATCH 3/3] LoongArch: Add paravirt preempt hint print prompt Bibo Mao
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=202511201009.WLpYNMAM-lkp@intel.com \
--to=lkp@intel.com \
--cc=ajay.kaher@broadcom.com \
--cc=alexey.makhalov@broadcom.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=boqun.feng@gmail.com \
--cc=chenhuacai@kernel.org \
--cc=jgross@suse.com \
--cc=kernel@xen0n.name \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=longman@redhat.com \
--cc=loongarch@lists.linux.dev \
--cc=maobibo@loongson.cn \
--cc=mingo@redhat.com \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=pbonzini@redhat.com \
--cc=peterz@infradead.org \
--cc=virtualization@lists.linux.dev \
--cc=will@kernel.org \
--cc=x86@kernel.org \
/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