From: kernel test robot <lkp@intel.com>
To: Bryan O'Donoghue <bryan.odonoghue@linaro.org>,
kvalo@codeaurora.org, wcn36xx@lists.infradead.org,
linux-wireless@vger.kernel.org
Cc: kbuild-all@lists.01.org, bryan.odonoghue@linaro.org,
shawn.guo@linaro.org, benl@squareup.com, loic.poulain@linaro.org
Subject: Re: [PATCH 05/13] wcn36xx: Add ipv6 address tracking
Date: Tue, 29 Dec 2020 06:44:37 +0800 [thread overview]
Message-ID: <202012290616.cg4Ga3Pr-lkp@intel.com> (raw)
In-Reply-To: <20201228162839.369156-6-bryan.odonoghue@linaro.org>
[-- Attachment #1: Type: text/plain, Size: 3231 bytes --]
Hi Bryan,
I love your patch! Perhaps something to improve:
[auto build test WARNING on wireless-drivers-next/master]
[also build test WARNING on wireless-drivers/master ath6kl/ath-next v5.11-rc1 next-20201223]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Bryan-O-Donoghue/wcn36xx-Enable-downstream-consistent-Wake-on-Lan/20201229-003134
base: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git master
config: arc-allyesconfig (attached as .config)
compiler: arceb-elf-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/a7d3b150ccc65a022e531e7648080be9fedb1318
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Bryan-O-Donoghue/wcn36xx-Enable-downstream-consistent-Wake-on-Lan/20201229-003134
git checkout a7d3b150ccc65a022e531e7648080be9fedb1318
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arc
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
drivers/net/wireless/ath/wcn36xx/main.c:1092:23: warning: no previous prototype for 'wcn36xx_get_first_vif' [-Wmissing-prototypes]
1092 | struct ieee80211_vif *wcn36xx_get_first_vif(struct wcn36xx *wcn)
| ^~~~~~~~~~~~~~~~~~~~~
>> drivers/net/wireless/ath/wcn36xx/main.c:1220:6: warning: no previous prototype for 'wcn36xx_ipv6_addr_change' [-Wmissing-prototypes]
1220 | void wcn36xx_ipv6_addr_change(struct ieee80211_hw *hw,
| ^~~~~~~~~~~~~~~~~~~~~~~~
vim +/wcn36xx_ipv6_addr_change +1220 drivers/net/wireless/ath/wcn36xx/main.c
1218
1219 #if IS_ENABLED(CONFIG_IPV6)
> 1220 void wcn36xx_ipv6_addr_change(struct ieee80211_hw *hw,
1221 struct ieee80211_vif *vif,
1222 struct inet6_dev *idev)
1223 {
1224 struct wcn36xx_vif *vif_priv = wcn36xx_vif_to_priv(vif);
1225 struct inet6_ifaddr *ifa;
1226 int idx = 0;
1227
1228 memset(vif_priv->tentative_addrs, 0, sizeof(vif_priv->tentative_addrs));
1229
1230 read_lock_bh(&idev->lock);
1231 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1232 vif_priv->target_ipv6_addrs[idx] = ifa->addr;
1233 if (ifa->flags & IFA_F_TENTATIVE)
1234 __set_bit(idx, vif_priv->tentative_addrs);
1235 idx++;
1236 if (idx >= WCN36XX_HAL_IPV6_OFFLOAD_ADDR_MAX)
1237 break;
1238 wcn36xx_dbg(WCN36XX_DBG_MAC, "%pI6 %s\n", &ifa->addr,
1239 (ifa->flags & IFA_F_TENTATIVE) ? "tentative" : NULL);
1240 }
1241 read_unlock_bh(&idev->lock);
1242
1243 vif_priv->num_target_ipv6_addrs = idx;
1244 }
1245 #endif
1246
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 66525 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH 05/13] wcn36xx: Add ipv6 address tracking
Date: Tue, 29 Dec 2020 06:44:37 +0800 [thread overview]
Message-ID: <202012290616.cg4Ga3Pr-lkp@intel.com> (raw)
In-Reply-To: <20201228162839.369156-6-bryan.odonoghue@linaro.org>
[-- Attachment #1: Type: text/plain, Size: 3305 bytes --]
Hi Bryan,
I love your patch! Perhaps something to improve:
[auto build test WARNING on wireless-drivers-next/master]
[also build test WARNING on wireless-drivers/master ath6kl/ath-next v5.11-rc1 next-20201223]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/Bryan-O-Donoghue/wcn36xx-Enable-downstream-consistent-Wake-on-Lan/20201229-003134
base: https://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git master
config: arc-allyesconfig (attached as .config)
compiler: arceb-elf-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/0day-ci/linux/commit/a7d3b150ccc65a022e531e7648080be9fedb1318
git remote add linux-review https://github.com/0day-ci/linux
git fetch --no-tags linux-review Bryan-O-Donoghue/wcn36xx-Enable-downstream-consistent-Wake-on-Lan/20201229-003134
git checkout a7d3b150ccc65a022e531e7648080be9fedb1318
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=arc
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
drivers/net/wireless/ath/wcn36xx/main.c:1092:23: warning: no previous prototype for 'wcn36xx_get_first_vif' [-Wmissing-prototypes]
1092 | struct ieee80211_vif *wcn36xx_get_first_vif(struct wcn36xx *wcn)
| ^~~~~~~~~~~~~~~~~~~~~
>> drivers/net/wireless/ath/wcn36xx/main.c:1220:6: warning: no previous prototype for 'wcn36xx_ipv6_addr_change' [-Wmissing-prototypes]
1220 | void wcn36xx_ipv6_addr_change(struct ieee80211_hw *hw,
| ^~~~~~~~~~~~~~~~~~~~~~~~
vim +/wcn36xx_ipv6_addr_change +1220 drivers/net/wireless/ath/wcn36xx/main.c
1218
1219 #if IS_ENABLED(CONFIG_IPV6)
> 1220 void wcn36xx_ipv6_addr_change(struct ieee80211_hw *hw,
1221 struct ieee80211_vif *vif,
1222 struct inet6_dev *idev)
1223 {
1224 struct wcn36xx_vif *vif_priv = wcn36xx_vif_to_priv(vif);
1225 struct inet6_ifaddr *ifa;
1226 int idx = 0;
1227
1228 memset(vif_priv->tentative_addrs, 0, sizeof(vif_priv->tentative_addrs));
1229
1230 read_lock_bh(&idev->lock);
1231 list_for_each_entry(ifa, &idev->addr_list, if_list) {
1232 vif_priv->target_ipv6_addrs[idx] = ifa->addr;
1233 if (ifa->flags & IFA_F_TENTATIVE)
1234 __set_bit(idx, vif_priv->tentative_addrs);
1235 idx++;
1236 if (idx >= WCN36XX_HAL_IPV6_OFFLOAD_ADDR_MAX)
1237 break;
1238 wcn36xx_dbg(WCN36XX_DBG_MAC, "%pI6 %s\n", &ifa->addr,
1239 (ifa->flags & IFA_F_TENTATIVE) ? "tentative" : NULL);
1240 }
1241 read_unlock_bh(&idev->lock);
1242
1243 vif_priv->num_target_ipv6_addrs = idx;
1244 }
1245 #endif
1246
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 66525 bytes --]
next prev parent reply other threads:[~2020-12-28 23:16 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-28 16:28 [PATCH 00/13] wcn36xx: Enable downstream consistent Wake on Lan Bryan O'Donoghue
2020-12-28 16:28 ` [PATCH 01/13] wcn36xx: Return result of set_power_params in suspend Bryan O'Donoghue
2020-12-28 16:28 ` [PATCH 02/13] wcn36xx: Run suspend for the first ieee80211_vif Bryan O'Donoghue
2020-12-28 20:48 ` kernel test robot
2020-12-28 20:48 ` kernel test robot
2020-12-28 16:28 ` [PATCH 03/13] wcn36xx: Add ipv4 ARP offload support in suspend Bryan O'Donoghue
2021-01-11 11:18 ` Kalle Valo
2020-12-28 16:28 ` [PATCH 04/13] wcn36xx: Do not flush indication queue on suspend/resume Bryan O'Donoghue
2020-12-28 16:28 ` [PATCH 05/13] wcn36xx: Add ipv6 address tracking Bryan O'Donoghue
2020-12-28 22:44 ` kernel test robot [this message]
2020-12-28 22:44 ` kernel test robot
2020-12-28 16:28 ` [PATCH 06/13] wcn36xx: Add ipv6 namespace offload in suspend Bryan O'Donoghue
2020-12-28 21:49 ` kernel test robot
2020-12-28 21:49 ` kernel test robot
2020-12-29 2:15 ` Bryan O'Donoghue
2020-12-29 2:15 ` Bryan O'Donoghue
2021-01-11 11:27 ` Kalle Valo
2021-01-11 11:27 ` Kalle Valo
2021-01-12 10:51 ` Chen, Rong A
2021-01-12 10:51 ` [kbuild-all] " Chen, Rong A
2021-01-12 11:18 ` Kalle Valo
2021-01-12 11:18 ` [kbuild-all] " Kalle Valo
2021-01-13 1:57 ` Rong Chen
2021-01-13 1:57 ` [kbuild-all] " Rong Chen
2021-01-13 7:11 ` Kalle Valo
2021-01-13 7:11 ` [kbuild-all] " Kalle Valo
2020-12-28 16:28 ` [PATCH 07/13] wcn36xx: Flag WIPHY_WOWLAN_MAGIC_PKT Bryan O'Donoghue
2021-01-11 11:38 ` Kalle Valo
2021-01-11 11:49 ` Bryan O'Donoghue
2020-12-28 16:28 ` [PATCH 08/13] wcn36xx: Add set_rekey_data callback Bryan O'Donoghue
2020-12-28 16:28 ` [PATCH 09/13] wcn36xx: Add GTK offload to WoWLAN path Bryan O'Donoghue
2020-12-28 16:28 ` [PATCH 10/13] wcn36xx: Add GTK offload info to WoWLAN resume Bryan O'Donoghue
2021-01-11 11:28 ` Kalle Valo
2021-01-11 11:47 ` Bryan O'Donoghue
2021-01-11 11:39 ` Kalle Valo
2020-12-28 16:28 ` [PATCH 11/13] wcn36xx: Do not suspend if scan in progress Bryan O'Donoghue
2020-12-28 21:47 ` Benjamin Li
2021-01-11 11:31 ` Kalle Valo
2021-01-11 11:46 ` Bryan O'Donoghue
2021-01-11 12:26 ` Kalle Valo
2021-01-11 12:40 ` Bryan O'Donoghue
2021-01-11 11:34 ` Kalle Valo
2020-12-28 16:28 ` [PATCH 12/13] wcn36xx: Add Host suspend indication support Bryan O'Donoghue
2020-12-28 16:28 ` [PATCH 13/13] wcn36xx: Add host resume request support Bryan O'Donoghue
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=202012290616.cg4Ga3Pr-lkp@intel.com \
--to=lkp@intel.com \
--cc=benl@squareup.com \
--cc=bryan.odonoghue@linaro.org \
--cc=kbuild-all@lists.01.org \
--cc=kvalo@codeaurora.org \
--cc=linux-wireless@vger.kernel.org \
--cc=loic.poulain@linaro.org \
--cc=shawn.guo@linaro.org \
--cc=wcn36xx@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.