From: kernel test robot <lkp@intel.com>
To: greearb@candelatech.com, linux-wireless@vger.kernel.org
Cc: llvm@lists.linux.dev, oe-kbuild-all@lists.linux.dev,
Ben Greear <greearb@candelatech.com>
Subject: Re: [PATCH v2] wifi: mac80211: ethtool: use best available link for default stats.
Date: Wed, 25 Oct 2023 00:57:12 +0800 [thread overview]
Message-ID: <202310250024.SZSqLsNe-lkp@intel.com> (raw)
In-Reply-To: <20231020152353.3705759-1-greearb@candelatech.com>
Hi,
kernel test robot noticed the following build warnings:
[auto build test WARNING on wireless-next/main]
[also build test WARNING on wireless/main linus/master v6.6-rc7 next-20231024]
[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#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/greearb-candelatech-com/wifi-mac80211-ethtool-use-best-available-link-for-default-stats/20231020-232523
base: https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git main
patch link: https://lore.kernel.org/r/20231020152353.3705759-1-greearb%40candelatech.com
patch subject: [PATCH v2] wifi: mac80211: ethtool: use best available link for default stats.
config: mips-bmips_stb_defconfig (https://download.01.org/0day-ci/archive/20231025/202310250024.SZSqLsNe-lkp@intel.com/config)
compiler: clang version 17.0.0 (https://github.com/llvm/llvm-project.git 4a5ac14ee968ff0ad5d2cc1ffa0299048db4c88a)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20231025/202310250024.SZSqLsNe-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202310250024.SZSqLsNe-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> net/mac80211/link.c:143:7: warning: variable 'sta1' is uninitialized when used here [-Wuninitialized]
143 | if (sta1->sta_state > best_sta->sta_state) {
| ^~~~
net/mac80211/link.c:131:24: note: initialize the variable 'sta1' to silence this warning
131 | struct sta_info *sta1;
| ^
| = NULL
1 warning generated.
vim +/sta1 +143 net/mac80211/link.c
117
118 /* For cases where we need a link for stats and such, and just want
119 * a 'good' one.
120 */
121 struct sta_info *
122 ieee80211_find_best_sta_link(struct ieee80211_sub_if_data *sdata,
123 struct ieee80211_link_data **link)
124 {
125 struct ieee80211_link_data *best_link = NULL;
126 struct sta_info *best_sta = NULL;
127 int i;
128
129 for (i = 0; i < IEEE80211_MLD_MAX_NUM_LINKS; i++) {
130 struct ieee80211_link_data *link1;
131 struct sta_info *sta1;
132 bool sta1_better = false;
133
134 link1 = sdata_dereference(sdata->link[i], sdata);
135 if (!link1)
136 continue;
137 if (!best_link) {
138 best_link = link1;
139 best_sta = sta_info_get_bss(sdata, best_link->u.mgd.bssid);
140 continue;
141 }
142 /* we have two potential best links, find one we like best. */
> 143 if (sta1->sta_state > best_sta->sta_state) {
144 sta1_better = true;
145 } else if (sta1->sta_state == best_sta->sta_state) {
146 u32 freq_best = 0;
147 u32 freq1 = 0;
148
149 if (best_link->conf->chandef.chan)
150 freq_best = best_link->conf->chandef.chan->center_freq;
151 if (link1->conf->chandef.chan)
152 freq1 = link1->conf->chandef.chan->center_freq;
153 if (freq1 > freq_best)
154 sta1_better = true;
155 }
156
157 if (sta1_better) {
158 best_sta = sta1;
159 best_link = link1;
160 }
161 }
162
163 *link = best_link;
164 if (best_link)
165 return sta_info_get_bss(sdata, best_link->u.mgd.bssid);
166 return sta_info_get_bss(sdata, sdata->deflink.u.mgd.bssid);
167 }
168
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2023-10-24 16:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-20 15:23 [PATCH v2] wifi: mac80211: ethtool: use best available link for default stats greearb
2023-10-24 16:57 ` kernel test robot [this message]
2023-10-24 18:31 ` Ben Greear
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=202310250024.SZSqLsNe-lkp@intel.com \
--to=lkp@intel.com \
--cc=greearb@candelatech.com \
--cc=linux-wireless@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=oe-kbuild-all@lists.linux.dev \
/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