mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-08 14:03:06 +00:00
28 lines
908 B
Diff
28 lines
908 B
Diff
|
From e5b56ce50eab31d24df6a70cf025db3acc4aa3ac Mon Sep 17 00:00:00 2001
|
||
|
From: Lorenzo Bianconi <lorenzo@kernel.org>
|
||
|
Date: Tue, 20 Aug 2019 18:20:20 +0200
|
||
|
Subject: [PATCH 2/4] ath9k: dynack: properly set last timeout timestamp in
|
||
|
ath_dynack_reset
|
||
|
|
||
|
Add compute timeout to last computation timestamp in
|
||
|
ath_dynack_reset in order to not run ath_dynack_compute_ackto
|
||
|
immediately
|
||
|
|
||
|
Tested-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
|
||
|
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
|
||
|
---
|
||
|
drivers/net/wireless/ath/ath9k/dynack.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
--- a/drivers/net/wireless/ath/ath9k/dynack.c
|
||
|
+++ b/drivers/net/wireless/ath/ath9k/dynack.c
|
||
|
@@ -338,7 +338,7 @@ void ath_dynack_reset(struct ath_hw *ah)
|
||
|
u32 ackto = 9 + 16 + 64;
|
||
|
struct ath_dynack *da = &ah->dynack;
|
||
|
|
||
|
- da->lto = jiffies;
|
||
|
+ da->lto = jiffies + COMPUTE_TO;
|
||
|
da->ackto = ackto;
|
||
|
|
||
|
da->st_rbf.t_rb = 0;
|