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] [day] [month] [year] [list]
Date:	Fri, 1 Jul 2016 01:23:49 +0800
From:	kbuild test robot <lkp@...el.com>
To:	Maxim Altshul <maxim.altshul@...com>
Cc:	kbuild-all@...org, linux-kernel@...r.kernel.org,
	Maxim Altshul <maxim.altshul@...com>,
	Kalle Valo <kvalo@...eaurora.org>,
	Eliad Peller <eliad@...ery.com>,
	Arik Nemtsov <arik@...ery.com>, Yaniv Machani <yanivma@...com>,
	linux-wireless@...r.kernel.org, netdev@...r.kernel.org
Subject: Re: [PATCH v3] wlcore: Add support for get_expected_throughput opcode

Hi,

[auto build test ERROR on wireless-drivers-next/master]
[also build test ERROR on v4.7-rc5 next-20160630]
[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/Maxim-Altshul/wlcore-Add-support-for-get_expected_throughput-opcode/20160630-234034
base:   https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git master
config: alpha-allmodconfig (attached as .config)
compiler: alpha-linux-gnu-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=alpha 

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

   drivers/net/wireless/ti/wlcore/main.c: In function 'wlcore_op_get_expected_throughput':
>> drivers/net/wireless/ti/wlcore/main.c:5678:28: error: 'struct wl1271_station' has no member named 'wl'
     struct wl1271 *wl = wl_sta->wl;
                               ^
>> drivers/net/wireless/ti/wlcore/main.c:5682:26: error: 'struct wl1271_link' has no member named 'fw_rate_mbps'
      return (wl->links[hlid].fw_rate_mbps * 1000);
                             ^
>> drivers/net/wireless/ti/wlcore/main.c:5683:1: warning: control reaches end of non-void function [-Wreturn-type]
    }
    ^

vim +5678 drivers/net/wireless/ti/wlcore/main.c

  5672		mutex_unlock(&wl->mutex);
  5673	}
  5674	
  5675	static u32 wlcore_op_get_expected_throughput(struct ieee80211_sta *sta)
  5676	{
  5677		struct wl1271_station *wl_sta = (struct wl1271_station *)sta->drv_priv;
> 5678		struct wl1271 *wl = wl_sta->wl;
  5679		u8 hlid = wl_sta->hlid;
  5680	
  5681		/* return in units of Kbps */
> 5682			return (wl->links[hlid].fw_rate_mbps * 1000);
> 5683	}
  5684	
  5685	static bool wl1271_tx_frames_pending(struct ieee80211_hw *hw)
  5686	{

---
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" (46189 bytes)

Powered by blists - more mailing lists