mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Tianrui Zhao <zhaotianrui@loongson.cn>,
	Paolo Bonzini <pbonzini@redhat.com>
Cc: oe-kbuild-all@lists.linux.dev,
	Huacai Chen <chenhuacai@kernel.org>,
	WANG Xuerui <kernel@xen0n.name>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	loongarch@lists.linux.dev, linux-kernel@vger.kernel.org,
	kvm@vger.kernel.org, Jens Axboe <axboe@kernel.dk>,
	Mark Brown <broonie@kernel.org>,
	Alex Deucher <alexander.deucher@amd.com>,
	Oliver Upton <oliver.upton@linux.dev>,
	maobibo@loongson.cn, Xi Ruoyao <xry111@xry111.site>,
	zhaotianrui@loongson.cn
Subject: Re: [PATCH v5 30/30] LoongArch: KVM: Supplement kvm document about loongarch-specific part
Date: Mon, 10 Apr 2023 09:36:26 +0800	[thread overview]
Message-ID: <202304100944.xF4XkTAE-lkp@intel.com> (raw)
In-Reply-To: <20230407020003.3651096-31-zhaotianrui@loongson.cn>

Hi Tianrui,

kernel test robot noticed the following build warnings:

[auto build test WARNING on kvm/queue]
[also build test WARNING on linus/master v6.3-rc6 next-20230406]
[cannot apply to kvm/linux-next]
[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/Tianrui-Zhao/LoongArch-KVM-Add-kvm-related-header-files/20230407-100816
base:   https://git.kernel.org/pub/scm/virt/kvm/kvm.git queue
patch link:    https://lore.kernel.org/r/20230407020003.3651096-31-zhaotianrui%40loongson.cn
patch subject: [PATCH v5 30/30] LoongArch: KVM: Supplement kvm document about loongarch-specific part
reproduce:
        # https://github.com/intel-lab-lkp/linux/commit/a4ea2786cae9b2350b1aed613edcc003ce93cfc2
        git remote add linux-review https://github.com/intel-lab-lkp/linux
        git fetch --no-tags linux-review Tianrui-Zhao/LoongArch-KVM-Add-kvm-related-header-files/20230407-100816
        git checkout a4ea2786cae9b2350b1aed613edcc003ce93cfc2
        make menuconfig
        # enable CONFIG_COMPILE_TEST, CONFIG_WARN_MISSING_DOCUMENTS, CONFIG_WARN_ABI_ERRORS
        make htmldocs

If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp@intel.com>
| Link: https://lore.kernel.org/oe-kbuild-all/202304100944.xF4XkTAE-lkp@intel.com/

All warnings (new ones prefixed by >>):

>> Documentation/virt/kvm/api.rst:423: WARNING: Literal block ends without a blank line; unexpected unindent.

vim +423 Documentation/virt/kvm/api.rst

   399	
   400	  /* x86 */
   401	  struct kvm_regs {
   402		/* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
   403		__u64 rax, rbx, rcx, rdx;
   404		__u64 rsi, rdi, rsp, rbp;
   405		__u64 r8,  r9,  r10, r11;
   406		__u64 r12, r13, r14, r15;
   407		__u64 rip, rflags;
   408	  };
   409	
   410	  /* mips */
   411	  struct kvm_regs {
   412		/* out (KVM_GET_REGS) / in (KVM_SET_REGS) */
   413		__u64 gpr[32];
   414		__u64 hi;
   415		__u64 lo;
   416		__u64 pc;
   417	  };
   418	
   419	  /* loongarch */
   420	  struct kvm_regs {
   421	        unsigned long gpr[32];
   422	        unsigned long pc;
 > 423	};
   424	
   425	

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

      reply	other threads:[~2023-04-10  1:37 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-07  1:59 [PATCH v5 00/30] Add KVM LoongArch support Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 01/30] LoongArch: KVM: Add kvm related header files Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 02/30] LoongArch: KVM: Implement kvm module related interface Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 03/30] LoongArch: KVM: Implement kvm hardware enable, disable interface Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 04/30] LoongArch: KVM: Implement VM related functions Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 05/30] LoongArch: KVM: Add vcpu related header files Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 06/30] LoongArch: KVM: Implement vcpu create and destroy interface Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 07/30] LoongArch: KVM: Implement vcpu run interface Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 08/30] LoongArch: KVM: Implement vcpu handle exit interface Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 09/30] LoongArch: KVM: Implement vcpu get, vcpu set registers Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 10/30] LoongArch: KVM: Implement vcpu ENABLE_CAP ioctl interface Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 11/30] LoongArch: KVM: Implement fpu related operations for vcpu Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 12/30] LoongArch: KVM: Implement vcpu interrupt operations Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 13/30] LoongArch: KVM: Implement misc vcpu related interfaces Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 14/30] LoongArch: KVM: Implement vcpu load and vcpu put operations Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 15/30] LoongArch: KVM: Implement vcpu status description Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 16/30] LoongArch: KVM: Implement update VM id function Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 17/30] LoongArch: KVM: Implement virtual machine tlb operations Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 18/30] LoongArch: KVM: Implement vcpu timer operations Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 19/30] LoongArch: KVM: Implement kvm mmu operations Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 20/30] LoongArch: KVM: Implement handle csr excption Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 21/30] LoongArch: KVM: Implement handle iocsr exception Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 22/30] LoongArch: KVM: Implement handle idle exception Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 23/30] LoongArch: KVM: Implement handle gspr exception Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 24/30] LoongArch: KVM: Implement handle mmio exception Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 25/30] LoongArch: KVM: Implement handle fpu exception Tianrui Zhao
2023-04-07  1:59 ` [PATCH v5 26/30] LoongArch: KVM: Implement kvm exception vector Tianrui Zhao
2023-04-07  2:00 ` [PATCH v5 27/30] LoongArch: KVM: Implement vcpu world switch Tianrui Zhao
2023-04-07  2:00 ` [PATCH v5 28/30] LoongArch: KVM: Implement probe virtualization when loongarch cpu init Tianrui Zhao
2023-04-07  2:00 ` [PATCH v5 29/30] LoongArch: KVM: Enable kvm config and add the makefile Tianrui Zhao
2023-04-07  2:00 ` [PATCH v5 30/30] LoongArch: KVM: Supplement kvm document about loongarch-specific part Tianrui Zhao
2023-04-10  1:36   ` kernel test robot [this message]

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=202304100944.xF4XkTAE-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=alexander.deucher@amd.com \
    --cc=axboe@kernel.dk \
    --cc=broonie@kernel.org \
    --cc=chenhuacai@kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=kernel@xen0n.name \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=loongarch@lists.linux.dev \
    --cc=maobibo@loongson.cn \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=oliver.upton@linux.dev \
    --cc=pbonzini@redhat.com \
    --cc=xry111@xry111.site \
    --cc=zhaotianrui@loongson.cn \
    /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

all inboxes | Powered by JetHome®