Patch "mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update" has been added to the 5.17-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

    mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update

to the 5.17-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:
     mt76-mt7603-check-sta_rates-pointer-in-mt7603_sta_ra.patch
and it can be found in the queue-5.17 subdirectory.

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



commit 48d31379094909859ccc2c922436fc3190c1257d
Author: Lorenzo Bianconi <lorenzo@xxxxxxxxxx>
Date:   Sat Jan 22 15:58:57 2022 +0100

    mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update
    
    [ Upstream commit fc8e2c707ce11c8ec2e992885b0d53a5e04031ac ]
    
    Check sta_rates pointer value in mt7603_sta_rate_tbl_update routine
    since minstrel_ht_update_rates can fail allocating rates array.
    
    Fixes: c8846e1015022 ("mt76: add driver for MT7603E and MT7628/7688")
    Signed-off-by: Lorenzo Bianconi <lorenzo@xxxxxxxxxx>
    Signed-off-by: Felix Fietkau <nbd@xxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/wireless/mediatek/mt76/mt7603/main.c b/drivers/net/wireless/mediatek/mt76/mt7603/main.c
index 2b546bc05d82..83c5eec5b163 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7603/main.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7603/main.c
@@ -641,6 +641,9 @@ mt7603_sta_rate_tbl_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
 	struct ieee80211_sta_rates *sta_rates = rcu_dereference(sta->rates);
 	int i;
 
+	if (!sta_rates)
+		return;
+
 	spin_lock_bh(&dev->mt76.lock);
 	for (i = 0; i < ARRAY_SIZE(msta->rates); i++) {
 		msta->rates[i].idx = sta_rates->rate[i].idx;



[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