Patch "wifi: mac80211: fix maybe-unused warning" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    wifi: mac80211: fix maybe-unused warning

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     wifi-mac80211-fix-maybe-unused-warning.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit e356f087a7eda09a96b4933b150ae77b51afd316
Author: Íñigo Huguet <ihuguet@xxxxxxxxxx>
Date:   Fri Nov 11 16:36:22 2022 +0100

    wifi: mac80211: fix maybe-unused warning
    
    [ Upstream commit 09d838a457a89883a926b8b0104d575158fd4b92 ]
    
    In ieee80211_lookup_key, the variable named `local` is unused if
    compiled without lockdep, getting this warning:
    
    net/mac80211/cfg.c: In function ‘ieee80211_lookup_key’:
    net/mac80211/cfg.c:542:26: error: unused variable ‘local’ [-Werror=unused-variable]
      struct ieee80211_local *local = sdata->local;
                              ^~~~~
    
    Fix it with __maybe_unused.
    
    Fixes: 8cbf0c2ab6df ("wifi: mac80211: refactor some key code")
    Signed-off-by: Íñigo Huguet <ihuguet@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20221111153622.29016-1-ihuguet@xxxxxxxxxx
    Signed-off-by: Johannes Berg <johannes.berg@xxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 687b4c878d4a..8c8ef87997a8 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -576,7 +576,7 @@ static struct ieee80211_key *
 ieee80211_lookup_key(struct ieee80211_sub_if_data *sdata, int link_id,
 		     u8 key_idx, bool pairwise, const u8 *mac_addr)
 {
-	struct ieee80211_local *local = sdata->local;
+	struct ieee80211_local *local __maybe_unused = sdata->local;
 	struct ieee80211_link_data *link = &sdata->deflink;
 	struct ieee80211_key *key;
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux