wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize()
authorDan Carpenter <error27@gmail.com>
Mon, 6 Feb 2023 14:41:33 +0000 (17:41 +0300)
committerKalle Valo <kvalo@kernel.org>
Mon, 13 Feb 2023 16:53:52 +0000 (18:53 +0200)
This code re-uses "i" to be the iterator for both the inside and outside
loops.  It means the outside loop will exit earlier than intended.

Fixes: d219b7eb3792 ("mwifiex: handle BT coex event to adjust Rx BA window size")
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/Y+ERnaDaZD7RtLvX@kili
drivers/net/wireless/marvell/mwifiex/11n.c

index 4af57e6d43932ce78947ba5bc4ceeae330ded565..90e40110089812d97f78fb6d3719f6c1ec9fd44a 100644 (file)
@@ -878,7 +878,7 @@ mwifiex_send_delba_txbastream_tbl(struct mwifiex_private *priv, u8 tid)
  */
 void mwifiex_update_ampdu_txwinsize(struct mwifiex_adapter *adapter)
 {
-       u8 i;
+       u8 i, j;
        u32 tx_win_size;
        struct mwifiex_private *priv;
 
@@ -909,8 +909,8 @@ void mwifiex_update_ampdu_txwinsize(struct mwifiex_adapter *adapter)
                if (tx_win_size != priv->add_ba_param.tx_win_size) {
                        if (!priv->media_connected)
                                continue;
-                       for (i = 0; i < MAX_NUM_TID; i++)
-                               mwifiex_send_delba_txbastream_tbl(priv, i);
+                       for (j = 0; j < MAX_NUM_TID; j++)
+                               mwifiex_send_delba_txbastream_tbl(priv, j);
                }
        }
 }