linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
Cc: kbuild-all@01.org, rkrcmar@redhat.com, joro@8bytes.org,
	pbonzini@redhat.com, alex.williamson@redhat.com,
	kvm@vger.kernel.org, linux-kernel@vger.kernel.org,
	sherry.hurwitz@amd.com,
	Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
Subject: Re: [PART2 PATCH v6 12/12] svm: Implements update_pi_irte hook to setup posted interrupt
Date: Tue, 23 Aug 2016 18:51:37 +0800	[thread overview]
Message-ID: <201608231800.1Yy7ztTE%fengguang.wu@intel.com> (raw)
In-Reply-To: <1471549364-6672-13-git-send-email-Suravee.Suthikulpanit@amd.com>

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

Hi Suravee,

[auto build test WARNING on v4.7-rc7]
[cannot apply to iommu/next kvm/linux-next linux/master v4.8-rc2 v4.8-rc1 next-20160823]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
[Suggest to use git(>=2.9.0) format-patch --base=<commit> (or --base=auto for convenience) to record what (public, well-known) commit your patch series was built on]
[Check https://git-scm.com/docs/git-format-patch for more information]

url:    https://github.com/0day-ci/linux/commits/Suravee-Suthikulpanit/iommu-AMD-Introduce-IOMMU-AVIC-support/20160819-111539
config: i386-randconfig-s0-201633 (attached as .config)
compiler: gcc-6 (Debian 6.1.1-9) 6.1.1 20160705
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

All warnings (new ones prefixed by >>):

   In file included from arch/x86/kvm/svm.c:37:0:
   include/linux/amd-iommu.h:222:1: error: expected identifier or '(' before '{' token
    {
    ^
>> include/linux/amd-iommu.h:221:1: warning: 'amd_iommu_update_ga' used but never defined
    amd_iommu_update_ga(u32 cpu, u64 base, bool is_run, struct amd_ir_data *ir_data);
    ^~~~~~~~~~~~~~~~~~~

vim +/amd_iommu_update_ga +221 include/linux/amd-iommu.h

bda901f5 Suravee Suthikulpanit 2016-08-18  215  amd_iommu_register_ga_log_notifier(int (*notifier)(u32))
bda901f5 Suravee Suthikulpanit 2016-08-18  216  {
bda901f5 Suravee Suthikulpanit 2016-08-18  217  	return 0;
bda901f5 Suravee Suthikulpanit 2016-08-18  218  }
bda901f5 Suravee Suthikulpanit 2016-08-18  219  
d49c1352 Suravee Suthikulpanit 2016-08-18  220  static inline int
d49c1352 Suravee Suthikulpanit 2016-08-18 @221  amd_iommu_update_ga(u32 cpu, u64 base, bool is_run, struct amd_ir_data *ir_data);
d49c1352 Suravee Suthikulpanit 2016-08-18 @222  {
d49c1352 Suravee Suthikulpanit 2016-08-18  223  	return 0;
d49c1352 Suravee Suthikulpanit 2016-08-18  224  }
d49c1352 Suravee Suthikulpanit 2016-08-18  225  

:::::: The code at line 221 was first introduced by commit
:::::: d49c1352bd32284fa9619171c8a505973cf79c54 iommu/amd: Introduce amd_iommu_update_ga()

:::::: TO: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
:::::: CC: 0day robot <fengguang.wu@intel.com>

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/octet-stream, Size: 31358 bytes --]

      parent reply	other threads:[~2016-08-23 10:52 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-18 19:42 [PART2 PATCH v6 00/12] iommu/AMD: Introduce IOMMU AVIC support Suravee Suthikulpanit
2016-08-18 19:42 ` [PART2 PATCH v6 01/12] iommu/amd: Detect and enable guest vAPIC support Suravee Suthikulpanit
2016-08-18 19:42 ` [PART2 PATCH v6 02/12] iommu/amd: Move and introduce new IRTE-related unions and structures Suravee Suthikulpanit
2016-08-18 19:42 ` [PART2 PATCH v6 03/12] iommu/amd: Introduce interrupt remapping ops structure Suravee Suthikulpanit
2016-08-18 19:42 ` [PART2 PATCH v6 04/12] iommu/amd: Add support for multiple IRTE formats Suravee Suthikulpanit
2016-08-18 19:42 ` [PART2 PATCH v6 05/12] iommu/amd: Detect and initialize guest vAPIC log Suravee Suthikulpanit
2016-08-18 19:42 ` [PART2 PATCH v6 06/12] iommu/amd: Adding GALOG interrupt handler Suravee Suthikulpanit
2016-08-18 19:42 ` [PART2 PATCH v6 07/12] iommu/amd: Introduce amd_iommu_update_ga() Suravee Suthikulpanit
2016-08-22  5:50   ` kbuild test robot
2016-08-18 19:42 ` [PART2 PATCH v6 08/12] iommu/amd: Implements irq_set_vcpu_affinity() hook to setup vapic mode for pass-through devices Suravee Suthikulpanit
2016-08-18 19:42 ` [PART2 PATCH v6 09/12] iommu/amd: Enable vAPIC interrupt remapping mode by default Suravee Suthikulpanit
2016-08-18 19:42 ` [PART2 PATCH v6 10/12] svm: Introduces AVIC per-VM ID Suravee Suthikulpanit
2016-08-19 13:26   ` Radim Krčmář
2016-08-18 19:42 ` [PART2 PATCH v6 11/12] svm: Introduce AMD IOMMU avic_ga_log_notifier Suravee Suthikulpanit
2016-08-18 19:42 ` [PART2 PATCH v6 12/12] svm: Implements update_pi_irte hook to setup posted interrupt Suravee Suthikulpanit
2016-08-19 14:49   ` Radim Krčmář
2016-08-19 15:04     ` Radim Krčmář
2016-08-22  9:19     ` Suravee Suthikulpanit
2016-08-22 10:09       ` Suravee Suthikulpanit
2016-08-22 15:16         ` Radim Krčmář
2016-08-23 10:51   ` kbuild 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=201608231800.1Yy7ztTE%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=Suravee.Suthikulpanit@amd.com \
    --cc=alex.williamson@redhat.com \
    --cc=joro@8bytes.org \
    --cc=kbuild-all@01.org \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=rkrcmar@redhat.com \
    --cc=sherry.hurwitz@amd.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;
as well as URLs for NNTP newsgroup(s).