Linux wireless drivers development
 help / color / mirror / Atom feed
From: kbuild test robot <lkp@intel.com>
To: Amitkumar Karwar <akarwar@marvell.com>
Cc: kbuild-all@01.org, linux-wireless@vger.kernel.org,
	Cathy Luo <cluo@marvell.com>,
	Nishant Sarmukadam <nishants@marvell.com>,
	Xinming Hu <huxm@marvell.com>,
	Amitkumar Karwar <akarwar@marvell.com>
Subject: Re: [PATCH v2 2/2] mwifiex: add hostcmd wext ioctl support
Date: Wed, 13 Jul 2016 21:23:43 +0800	[thread overview]
Message-ID: <201607132129.WgpykfaF%fengguang.wu@intel.com> (raw)
In-Reply-To: <1468408746-28376-2-git-send-email-akarwar@marvell.com>

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

Hi,

[auto build test ERROR on wireless-drivers-next/master]
[also build test ERROR on v4.7-rc7 next-20160712]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Amitkumar-Karwar/mwifiex-add-manufacturing-mode-support/20160713-192928
base:   https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git master
config: arm-exynos_defconfig (attached as .config)
compiler: arm-linux-gnueabi-gcc (Debian 5.3.1-8) 5.3.1 20160205
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=arm 

All errors (new ones prefixed by >>):

   net/wireless/wext-core.c: In function 'wireless_process_ioctl':
>> net/wireless/wext-core.c:942:31: error: 'struct net_device' has no member named 'wireless_handlers'
     if (cmd == SIOCGIWPRIV && dev->wireless_handlers)
                                  ^
--
   net/wireless/wext-priv.c: In function 'iw_handler_get_private':
>> net/wireless/wext-priv.c:22:10: error: 'struct net_device' has no member named 'wireless_handlers'
     if ((dev->wireless_handlers->num_private_args == 0) ||
             ^
   net/wireless/wext-priv.c:23:9: error: 'struct net_device' has no member named 'wireless_handlers'
        (dev->wireless_handlers->private_args == NULL))
            ^
   net/wireless/wext-priv.c:27:29: error: 'struct net_device' has no member named 'wireless_handlers'
     if (wrqu->data.length < dev->wireless_handlers->num_private_args) {
                                ^
   net/wireless/wext-priv.c:31:26: error: 'struct net_device' has no member named 'wireless_handlers'
      wrqu->data.length = dev->wireless_handlers->num_private_args;
                             ^
   net/wireless/wext-priv.c:36:25: error: 'struct net_device' has no member named 'wireless_handlers'
     wrqu->data.length = dev->wireless_handlers->num_private_args;
                            ^
   net/wireless/wext-priv.c:39:19: error: 'struct net_device' has no member named 'wireless_handlers'
     memcpy(extra, dev->wireless_handlers->private_args,
                      ^
   net/wireless/wext-priv.c: In function 'get_priv_descr_and_size':
   net/wireless/wext-priv.c:100:21: error: 'struct net_device' has no member named 'wireless_handlers'
     for (i = 0; i < dev->wireless_handlers->num_private_args; i++) {
                        ^
   net/wireless/wext-priv.c:101:17: error: 'struct net_device' has no member named 'wireless_handlers'
      if (cmd == dev->wireless_handlers->private_args[i].cmd) {
                    ^
   net/wireless/wext-priv.c:102:16: error: 'struct net_device' has no member named 'wireless_handlers'
       descr = &dev->wireless_handlers->private_args[i];
                   ^

vim +942 net/wireless/wext-core.c

3d23e349 net/wireless/wext-core.c Johannes Berg   2009-09-29  936  	 * (cmd >= SIOCIWFIRST && cmd <= SIOCIWLAST) */
3d23e349 net/wireless/wext-core.c Johannes Berg   2009-09-29  937  	if (cmd == SIOCGIWSTATS)
3d23e349 net/wireless/wext-core.c Johannes Berg   2009-09-29  938  		return standard(dev, iwr, cmd, info,
3d23e349 net/wireless/wext-core.c Johannes Berg   2009-09-29  939  				&iw_handler_get_iwstats);
^1da177e net/core/wireless.c      Linus Torvalds  2005-04-16  940  
3d23e349 net/wireless/wext-core.c Johannes Berg   2009-09-29  941  #ifdef CONFIG_WEXT_PRIV
dd8ceabc net/wireless/wext.c      Johannes Berg   2007-04-26 @942  	if (cmd == SIOCGIWPRIV && dev->wireless_handlers)
0f5cabba net/wireless/wext.c      David S. Miller 2008-06-03  943  		return standard(dev, iwr, cmd, info,
3d23e349 net/wireless/wext-core.c Johannes Berg   2009-09-29  944  				iw_handler_get_private);
3d23e349 net/wireless/wext-core.c Johannes Berg   2009-09-29  945  #endif

:::::: The code at line 942 was first introduced by commit
:::::: dd8ceabcd10d47f6f28ecfaf2eac7beffca11b3c [WEXT]: Cleanup early ioctl call path.

:::::: TO: Johannes Berg <johannes@sipsolutions.net>
:::::: CC: David S. Miller <davem@davemloft.net>

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

      reply	other threads:[~2016-07-13 13:25 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-13 11:19 [PATCH v2 1/2] mwifiex: add manufacturing mode support Amitkumar Karwar
2016-07-13 11:19 ` [PATCH v2 2/2] mwifiex: add hostcmd wext ioctl support Amitkumar Karwar
2016-07-13 13:23   ` 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=201607132129.WgpykfaF%fengguang.wu@intel.com \
    --to=lkp@intel.com \
    --cc=akarwar@marvell.com \
    --cc=cluo@marvell.com \
    --cc=huxm@marvell.com \
    --cc=kbuild-all@01.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=nishants@marvell.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