559-ath9k-dynack-properly-set-last-timeout-timestamp-in-.patch 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. From e5b56ce50eab31d24df6a70cf025db3acc4aa3ac Mon Sep 17 00:00:00 2001
  2. From: Lorenzo Bianconi <lorenzo@kernel.org>
  3. Date: Tue, 20 Aug 2019 18:20:20 +0200
  4. Subject: [PATCH 2/4] ath9k: dynack: properly set last timeout timestamp in
  5. ath_dynack_reset
  6. Add compute timeout to last computation timestamp in
  7. ath_dynack_reset in order to not run ath_dynack_compute_ackto
  8. immediately
  9. Tested-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
  10. Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
  11. ---
  12. drivers/net/wireless/ath/ath9k/dynack.c | 2 +-
  13. 1 file changed, 1 insertion(+), 1 deletion(-)
  14. diff --git a/drivers/net/wireless/ath/ath9k/dynack.c b/drivers/net/wireless/ath/ath9k/dynack.c
  15. index 38dbe25919f7..398ea872751f 100644
  16. --- a/drivers/net/wireless/ath/ath9k/dynack.c
  17. +++ b/drivers/net/wireless/ath/ath9k/dynack.c
  18. @@ -338,7 +338,7 @@ void ath_dynack_reset(struct ath_hw *ah)
  19. u32 ackto = 9 + 16 + 64;
  20. struct ath_dynack *da = &ah->dynack;
  21. - da->lto = jiffies;
  22. + da->lto = jiffies + COMPUTE_TO;
  23. da->ackto = ackto;
  24. da->st_rbf.t_rb = 0;
  25. --
  26. 2.17.1