lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Sun, 11 Oct 2015 01:00:40 +0800
From:	kbuild test robot <lkp@...el.com>
To:	Michael Chan <mchan@...adcom.com>
Cc:	kbuild-all@...org, davem@...emloft.net, netdev@...r.kernel.org
Subject: Re: [PATCH net-next] bnxt_en: New Broadcom ethernet driver.

Hi Michael,

[auto build test ERROR on net-next/master -- if it's inappropriate base, please ignore]

config: microblaze-allmodconfig (attached as .config)
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        make.cross ARCH=microblaze 

All errors (new ones prefixed by >>):

   drivers/net/ethernet/broadcom/bnxt/bnxt.c: In function 'bnxt_set_real_num_queues':
>> drivers/net/ethernet/broadcom/bnxt/bnxt.c:4120:6: error: 'struct net_device' has no member named 'rx_cpu_rmap'
      dev->rx_cpu_rmap = alloc_irq_cpu_rmap(bp->rx_nr_rings);
         ^
   drivers/net/ethernet/broadcom/bnxt/bnxt.c:4121:10: error: 'struct net_device' has no member named 'rx_cpu_rmap'
     if (!dev->rx_cpu_rmap)
             ^
   drivers/net/ethernet/broadcom/bnxt/bnxt.c: In function 'bnxt_free_irq':
   drivers/net/ethernet/broadcom/bnxt/bnxt.c:4245:27: error: 'struct net_device' has no member named 'rx_cpu_rmap'
     free_irq_cpu_rmap(bp->dev->rx_cpu_rmap);
                              ^
   drivers/net/ethernet/broadcom/bnxt/bnxt.c:4246:9: error: 'struct net_device' has no member named 'rx_cpu_rmap'
     bp->dev->rx_cpu_rmap = NULL;
            ^
   drivers/net/ethernet/broadcom/bnxt/bnxt.c: In function 'bnxt_request_irq':
   drivers/net/ethernet/broadcom/bnxt/bnxt.c:4266:33: error: 'struct net_device' has no member named 'rx_cpu_rmap'
     struct cpu_rmap *rmap = bp->dev->rx_cpu_rmap;
                                    ^

vim +4120 drivers/net/ethernet/broadcom/bnxt/bnxt.c

  4114	
  4115		rc = netif_set_real_num_rx_queues(dev, bp->rx_nr_rings);
  4116		if (rc)
  4117			return rc;
  4118	
  4119		if (bp->rx_nr_rings)
> 4120			dev->rx_cpu_rmap = alloc_irq_cpu_rmap(bp->rx_nr_rings);
  4121		if (!dev->rx_cpu_rmap)
  4122			rc = -ENOMEM;
  4123	

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

Download attachment ".config.gz" of type "application/octet-stream" (42103 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ