mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 10:31:46 +09:00
mt76: mt7663s: fix a possible ple quota underflow
[ Upstream commit1c79a190e9] Properly account current consumed ple quota in mt7663s_tx_pick_quota routine and avoid possible underflow. Fixes:6ef2d665f6("mt76: mt7663s: split mt7663s_tx_update_sched in mt7663s_tx_{pick,update}_quota") Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> Signed-off-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a3164472e2
commit
28f41cc1ba
@@ -150,7 +150,7 @@ static int mt7663s_tx_pick_quota(struct mt76_sdio *sdio, enum mt76_txq_id qid,
|
||||
return -EBUSY;
|
||||
} else {
|
||||
if (sdio->sched.pse_data_quota < *pse_size + pse_sz ||
|
||||
sdio->sched.ple_data_quota < *ple_size)
|
||||
sdio->sched.ple_data_quota < *ple_size + 1)
|
||||
return -EBUSY;
|
||||
|
||||
*ple_size = *ple_size + 1;
|
||||
|
||||
Reference in New Issue
Block a user