mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: jakeo@microsoft.com
Cc: kbuild-all@01.org, gregkh@linuxfoundation.org, kys@microsoft.com,
	linux-kernel@vger.kernel.org, devel@linuxdriverproject.org,
	olaf@aepfle.de, apw@canonical.com, vkuznets@redhat.com,
	tglx@linutronix.de, haiyangz@microsoft.com, marc.zyngier@arm.com,
	bhelgaas@google.com, linux-pci@vger.kernel.org,
	Jake Oshins <jakeo@microsoft.com>
Subject: Re: [PATCH v9 7/7] PCI: hv: New paravirtual PCI front-end for Hyper-V VMs
Date: Thu, 10 Dec 2015 15:24:41 +0800	[thread overview]
Message-ID: <201512101532.pFUJCv85%fengguang.wu@intel.com> (raw)
In-Reply-To: <1449701697-6366-8-git-send-email-jakeo@microsoft.com>

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

Hi Jake,

[auto build test ERROR on pci/next]
[also build test ERROR on v4.4-rc4 next-20151209]

url:    https://github.com/0day-ci/linux/commits/jakeo-microsoft-com/PCI-hv-New-paravirtual-PCI-front-end-for-Hyper-V-VMs/20151210-070027
base:   https://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git next
config: x86_64-randconfig-x006-12100835 (attached as .config)
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   drivers/pci/host/hv_pcifront.c: In function 'hv_compose_msi_msg':
>> drivers/pci/host/hv_pcifront.c:830:4: error: 'apic' undeclared (first use in this function)
      (apic->irq_delivery_mode == dest_LowestPrio) ? 1 : 0;
       ^
   drivers/pci/host/hv_pcifront.c:830:4: note: each undeclared identifier is reported only once for each function it appears in
   drivers/pci/host/hv_pcifront.c: In function 'hv_pci_allocate_bridge_windows':
   drivers/pci/host/hv_pcifront.c:1776:18: warning: unused variable 'length' [-Wunused-variable]
     resource_size_t length;
                     ^

vim +/apic +830 drivers/pci/host/hv_pcifront.c

   824		int_pkt = (struct pci_create_interrupt *)&ctxt.pkt.message;
   825		int_pkt->message_type.message_type = PCI_CREATE_INTERRUPT_MESSAGE;
   826		int_pkt->wslot.slot = hpdev->desc.win_slot.slot;
   827		int_pkt->int_desc.vector = cfg->vector;
   828		int_pkt->int_desc.vector_count = 1;
   829		int_pkt->int_desc.delivery_mode =
 > 830			(apic->irq_delivery_mode == dest_LowestPrio) ? 1 : 0;
   831	
   832		/*
   833		 * This bit doesn't have to work on machines with more than 64

---
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: 24296 bytes --]

  parent reply	other threads:[~2015-12-10  7:25 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-09 22:54 [PATCH v9 0/7] " jakeo
2015-12-09 22:54 ` [PATCH v9 1/7] drivers:hv: Export a function that maps Linux CPU num onto Hyper-V proc num jakeo
2015-12-09 22:54 ` [PATCH v9 2/7] drivers:hv: Export hv_do_hypercall() jakeo
2015-12-09 22:54 ` [PATCH v9 3/7] PCI: Make it possible to implement a PCI MSI IRQ Domain in a module jakeo
2015-12-09 22:54 ` [PATCH v9 4/7] PCI: Add fwnode_handle to pci_sysdata jakeo
2016-01-08 21:57   ` Jake Oshins
2015-12-09 22:54 ` [PATCH v9 5/7] PCI: irqdomain: Look up IRQ domain by fwnode_handle jakeo
2015-12-09 22:54 ` [PATCH v9 6/7] drivers:hv: Define the channel type of Hyper-V PCI Express pass-through jakeo
2015-12-09 22:54 ` [PATCH v9 7/7] PCI: hv: New paravirtual PCI front-end for Hyper-V VMs jakeo
2015-12-10  6:05   ` kbuild test robot
2015-12-10  7:24   ` kbuild test robot [this message]
2015-12-15 17:36 ` [PATCH v9 0/7] " KY Srinivasan
2015-12-19 11:27   ` Thomas Gleixner
2015-12-19 17:23     ` KY Srinivasan
2015-12-19 20:21       ` Thomas Gleixner
2015-12-20  5:03         ` KY Srinivasan

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=201512101532.pFUJCv85%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=apw@canonical.com \
    --cc=bhelgaas@google.com \
    --cc=devel@linuxdriverproject.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=haiyangz@microsoft.com \
    --cc=jakeo@microsoft.com \
    --cc=kbuild-all@01.org \
    --cc=kys@microsoft.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=marc.zyngier@arm.com \
    --cc=olaf@aepfle.de \
    --cc=tglx@linutronix.de \
    --cc=vkuznets@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

Powered by JetHome