All of lore.kernel.org
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Roopni Devanathan <quic_rdevanat@quicinc.com>
Cc: oe-kbuild-all@lists.linux.dev
Subject: Re: [PATCH v5 3/5] wifi: mac80211: Set RTS threshold on per-radio basis
Date: Mon, 24 Mar 2025 02:03:02 +0800	[thread overview]
Message-ID: <202503240158.ILYUhCHX-lkp@intel.com> (raw)
In-Reply-To: <20250323073959.2872641-4-quic_rdevanat@quicinc.com>

Hi Roopni,

kernel test robot noticed the following build errors:

[auto build test ERROR on 1794d7ab34d2221ac7eb921b171e75b856e10561]

url:    https://github.com/intel-lab-lkp/linux/commits/Roopni-Devanathan/wifi-cfg80211-Add-Support-to-Set-RTS-Threshold-for-each-Radio/20250323-154228
base:   1794d7ab34d2221ac7eb921b171e75b856e10561
patch link:    https://lore.kernel.org/r/20250323073959.2872641-4-quic_rdevanat%40quicinc.com
patch subject: [PATCH v5 3/5] wifi: mac80211: Set RTS threshold on per-radio basis
config: arc-allyesconfig (https://download.01.org/0day-ci/archive/20250324/202503240158.ILYUhCHX-lkp@intel.com/config)
compiler: arc-linux-gcc (GCC) 14.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250324/202503240158.ILYUhCHX-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/202503240158.ILYUhCHX-lkp@intel.com/

All errors (new ones prefixed by >>):

   In file included from drivers/net/wireless/intel/iwlwifi/mld/mac80211.c:12:
   drivers/net/wireless/intel/iwlwifi/mld/iface.h:169:5: warning: "CONFIG_PM_SLEEP" is not defined, evaluates to 0 [-Wundef]
     169 | #if CONFIG_PM_SLEEP
         |     ^~~~~~~~~~~~~~~
>> drivers/net/wireless/intel/iwlwifi/mld/mac80211.c:2618:30: error: initialization of 'int (*)(struct ieee80211_hw *, s8,  u32)' {aka 'int (*)(struct ieee80211_hw *, signed char,  unsigned int)'} from incompatible pointer type 'int (*)(struct ieee80211_hw *, u32)' {aka 'int (*)(struct ieee80211_hw *, unsigned int)'} [-Wincompatible-pointer-types]
    2618 |         .set_rts_threshold = iwl_mld_mac80211_set_rts_threshold,
         |                              ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   drivers/net/wireless/intel/iwlwifi/mld/mac80211.c:2618:30: note: (near initialization for 'iwl_mld_hw_ops.set_rts_threshold')
   drivers/net/wireless/intel/iwlwifi/mld/mac80211.c:1982:12: warning: 'iwl_mld_resume' defined but not used [-Wunused-function]
    1982 | static int iwl_mld_resume(struct ieee80211_hw *hw)
         |            ^~~~~~~~~~~~~~
   drivers/net/wireless/intel/iwlwifi/mld/mac80211.c:1960:1: warning: 'iwl_mld_suspend' defined but not used [-Wunused-function]
    1960 | iwl_mld_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
         | ^~~~~~~~~~~~~~~
   drivers/net/wireless/intel/iwlwifi/mld/mac80211.c:1946:13: warning: 'iwl_mld_set_wakeup' defined but not used [-Wunused-function]
    1946 | static void iwl_mld_set_wakeup(struct ieee80211_hw *hw, bool enabled)
         |             ^~~~~~~~~~~~~~~~~~


vim +2618 drivers/net/wireless/intel/iwlwifi/mld/mac80211.c

d1e879ec600f9b Miri Korenblit 2025-02-16  2600  
d1e879ec600f9b Miri Korenblit 2025-02-16  2601  const struct ieee80211_ops iwl_mld_hw_ops = {
d1e879ec600f9b Miri Korenblit 2025-02-16  2602  	.tx = iwl_mld_mac80211_tx,
d1e879ec600f9b Miri Korenblit 2025-02-16  2603  	.start = iwl_mld_mac80211_start,
d1e879ec600f9b Miri Korenblit 2025-02-16  2604  	.stop = iwl_mld_mac80211_stop,
d1e879ec600f9b Miri Korenblit 2025-02-16  2605  	.config = iwl_mld_mac80211_config,
d1e879ec600f9b Miri Korenblit 2025-02-16  2606  	.add_interface = iwl_mld_mac80211_add_interface,
d1e879ec600f9b Miri Korenblit 2025-02-16  2607  	.remove_interface = iwl_mld_mac80211_remove_interface,
d1e879ec600f9b Miri Korenblit 2025-02-16  2608  	.conf_tx = iwl_mld_mac80211_conf_tx,
d1e879ec600f9b Miri Korenblit 2025-02-16  2609  	.prepare_multicast = iwl_mld_mac80211_prepare_multicast,
d1e879ec600f9b Miri Korenblit 2025-02-16  2610  	.configure_filter = iwl_mld_mac80211_configure_filter,
d1e879ec600f9b Miri Korenblit 2025-02-16  2611  	.reconfig_complete = iwl_mld_mac80211_reconfig_complete,
d1e879ec600f9b Miri Korenblit 2025-02-16  2612  	.wake_tx_queue = iwl_mld_mac80211_wake_tx_queue,
d1e879ec600f9b Miri Korenblit 2025-02-16  2613  	.add_chanctx = iwl_mld_add_chanctx,
d1e879ec600f9b Miri Korenblit 2025-02-16  2614  	.remove_chanctx = iwl_mld_remove_chanctx,
d1e879ec600f9b Miri Korenblit 2025-02-16  2615  	.change_chanctx = iwl_mld_change_chanctx,
d1e879ec600f9b Miri Korenblit 2025-02-16  2616  	.assign_vif_chanctx = iwl_mld_assign_vif_chanctx,
d1e879ec600f9b Miri Korenblit 2025-02-16  2617  	.unassign_vif_chanctx = iwl_mld_unassign_vif_chanctx,
d1e879ec600f9b Miri Korenblit 2025-02-16 @2618  	.set_rts_threshold = iwl_mld_mac80211_set_rts_threshold,

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

  parent reply	other threads:[~2025-03-23 18:04 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-23  7:39 [PATCH v5 0/5] wifi: cfg80211/mac80211: Set/get wiphy parameters on per-radio basis Roopni Devanathan
2025-03-23  7:39 ` [PATCH v5 1/5] wifi: cfg80211: Add Support to Set RTS Threshold for each Radio Roopni Devanathan
2025-03-23  7:39 ` [PATCH v5 2/5] wifi: cfg80211: Report per-radio RTS threshold to userspace Roopni Devanathan
2025-03-23  7:39 ` [PATCH v5 3/5] wifi: mac80211: Set RTS threshold on per-radio basis Roopni Devanathan
2025-03-23 17:21   ` kernel test robot
2025-03-23 18:03   ` kernel test robot [this message]
2025-03-23  7:39 ` [PATCH v5 4/5] wifi: cfg80211: set tx power per radio in a wiphy Roopni Devanathan
2025-03-23  7:39 ` [PATCH v5 5/5] wifi: mac80211: " Roopni Devanathan

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=202503240158.ILYUhCHX-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=oe-kbuild-all@lists.linux.dev \
    --cc=quic_rdevanat@quicinc.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 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.