mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Jarod Wilson <jarod@redhat.com>
Cc: kbuild-all@01.org, linux-kernel@vger.kernel.org,
	Jarod Wilson <jarod@redhat.com>,
	Mark Rustad <mark.d.rustad@intel.com>,
	Jeff Kirsher <jeffrey.t.kirsher@intel.com>,
	Alexand Duyck <alexander.duyck@gmail.com>,
	intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org
Subject: Re: [PATCH] igb: improve handling of disconnected adapters
Date: Wed, 7 Oct 2015 06:09:28 +0800	[thread overview]
Message-ID: <201510070652.mFIXT2AO%fengguang.wu@intel.com> (raw)
In-Reply-To: <1444168362-39101-1-git-send-email-jarod@redhat.com>

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

Hi Jarod,

[auto build test ERROR on v4.3-rc4 -- if it's inappropriate base, please ignore]

config: i386-randconfig-x009-201540 (attached as .config)
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

All error/warnings (new ones prefixed by >>):

   drivers/net/ethernet/intel/igb/igb_main.c: In function 'igb_request_msix':
>> drivers/net/ethernet/intel/igb/igb_main.c:962:35: error: 'struct igb_adapter' has no member named 'io_addr'
      q_vector->itr_register = adapter->io_addr + E1000_EITR(vector);
                                      ^
>> drivers/net/ethernet/intel/igb/igb_main.c:949:19: warning: unused variable 'hw' [-Wunused-variable]
     struct e1000_hw *hw = &adapter->hw;
                      ^
   drivers/net/ethernet/intel/igb/igb_main.c: In function 'igb_alloc_q_vector':
   drivers/net/ethernet/intel/igb/igb_main.c:1233:34: error: 'struct igb_adapter' has no member named 'io_addr'
     q_vector->itr_register = adapter->io_addr + E1000_EITR(0);
                                     ^
   drivers/net/ethernet/intel/igb/igb_main.c: In function 'igb_configure_tx_ring':
   drivers/net/ethernet/intel/igb/igb_main.c:3282:22: error: 'struct igb_adapter' has no member named 'io_addr'
     ring->tail = adapter->io_addr + E1000_TDT(reg_idx);
                         ^
   drivers/net/ethernet/intel/igb/igb_main.c: In function 'igb_configure_rx_ring':
   drivers/net/ethernet/intel/igb/igb_main.c:3638:22: error: 'struct igb_adapter' has no member named 'io_addr'
     ring->tail = adapter->io_addr + E1000_RDT(reg_idx);
                         ^

vim +962 drivers/net/ethernet/intel/igb/igb_main.c

   943	 *  igb_request_msix allocates MSI-X vectors and requests interrupts from the
   944	 *  kernel.
   945	 **/
   946	static int igb_request_msix(struct igb_adapter *adapter)
   947	{
   948		struct net_device *netdev = adapter->netdev;
 > 949		struct e1000_hw *hw = &adapter->hw;
   950		int i, err = 0, vector = 0, free_vector = 0;
   951	
   952		err = request_irq(adapter->msix_entries[vector].vector,
   953				  igb_msix_other, 0, netdev->name, adapter);
   954		if (err)
   955			goto err_out;
   956	
   957		for (i = 0; i < adapter->num_q_vectors; i++) {
   958			struct igb_q_vector *q_vector = adapter->q_vector[i];
   959	
   960			vector++;
   961	
 > 962			q_vector->itr_register = adapter->io_addr + E1000_EITR(vector);
   963	
   964			if (q_vector->rx.ring && q_vector->tx.ring)
   965				sprintf(q_vector->name, "%s-TxRx-%u", netdev->name,

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

  reply	other threads:[~2015-10-06 22:10 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-21 17:11 [PATCH] igb: add more checks for disconnected adapter Jarod Wilson
2015-09-21 21:57 ` [Intel-wired-lan] " Alexander Duyck
2015-09-22  4:14   ` Jarod Wilson
2015-09-22  5:03     ` Mark Rustad
2015-09-22  5:21     ` Alexander Duyck
2015-10-06 21:50       ` Jarod Wilson
2015-10-06 21:52         ` [PATCH] igb: improve handling of disconnected adapters Jarod Wilson
2015-10-06 22:09           ` kbuild test robot [this message]
2015-10-06 22:59           ` Alexander Duyck
2015-10-07 13:21             ` [PATCH v3] " Jarod Wilson
2015-10-07 15:03               ` Alexander Duyck
2015-10-13  6:10               ` Jeff Kirsher
2015-10-19 15:52                 ` [PATCH v2] " Jarod Wilson
2015-11-20  4:40                   ` [Intel-wired-lan] " Brown, Aaron F

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=201510070652.mFIXT2AO%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=alexander.duyck@gmail.com \
    --cc=intel-wired-lan@lists.osuosl.org \
    --cc=jarod@redhat.com \
    --cc=jeffrey.t.kirsher@intel.com \
    --cc=kbuild-all@01.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.d.rustad@intel.com \
    --cc=netdev@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome