Patch "wifi: iwlwifi: don't spam logs with NSS>2 messages" has been added to the 5.19-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: iwlwifi: don't spam logs with NSS>2 messages

to the 5.19-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-iwlwifi-don-t-spam-logs-with-nss-2-messages.patch
and it can be found in the queue-5.19 subdirectory.

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



commit 6cd40120a0dbbf9a58924536230d00053f92f6db
Author: Jason A. Donenfeld <Jason@xxxxxxxxx>
Date:   Mon Sep 5 19:22:46 2022 +0200

    wifi: iwlwifi: don't spam logs with NSS>2 messages
    
    [ Upstream commit 4d8421f2dd88583cc7a4d6c2a5532c35e816a52a ]
    
    I get a log line like this every 4 seconds when connected to my AP:
    
    [15650.221468] iwlwifi 0000:09:00.0: Got NSS = 4 - trimming to 2
    
    Looking at the code, this seems to be related to a hardware limitation,
    and there's nothing to be done. In an effort to keep my dmesg
    manageable, downgrade this error to "debug" rather than "info".
    
    Cc: Johannes Berg <johannes.berg@xxxxxxxxx>
    Signed-off-by: Jason A. Donenfeld <Jason@xxxxxxxxx>
    Signed-off-by: Kalle Valo <kvalo@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20220905172246.105383-1-Jason@xxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
index c5626ff83805..640e3786c244 100644
--- a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
+++ b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c
@@ -1833,8 +1833,8 @@ static void iwl_mvm_parse_ppe(struct iwl_mvm *mvm,
 	* If nss < MAX: we can set zeros in other streams
 	*/
 	if (nss > MAX_HE_SUPP_NSS) {
-		IWL_INFO(mvm, "Got NSS = %d - trimming to %d\n", nss,
-			 MAX_HE_SUPP_NSS);
+		IWL_DEBUG_INFO(mvm, "Got NSS = %d - trimming to %d\n", nss,
+			       MAX_HE_SUPP_NSS);
 		nss = MAX_HE_SUPP_NSS;
 	}
 



[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