All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH 2/5 v4] KVM: SVM: Fill in conforming svm_x86_ops via macro
Date: Tue, 10 Nov 2020 11:56:16 +0800	[thread overview]
Message-ID: <202011101153.tF40ffeQ-lkp@intel.com> (raw)
In-Reply-To: <20201110012312.20820-3-krish.sadhukhan@oracle.com>

[-- Attachment #1: Type: text/plain, Size: 2775 bytes --]

Hi Krish,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on linus/master]
[also build test WARNING on v5.10-rc3 next-20201109]
[cannot apply to vhost/linux-next kvmarm/next kvm/linux-next kvms390/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]

url:    https://github.com/0day-ci/linux/commits/Krish-Sadhukhan/KVM-x86-Fill-in-conforming-vmx-svm-_x86_ops-and-vmx-svm-_nested_ops-via-macros/20201110-095653
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 407ab579637ced6dc32cfb2295afb7259cca4b22
config: i386-allyesconfig (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/0day-ci/linux/commit/26275e3a7e11da29dc47a214b3938e7261c61ec7
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Krish-Sadhukhan/KVM-x86-Fill-in-conforming-vmx-svm-_x86_ops-and-vmx-svm-_nested_ops-via-macros/20201110-095653
        git checkout 26275e3a7e11da29dc47a214b3938e7261c61ec7
        # save the attached .config to linux build tree
        make W=1 ARCH=i386 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> arch/x86/kvm/svm/svm.c:1651:6: warning: no previous prototype for 'svm_get_cs_db_l_bits' [-Wmissing-prototypes]
    1651 | void svm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
         |      ^~~~~~~~~~~~~~~~~~~~
>> arch/x86/kvm/svm/svm.c:3372:6: warning: no previous prototype for 'svm_tlb_flush_all' [-Wmissing-prototypes]
    3372 | void svm_tlb_flush_all(struct kvm_vcpu *vcpu)
         |      ^~~~~~~~~~~~~~~~~
>> arch/x86/kvm/svm/svm.c:3377:6: warning: no previous prototype for 'svm_tlb_flush_current' [-Wmissing-prototypes]
    3377 | void svm_tlb_flush_current(struct kvm_vcpu *vcpu)
         |      ^~~~~~~~~~~~~~~~~~~~~
>> arch/x86/kvm/svm/svm.c:3382:6: warning: no previous prototype for 'svm_tlb_flush_guest' [-Wmissing-prototypes]
    3382 | void svm_tlb_flush_guest(struct kvm_vcpu *vcpu)
         |      ^~~~~~~~~~~~~~~~~~~

vim +/svm_get_cs_db_l_bits +1651 arch/x86/kvm/svm/svm.c

  1650	
> 1651	void svm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
  1652	{
  1653	        struct kvm_segment cs;
  1654	
  1655		kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
  1656	        *db = cs.db;
  1657	        *l = cs.l;
  1658	}
  1659	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 75868 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Krish Sadhukhan <krish.sadhukhan@oracle.com>, kvm@vger.kernel.org
Cc: kbuild-all@lists.01.org, qemu-devel@nongnu.org,
	sean.j.christopherson@intel.com, pbonzini@redhat.com,
	vkuznets@redhat.com, jmattson@google.com
Subject: Re: [PATCH 2/5 v4] KVM: SVM: Fill in conforming svm_x86_ops via macro
Date: Tue, 10 Nov 2020 11:56:16 +0800	[thread overview]
Message-ID: <202011101153.tF40ffeQ-lkp@intel.com> (raw)
In-Reply-To: <20201110012312.20820-3-krish.sadhukhan@oracle.com>

[-- Attachment #1: Type: text/plain, Size: 2716 bytes --]

Hi Krish,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on linus/master]
[also build test WARNING on v5.10-rc3 next-20201109]
[cannot apply to vhost/linux-next kvmarm/next kvm/linux-next kvms390/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]

url:    https://github.com/0day-ci/linux/commits/Krish-Sadhukhan/KVM-x86-Fill-in-conforming-vmx-svm-_x86_ops-and-vmx-svm-_nested_ops-via-macros/20201110-095653
base:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 407ab579637ced6dc32cfb2295afb7259cca4b22
config: i386-allyesconfig (attached as .config)
compiler: gcc-9 (Debian 9.3.0-15) 9.3.0
reproduce (this is a W=1 build):
        # https://github.com/0day-ci/linux/commit/26275e3a7e11da29dc47a214b3938e7261c61ec7
        git remote add linux-review https://github.com/0day-ci/linux
        git fetch --no-tags linux-review Krish-Sadhukhan/KVM-x86-Fill-in-conforming-vmx-svm-_x86_ops-and-vmx-svm-_nested_ops-via-macros/20201110-095653
        git checkout 26275e3a7e11da29dc47a214b3938e7261c61ec7
        # save the attached .config to linux build tree
        make W=1 ARCH=i386 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

>> arch/x86/kvm/svm/svm.c:1651:6: warning: no previous prototype for 'svm_get_cs_db_l_bits' [-Wmissing-prototypes]
    1651 | void svm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
         |      ^~~~~~~~~~~~~~~~~~~~
>> arch/x86/kvm/svm/svm.c:3372:6: warning: no previous prototype for 'svm_tlb_flush_all' [-Wmissing-prototypes]
    3372 | void svm_tlb_flush_all(struct kvm_vcpu *vcpu)
         |      ^~~~~~~~~~~~~~~~~
>> arch/x86/kvm/svm/svm.c:3377:6: warning: no previous prototype for 'svm_tlb_flush_current' [-Wmissing-prototypes]
    3377 | void svm_tlb_flush_current(struct kvm_vcpu *vcpu)
         |      ^~~~~~~~~~~~~~~~~~~~~
>> arch/x86/kvm/svm/svm.c:3382:6: warning: no previous prototype for 'svm_tlb_flush_guest' [-Wmissing-prototypes]
    3382 | void svm_tlb_flush_guest(struct kvm_vcpu *vcpu)
         |      ^~~~~~~~~~~~~~~~~~~

vim +/svm_get_cs_db_l_bits +1651 arch/x86/kvm/svm/svm.c

  1650	
> 1651	void svm_get_cs_db_l_bits(struct kvm_vcpu *vcpu, int *db, int *l)
  1652	{
  1653	        struct kvm_segment cs;
  1654	
  1655		kvm_get_segment(vcpu, &cs, VCPU_SREG_CS);
  1656	        *db = cs.db;
  1657	        *l = cs.l;
  1658	}
  1659	

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 75868 bytes --]

  reply	other threads:[~2020-11-10  3:56 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-10  1:23 [PATCH 0/5 v4] KVM: x86: Fill in conforming {vmx|svm}_x86_ops and {vmx|svm}_nested_ops via macros Krish Sadhukhan
2020-11-10  1:23 ` Krish Sadhukhan
2020-11-10  1:23 ` [PATCH 1/5 v4] KVM: x86: Change names of some of the kvm_x86_ops functions to make them more semantical and readable Krish Sadhukhan
2020-11-10  1:23   ` Krish Sadhukhan
2020-11-10  1:23 ` [PATCH 2/5 v4] KVM: SVM: Fill in conforming svm_x86_ops via macro Krish Sadhukhan
2020-11-10  1:23   ` Krish Sadhukhan
2020-11-10  3:56   ` kernel test robot [this message]
2020-11-10  3:56     ` kernel test robot
2020-11-10  1:23 ` [PATCH 3/5 v4] KVM: nSVM: Fill in conforming svm_nested_ops " Krish Sadhukhan
2020-11-10  1:23   ` Krish Sadhukhan
2020-11-10  1:23 ` [PATCH 4/5 v4] KVM: VMX: Fill in conforming vmx_x86_ops " Krish Sadhukhan
2020-11-10  1:23   ` Krish Sadhukhan
2020-11-10  1:49   ` Like Xu
2020-11-10 19:02     ` Krish Sadhukhan
2020-11-11  1:54       ` Xu, Like
2020-11-10  1:23 ` [PATCH 5/5 v4] KVM: nVMX: Fill in conforming vmx_nested_ops " Krish Sadhukhan
2020-11-10  1:23   ` Krish Sadhukhan

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=202011101153.tF40ffeQ-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=kbuild-all@lists.01.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.