loongarch.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Bibo Mao <maobibo@loongson.cn>,
	Huacai Chen <chenhuacai@kernel.org>,
	Tianrui Zhao <zhaotianrui@loongson.cn>,
	Juergen Gross <jgross@suse.com>
Cc: oe-kbuild-all@lists.linux.dev, loongarch@lists.linux.dev,
	linux-kernel@vger.kernel.org, virtualization@lists.linux.dev,
	kvm@vger.kernel.org
Subject: Re: [PATCH 5/5] LoongArch: Add pv ipi support on LoongArch system
Date: Tue, 9 Jan 2024 14:00:24 +0800	[thread overview]
Message-ID: <202401091354.GtBERgQJ-lkp@intel.com> (raw)
In-Reply-To: <20240103071615.3422264-6-maobibo@loongson.cn>

Hi Bibo,

kernel test robot noticed the following build warnings:

[auto build test WARNING on 610a9b8f49fbcf1100716370d3b5f6f884a2835a]

url:    https://github.com/intel-lab-lkp/linux/commits/Bibo-Mao/LoongArch-KVM-Add-hypercall-instruction-emulation-support/20240103-151946
base:   610a9b8f49fbcf1100716370d3b5f6f884a2835a
patch link:    https://lore.kernel.org/r/20240103071615.3422264-6-maobibo%40loongson.cn
patch subject: [PATCH 5/5] LoongArch: Add pv ipi support on LoongArch system
config: loongarch-randconfig-r061-20240109 (https://download.01.org/0day-ci/archive/20240109/202401091354.GtBERgQJ-lkp@intel.com/config)
compiler: loongarch64-linux-gcc (GCC) 13.2.0

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/202401091354.GtBERgQJ-lkp@intel.com/

cocci warnings: (new ones prefixed by >>)
>> arch/loongarch/kvm/exit.c:681:5-8: Unneeded variable: "ret". Return "  0" on line 701
--
>> arch/loongarch/kvm/exit.c:720:2-3: Unneeded semicolon

vim +681 arch/loongarch/kvm/exit.c

   678	
   679	static int kvm_pv_send_ipi(struct kvm_vcpu *vcpu, int sgi)
   680	{
 > 681		int ret = 0;
   682		u64 ipi_bitmap;
   683		unsigned int min, cpu;
   684		struct kvm_vcpu *dest;
   685	
   686		ipi_bitmap = vcpu->arch.gprs[LOONGARCH_GPR_A1];
   687		min = vcpu->arch.gprs[LOONGARCH_GPR_A2];
   688	
   689		if (ipi_bitmap) {
   690			cpu = find_first_bit((void *)&ipi_bitmap, BITS_PER_LONG);
   691			while (cpu < BITS_PER_LONG) {
   692				if ((cpu + min) < KVM_MAX_VCPUS) {
   693					dest = kvm_get_vcpu_by_id(vcpu->kvm, cpu + min);
   694					kvm_queue_irq(dest, sgi);
   695					kvm_vcpu_kick(dest);
   696				}
   697				cpu = find_next_bit((void *)&ipi_bitmap, BITS_PER_LONG, cpu + 1);
   698			}
   699		}
   700	
 > 701		return ret;
   702	}
   703	
   704	/*
   705	 * hypcall emulation always return to guest, Caller should check retval.
   706	 */
   707	static void kvm_handle_pv_hcall(struct kvm_vcpu *vcpu)
   708	{
   709		unsigned long func = vcpu->arch.gprs[LOONGARCH_GPR_A0];
   710		long ret;
   711	
   712		switch (func) {
   713		case KVM_HC_FUNC_IPI:
   714			kvm_pv_send_ipi(vcpu, INT_SWI0);
   715			ret = KVM_HC_STATUS_SUCCESS;
   716			break;
   717		default:
   718			ret = KVM_HC_INVALID_CODE;
   719			break;
 > 720		};
   721	
   722		vcpu->arch.gprs[LOONGARCH_GPR_A0] = ret;
   723	}
   724	

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

      reply	other threads:[~2024-01-09  6:01 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-03  7:16 [PATCH 0/5] LoongArch: Add pv ipi support on LoongArch VM Bibo Mao
2024-01-03  7:16 ` [PATCH 1/5] LoongArch: KVM: Add hypercall instruction emulation support Bibo Mao
2024-01-03  7:16 ` [PATCH 2/5] LoongArch: KVM: Add cpucfg area for kvm hypervisor Bibo Mao
2024-01-03  7:16 ` [PATCH 3/5] LoongArch/smp: Refine ipi ops on LoongArch platform Bibo Mao
2024-01-04  1:51   ` kernel test robot
2024-01-03  7:16 ` [PATCH 4/5] LoongArch: Add paravirt interface for guest kernel Bibo Mao
2024-01-03  7:40   ` Jürgen Groß
2024-01-03  8:00     ` maobibo
2024-01-03  8:14       ` Juergen Gross
2024-01-03  8:54         ` maobibo
2024-01-03  7:16 ` [PATCH 5/5] LoongArch: Add pv ipi support on LoongArch system Bibo Mao
2024-01-09  6:00   ` 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=202401091354.GtBERgQJ-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=chenhuacai@kernel.org \
    --cc=jgross@suse.com \
    --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=virtualization@lists.linux.dev \
    --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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).