* Re: [PATCH v2 1/2] wifi: nl80211: add link id of transmitted profile for MLO MBSSID
[not found] <20241025013857.2793346-2-quic_msinada@quicinc.com>
@ 2024-10-26 1:55 ` kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2024-10-26 1:55 UTC (permalink / raw)
To: Muna Sinada, johannes
Cc: llvm, oe-kbuild-all, linux-wireless, Rameshkumar Sundaram,
Aloka Dixit, Muna Sinada
Hi Muna,
kernel test robot noticed the following build warnings:
[auto build test WARNING on wireless-next/main]
[also build test WARNING on wireless/main ath/ath-next linus/master v6.12-rc4 next-20241025]
[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/Muna-Sinada/wifi-nl80211-add-link-id-of-transmitted-profile-for-MLO-MBSSID/20241025-094154
base: https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git main
patch link: https://lore.kernel.org/r/20241025013857.2793346-2-quic_msinada%40quicinc.com
patch subject: [PATCH v2 1/2] wifi: nl80211: add link id of transmitted profile for MLO MBSSID
config: x86_64-kexec (https://download.01.org/0day-ci/archive/20241026/202410260903.OviN4GZO-lkp@intel.com/config)
compiler: clang version 19.1.2 (https://github.com/llvm/llvm-project 7ba7d8e2f7b6445b60679da826210cdde29eaf8b)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20241026/202410260903.OviN4GZO-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/202410260903.OviN4GZO-lkp@intel.com/
All warnings (new ones prefixed by >>):
In file included from net/wireless/nl80211.c:16:
In file included from include/linux/if_ether.h:19:
In file included from include/linux/skbuff.h:17:
In file included from include/linux/bvec.h:10:
In file included from include/linux/highmem.h:8:
In file included from include/linux/cacheflush.h:5:
In file included from arch/x86/include/asm/cacheflush.h:5:
In file included from include/linux/mm.h:2213:
include/linux/vmstat.h:504:43: warning: arithmetic between different enumeration types ('enum zone_stat_item' and 'enum numa_stat_item') [-Wenum-enum-conversion]
504 | return vmstat_text[NR_VM_ZONE_STAT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~ ^
505 | item];
| ~~~~
include/linux/vmstat.h:511:43: warning: arithmetic between different enumeration types ('enum zone_stat_item' and 'enum numa_stat_item') [-Wenum-enum-conversion]
511 | return vmstat_text[NR_VM_ZONE_STAT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~ ^
512 | NR_VM_NUMA_EVENT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~~
include/linux/vmstat.h:518:36: warning: arithmetic between different enumeration types ('enum node_stat_item' and 'enum lru_list') [-Wenum-enum-conversion]
518 | return node_stat_name(NR_LRU_BASE + lru) + 3; // skip "nr_"
| ~~~~~~~~~~~ ^ ~~~
include/linux/vmstat.h:524:43: warning: arithmetic between different enumeration types ('enum zone_stat_item' and 'enum numa_stat_item') [-Wenum-enum-conversion]
524 | return vmstat_text[NR_VM_ZONE_STAT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~ ^
525 | NR_VM_NUMA_EVENT_ITEMS +
| ~~~~~~~~~~~~~~~~~~~~~~
>> net/wireless/nl80211.c:5588:13: warning: variable 'err' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized]
5588 | } else if (tb[NL80211_MBSSID_CONFIG_ATTR_TX_LINK_ID]) {
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
net/wireless/nl80211.c:5599:9: note: uninitialized use occurs here
5599 | return err;
| ^~~
net/wireless/nl80211.c:5588:9: note: remove the 'if' if its condition is always false
5588 | } else if (tb[NL80211_MBSSID_CONFIG_ATTR_TX_LINK_ID]) {
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5589 | goto out;
| ~~~~~~~~~
5590 | }
| ~
net/wireless/nl80211.c:5579:7: warning: variable 'err' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized]
5579 | if (!tb[NL80211_MBSSID_CONFIG_ATTR_TX_LINK_ID])
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
net/wireless/nl80211.c:5599:9: note: uninitialized use occurs here
5599 | return err;
| ^~~
net/wireless/nl80211.c:5579:3: note: remove the 'if' if its condition is always false
5579 | if (!tb[NL80211_MBSSID_CONFIG_ATTR_TX_LINK_ID])
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5580 | goto out;
| ~~~~~~~~
net/wireless/nl80211.c:5527:9: note: initialize the variable 'err' to silence this warning
5527 | int err;
| ^
| = 0
6 warnings generated.
vim +5588 net/wireless/nl80211.c
5519
5520 static int nl80211_parse_mbssid_config(struct wiphy *wiphy,
5521 struct net_device *dev,
5522 struct nlattr *attrs,
5523 struct cfg80211_mbssid_config *config,
5524 u8 num_elems)
5525 {
5526 struct nlattr *tb[NL80211_MBSSID_CONFIG_ATTR_MAX + 1];
5527 int err;
5528
5529 if (!wiphy->mbssid_max_interfaces)
5530 return -EOPNOTSUPP;
5531
5532 if (nla_parse_nested(tb, NL80211_MBSSID_CONFIG_ATTR_MAX, attrs, NULL,
5533 NULL) ||
5534 !tb[NL80211_MBSSID_CONFIG_ATTR_INDEX])
5535 return -EINVAL;
5536
5537 config->ema = nla_get_flag(tb[NL80211_MBSSID_CONFIG_ATTR_EMA]);
5538 if (config->ema) {
5539 if (!wiphy->ema_max_profile_periodicity)
5540 return -EOPNOTSUPP;
5541
5542 if (num_elems > wiphy->ema_max_profile_periodicity)
5543 return -EINVAL;
5544 }
5545
5546 config->index = nla_get_u8(tb[NL80211_MBSSID_CONFIG_ATTR_INDEX]);
5547 if (config->index >= wiphy->mbssid_max_interfaces ||
5548 (!config->index && !num_elems))
5549 return -EINVAL;
5550
5551 if (tb[NL80211_MBSSID_CONFIG_ATTR_TX_IFINDEX]) {
5552 u32 tx_ifindex =
5553 nla_get_u32(tb[NL80211_MBSSID_CONFIG_ATTR_TX_IFINDEX]);
5554
5555 if ((!config->index && tx_ifindex != dev->ifindex) ||
5556 (config->index && tx_ifindex == dev->ifindex))
5557 return -EINVAL;
5558
5559 if (tx_ifindex != dev->ifindex) {
5560 config->tx_wdev =
5561 dev_get_by_index(wiphy_net(wiphy), tx_ifindex)->ieee80211_ptr;
5562 if (!config->tx_wdev ||
5563 config->tx_wdev->wiphy != wiphy ||
5564 config->tx_wdev->iftype != NL80211_IFTYPE_AP) {
5565 err = -EINVAL;
5566 goto out;
5567 }
5568 } else {
5569 config->tx_wdev = dev->ieee80211_ptr;
5570 }
5571 } else if (!config->index) {
5572 config->tx_wdev = dev->ieee80211_ptr;
5573 } else {
5574 return -EINVAL;
5575 }
5576
5577 config->tx_link_id = 0;
5578 if (config->tx_wdev->valid_links) {
5579 if (!tb[NL80211_MBSSID_CONFIG_ATTR_TX_LINK_ID])
5580 goto out;
5581
5582 config->tx_link_id =
5583 nla_get_u8(tb[NL80211_MBSSID_CONFIG_ATTR_TX_LINK_ID]);
5584 if (!(config->tx_wdev->valid_links & BIT(config->tx_link_id))) {
5585 err = -ENOLINK;
5586 goto out;
5587 }
> 5588 } else if (tb[NL80211_MBSSID_CONFIG_ATTR_TX_LINK_ID]) {
5589 goto out;
5590 }
5591
5592 return 0;
5593
5594 out:
5595 if (config->tx_wdev && config->tx_wdev->netdev &&
5596 config->tx_wdev->netdev != dev)
5597 dev_put(config->tx_wdev->netdev);
5598
5599 return err;
5600 }
5601
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-10-26 1:56 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20241025013857.2793346-2-quic_msinada@quicinc.com>
2024-10-26 1:55 ` [PATCH v2 1/2] wifi: nl80211: add link id of transmitted profile for MLO MBSSID kernel test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox