mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: David Lin <yu-hao.lin@nxp.com>, linux-wireless@vger.kernel.org
Cc: oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org,
	briannorris@chromium.org, kvalo@kernel.org, francesco@dolcini.it,
	tsung-hsien.hsieh@nxp.com, David Lin <yu-hao.lin@nxp.com>
Subject: Re: [PATCH 42/43] wifi: nxpwifi: add Makefile and Kconfig files for nxpwifi compilation
Date: Wed, 26 Jun 2024 08:24:23 +0800	[thread overview]
Message-ID: <202406260848.0pH4xjvI-lkp@intel.com> (raw)
In-Reply-To: <20240621075208.513497-43-yu-hao.lin@nxp.com>

Hi David,

kernel test robot noticed the following build warnings:

[auto build test WARNING on 238d636723a30311e20fde0a361662e829fe488b]

url:    https://github.com/intel-lab-lkp/linux/commits/David-Lin/wifi-nxpwifi-add-11ac-c/20240625-161306
base:   238d636723a30311e20fde0a361662e829fe488b
patch link:    https://lore.kernel.org/r/20240621075208.513497-43-yu-hao.lin%40nxp.com
patch subject: [PATCH 42/43] wifi: nxpwifi: add Makefile and Kconfig files for nxpwifi compilation
config: m68k-allmodconfig (https://download.01.org/0day-ci/archive/20240626/202406260848.0pH4xjvI-lkp@intel.com/config)
compiler: m68k-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240626/202406260848.0pH4xjvI-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/202406260848.0pH4xjvI-lkp@intel.com/

All warnings (new ones prefixed by >>):

   drivers/net/wireless/nxp/nxpwifi/11n_rxreorder.c: In function 'nxpwifi_11n_dispatch_amsdu_pkt':
>> drivers/net/wireless/nxp/nxpwifi/11n_rxreorder.c:40:47: warning: variable 'rx_hdr' set but not used [-Wunused-but-set-variable]
      40 |                         struct rx_packet_hdr *rx_hdr;
         |                                               ^~~~~~
--
   drivers/net/wireless/nxp/nxpwifi/sta_event.c: In function 'nxpwifi_sta_event_link_lost':
>> drivers/net/wireless/nxp/nxpwifi/sta_event.c:21:13: warning: variable 'reason_code' set but not used [-Wunused-but-set-variable]
      21 |         u16 reason_code;
         |             ^~~~~~~~~~~
--
   drivers/net/wireless/nxp/nxpwifi/sta_rx.c: In function 'nxpwifi_process_rx_packet':
>> drivers/net/wireless/nxp/nxpwifi/sta_rx.c:78:25: warning: variable 'rx_pkt_len' set but not used [-Wunused-but-set-variable]
      78 |         u16 rx_pkt_off, rx_pkt_len;
         |                         ^~~~~~~~~~


vim +/rx_hdr +40 drivers/net/wireless/nxp/nxpwifi/11n_rxreorder.c

148be2798f7a0c David Lin 2024-06-21  17  
148be2798f7a0c David Lin 2024-06-21  18  /* This function will dispatch amsdu packet and forward it to kernel/upper
148be2798f7a0c David Lin 2024-06-21  19   * layer.
148be2798f7a0c David Lin 2024-06-21  20   */
148be2798f7a0c David Lin 2024-06-21  21  static int nxpwifi_11n_dispatch_amsdu_pkt(struct nxpwifi_private *priv,
148be2798f7a0c David Lin 2024-06-21  22  					  struct sk_buff *skb)
148be2798f7a0c David Lin 2024-06-21  23  {
148be2798f7a0c David Lin 2024-06-21  24  	struct rxpd *local_rx_pd = (struct rxpd *)(skb->data);
148be2798f7a0c David Lin 2024-06-21  25  	int ret;
148be2798f7a0c David Lin 2024-06-21  26  
148be2798f7a0c David Lin 2024-06-21  27  	if (le16_to_cpu(local_rx_pd->rx_pkt_type) == PKT_TYPE_AMSDU) {
148be2798f7a0c David Lin 2024-06-21  28  		struct sk_buff_head list;
148be2798f7a0c David Lin 2024-06-21  29  		struct sk_buff *rx_skb;
148be2798f7a0c David Lin 2024-06-21  30  
148be2798f7a0c David Lin 2024-06-21  31  		__skb_queue_head_init(&list);
148be2798f7a0c David Lin 2024-06-21  32  
148be2798f7a0c David Lin 2024-06-21  33  		skb_pull(skb, le16_to_cpu(local_rx_pd->rx_pkt_offset));
148be2798f7a0c David Lin 2024-06-21  34  		skb_trim(skb, le16_to_cpu(local_rx_pd->rx_pkt_length));
148be2798f7a0c David Lin 2024-06-21  35  
148be2798f7a0c David Lin 2024-06-21  36  		ieee80211_amsdu_to_8023s(skb, &list, priv->curr_addr,
148be2798f7a0c David Lin 2024-06-21  37  					 priv->wdev.iftype, 0, NULL, NULL, false);
148be2798f7a0c David Lin 2024-06-21  38  
148be2798f7a0c David Lin 2024-06-21  39  		while (!skb_queue_empty(&list)) {
148be2798f7a0c David Lin 2024-06-21 @40  			struct rx_packet_hdr *rx_hdr;
148be2798f7a0c David Lin 2024-06-21  41  
148be2798f7a0c David Lin 2024-06-21  42  			rx_skb = __skb_dequeue(&list);
148be2798f7a0c David Lin 2024-06-21  43  			rx_hdr = (struct rx_packet_hdr *)rx_skb->data;
148be2798f7a0c David Lin 2024-06-21  44  
148be2798f7a0c David Lin 2024-06-21  45  			if (priv->bss_role == NXPWIFI_BSS_ROLE_UAP)
148be2798f7a0c David Lin 2024-06-21  46  				ret = nxpwifi_uap_recv_packet(priv, rx_skb);
148be2798f7a0c David Lin 2024-06-21  47  			else
148be2798f7a0c David Lin 2024-06-21  48  				ret = nxpwifi_recv_packet(priv, rx_skb);
148be2798f7a0c David Lin 2024-06-21  49  			if (ret == -1)
148be2798f7a0c David Lin 2024-06-21  50  				nxpwifi_dbg(priv->adapter, ERROR,
148be2798f7a0c David Lin 2024-06-21  51  					    "Rx of A-MSDU failed");
148be2798f7a0c David Lin 2024-06-21  52  		}
148be2798f7a0c David Lin 2024-06-21  53  		return 0;
148be2798f7a0c David Lin 2024-06-21  54  	}
148be2798f7a0c David Lin 2024-06-21  55  
148be2798f7a0c David Lin 2024-06-21  56  	return -1;
148be2798f7a0c David Lin 2024-06-21  57  }
148be2798f7a0c David Lin 2024-06-21  58  

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

  parent reply	other threads:[~2024-06-26  0:25 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-21  7:51 [PATCH 00/43] wifi: nxpwifi: create nxpwifi to support iw61x David Lin
2024-06-21  7:51 ` [PATCH 01/43] wifi: nxpwifi: add 11ac.c David Lin
2024-06-28  8:22   ` Abel Vesa
2024-07-01  0:46     ` [EXT] " David Lin
2024-06-21  7:51 ` [PATCH 02/43] wifi: nxpwifi: add 11ac.h David Lin
2024-06-21  7:51 ` [PATCH 03/43] wifi: nxpwifi: add 11h.c David Lin
2024-06-21  7:51 ` [PATCH 04/43] wifi: nxpwifi: add 11n.c David Lin
2024-06-21  7:51 ` [PATCH 05/43] wifi: nxpwifi: add 11n.h David Lin
2024-06-21  7:51 ` [PATCH 06/43] wifi: nxpwifi: add 11n_aggr.c David Lin
2024-06-21  7:51 ` [PATCH 07/43] wifi: nxpwifi: add 11n_aggr.h David Lin
2024-06-21  7:51 ` [PATCH 08/43] wifi: nxpwifi: add 11n_rxreorder.c David Lin
2024-06-21  7:51 ` [PATCH 09/43] wifi: nxpwifi: add 11n_rxreorder.h David Lin
2024-06-21  7:51 ` [PATCH 10/43] wifi: nxpwifi: add cfg80211.c David Lin
2024-06-21  7:51 ` [PATCH 11/43] wifi: nxpwifi: add cfg80211.h David Lin
2024-06-21  7:51 ` [PATCH 12/43] wifi: nxpwifi: add cfp.c David Lin
2024-06-21  7:51 ` [PATCH 13/43] wifi: nxpwifi: add cmdevt.c David Lin
2024-06-21  7:51 ` [PATCH 14/43] wifi: nxpwifi: add cmdevt.h David Lin
2024-06-21  7:51 ` [PATCH 15/43] wifi: nxpwifi: add debugfs.c David Lin
2024-06-21  7:51 ` [PATCH 16/43] wifi: nxpwifi: add decl.h David Lin
2024-06-21  7:51 ` [PATCH 17/43] wifi: nxpwifi: add ethtool.c David Lin
2024-06-21  7:51 ` [PATCH 18/43] wifi: nxpwifi: add fw.h David Lin
2024-06-21  7:51 ` [PATCH 19/43] wifi: nxpwifi: add ie.c David Lin
2024-06-21  7:51 ` [PATCH 20/43] wifi: nxpwifi: add init.c David Lin
2024-06-21  7:51 ` [PATCH 21/43] wifi: nxpwifi: add ioctl.h David Lin
2024-06-21  7:51 ` [PATCH 22/43] wifi: nxpwifi: add join.c David Lin
2024-06-21  7:51 ` [PATCH 23/43] wifi: nxpwifi: add main.c David Lin
2024-06-21  7:51 ` [PATCH 24/43] wifi: nxpwifi: add main.h David Lin
2024-06-21  7:51 ` [PATCH 25/43] wifi: nxpwifi: add scan.c David Lin
2024-06-21  7:51 ` [PATCH 26/43] wifi: nxpwifi: add sdio.c David Lin
2024-06-26 11:40   ` [EXTERNAL] " Nemanov, Michael
2024-06-27  3:37     ` [EXT] " David Lin
2024-06-27  6:26       ` Nemanov, Michael
2024-06-27  6:33         ` [EXT] " David Lin
2024-06-21  7:51 ` [PATCH 27/43] wifi: nxpwifi: add sdio.h David Lin
2024-06-21  7:51 ` [PATCH 28/43] wifi: nxpwifi: add sta_cmd.c David Lin
2024-06-21  7:51 ` [PATCH 29/43] wifi: nxpwifi: add sta_event.c David Lin
2024-06-21  7:51 ` [PATCH 30/43] wifi: nxpwifi: add sta_ioctl.c David Lin
2024-06-21  7:51 ` [PATCH 31/43] wifi: nxpwifi: add sta_rx.c David Lin
2024-06-21  7:51 ` [PATCH 32/43] wifi: nxpwifi: add sta_tx.c David Lin
2024-06-21  7:51 ` [PATCH 33/43] wifi: nxpwifi: add txrx.c David Lin
2024-06-21  7:51 ` [PATCH 34/43] wifi: nxpwifi: add uap_cmd.c David Lin
2024-06-21  7:52 ` [PATCH 35/43] wifi: nxpwifi: add uap_event.c David Lin
2024-06-21  7:52 ` [PATCH 36/43] wifi: nxpwifi: add uap_txrx.c David Lin
2024-06-21  7:52 ` [PATCH 37/43] wifi: nxpwifi: add util.c David Lin
2024-06-21  7:52 ` [PATCH 38/43] wifi: nxpwifi: add util.h David Lin
2024-06-21  7:52 ` [PATCH 39/43] wifi: nxpwifi: add wmm.c David Lin
2024-06-21  7:52 ` [PATCH 40/43] wifi: nxpwifi: add wmm.h David Lin
2024-06-21  7:52 ` [PATCH 41/43] wifi: nxpwifi: add nxp sdio vendor id and iw61x device id David Lin
2024-06-21  7:52 ` [PATCH 42/43] wifi: nxpwifi: add Makefile and Kconfig files for nxpwifi compilation David Lin
2024-06-26  0:19   ` kernel test robot
2024-06-26  0:24   ` kernel test robot [this message]
2024-06-28  4:46   ` kernel test robot
2024-06-21  7:52 ` [PATCH 43/43] wifi: nxpwifi: add nxpwifi related information to MAINTAINERS David Lin
2024-06-21 17:53 ` [PATCH 00/43] wifi: nxpwifi: create nxpwifi to support iw61x Brian Norris
2024-06-21 18:20 ` Johannes Berg
2024-07-01  1:08   ` [EXT] " David Lin

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=202406260848.0pH4xjvI-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=briannorris@chromium.org \
    --cc=francesco@dolcini.it \
    --cc=kvalo@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=tsung-hsien.hsieh@nxp.com \
    --cc=yu-hao.lin@nxp.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

all inboxes | Powered by JetHome®