linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: oe-kbuild-all@lists.linux.dev,
	Linux Memory Management List <linux-mm@kvack.org>
Subject: [linux-next:master 8207/8260] arch/x86/entry/entry_fred.c:117:9: error: use of undeclared identifier 'POSTED_INTR_VECTOR'
Date: Wed, 21 Feb 2024 00:38:04 +0800	[thread overview]
Message-ID: <202402210011.c42QmSp5-lkp@intel.com> (raw)

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   2d5c7b7eb345249cb34d42cbc2b97b4c57ea944e
commit: 9417678a33c0554ed930380727cff11d91cfbb8a [8207/8260] Merge branch 'next' of git://git.kernel.org/pub/scm/virt/kvm/kvm.git
config: x86_64-randconfig-104-20240220 (https://download.01.org/0day-ci/archive/20240221/202402210011.c42QmSp5-lkp@intel.com/config)
compiler: clang version 17.0.6 (https://github.com/llvm/llvm-project 6009708b4367171ccdbf4b5905cb6a803753fe18)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240221/202402210011.c42QmSp5-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/202402210011.c42QmSp5-lkp@intel.com/

All errors (new ones prefixed by >>):

>> arch/x86/entry/entry_fred.c:117:9: error: use of undeclared identifier 'POSTED_INTR_VECTOR'
     117 |         SYSVEC(POSTED_INTR_VECTOR,              kvm_posted_intr_ipi),
         |                ^
>> arch/x86/entry/entry_fred.c:118:9: error: use of undeclared identifier 'POSTED_INTR_WAKEUP_VECTOR'
     118 |         SYSVEC(POSTED_INTR_WAKEUP_VECTOR,       kvm_posted_intr_wakeup_ipi),
         |                ^
>> arch/x86/entry/entry_fred.c:119:9: error: use of undeclared identifier 'POSTED_INTR_NESTED_VECTOR'
     119 |         SYSVEC(POSTED_INTR_NESTED_VECTOR,       kvm_posted_intr_nested_ipi),
         |                ^
   3 errors generated.

Kconfig warnings: (for reference only)
   WARNING: unmet direct dependencies detected for PADATA
   Depends on [n]: SMP [=n]
   Selected by [y]:
   - HUGETLBFS [=y] && (X86 [=y] || SPARC64 || ARCH_SUPPORTS_HUGETLBFS [=n] || BROKEN [=n]) && (SYSFS [=y] || SYSCTL [=y])


vim +/POSTED_INTR_VECTOR +117 arch/x86/entry/entry_fred.c

14619d912b658e H. Peter Anvin (Intel  2023-12-09   99) 
14619d912b658e H. Peter Anvin (Intel  2023-12-09  100) static idtentry_t sysvec_table[NR_SYSTEM_VECTORS] __ro_after_init = {
14619d912b658e H. Peter Anvin (Intel  2023-12-09  101) 	SYSVEC(ERROR_APIC_VECTOR,		error_interrupt),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  102) 	SYSVEC(SPURIOUS_APIC_VECTOR,		spurious_apic_interrupt),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  103) 	SYSVEC(LOCAL_TIMER_VECTOR,		apic_timer_interrupt),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  104) 	SYSVEC(X86_PLATFORM_IPI_VECTOR,		x86_platform_ipi),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  105) 
14619d912b658e H. Peter Anvin (Intel  2023-12-09  106) 	SYSVEC(RESCHEDULE_VECTOR,		reschedule_ipi),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  107) 	SYSVEC(CALL_FUNCTION_SINGLE_VECTOR,	call_function_single),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  108) 	SYSVEC(CALL_FUNCTION_VECTOR,		call_function),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  109) 	SYSVEC(REBOOT_VECTOR,			reboot),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  110) 
14619d912b658e H. Peter Anvin (Intel  2023-12-09  111) 	SYSVEC(THRESHOLD_APIC_VECTOR,		threshold),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  112) 	SYSVEC(DEFERRED_ERROR_VECTOR,		deferred_error),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  113) 	SYSVEC(THERMAL_APIC_VECTOR,		thermal),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  114) 
14619d912b658e H. Peter Anvin (Intel  2023-12-09  115) 	SYSVEC(IRQ_WORK_VECTOR,			irq_work),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  116) 
14619d912b658e H. Peter Anvin (Intel  2023-12-09 @117) 	SYSVEC(POSTED_INTR_VECTOR,		kvm_posted_intr_ipi),
14619d912b658e H. Peter Anvin (Intel  2023-12-09 @118) 	SYSVEC(POSTED_INTR_WAKEUP_VECTOR,	kvm_posted_intr_wakeup_ipi),
14619d912b658e H. Peter Anvin (Intel  2023-12-09 @119) 	SYSVEC(POSTED_INTR_NESTED_VECTOR,	kvm_posted_intr_nested_ipi),
14619d912b658e H. Peter Anvin (Intel  2023-12-09  120) };
14619d912b658e H. Peter Anvin (Intel  2023-12-09  121) 

:::::: The code at line 117 was first introduced by commit
:::::: 14619d912b658ecd9573fb88400d3830a29cadcb x86/fred: FRED entry/exit and dispatch code

:::::: TO: H. Peter Anvin (Intel) <hpa@zytor.com>
:::::: CC: Borislav Petkov (AMD) <bp@alien8.de>

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


                 reply	other threads:[~2024-02-20 16:39 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=202402210011.c42QmSp5-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=linux-mm@kvack.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=pbonzini@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