Skip to content

Commit

Permalink
wifi: mt76: fix reading current per-tid starting sequence number for …
Browse files Browse the repository at this point in the history
…aggregation

The code was accidentally shifting register values down by tid % 32 instead of
(tid * field_size) % 32.

Cc: stable@vger.kernel.org
Fixes: a28bef5 ("mt76: mt7615: re-enable offloading of sequence number assignment")
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20220826182329.18155-1-nbd@nbd.name
  • Loading branch information
Felix Fietkau authored and Kalle Valo committed Sep 12, 2022
1 parent 8997f5c commit c3a510e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/mediatek/mt76/mt7615/mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1088,7 +1088,7 @@ u32 mt7615_mac_get_sta_tid_sn(struct mt7615_dev *dev, int wcid, u8 tid)
offset %= 32;

val = mt76_rr(dev, addr);
val >>= (tid % 32);
val >>= offset;

if (offset > 20) {
addr += 4;
Expand Down

0 comments on commit c3a510e

Please sign in to comment.