Update to Git HEAD (2026-07-31) and switch to 7.2 kernel based driver. We also introduced a new patch 204-* to correct the driver version number. Upstream merged patches: - 005-ath10k-ct-fix-missing-prototypes-warnings-on-6.12-ke.patch Tested on QCA9887 and IPQ4019. Signed-off-by: Shiji Yang <yangshiji66@outlook.com> Link: https://github.com/openwrt/openwrt/pull/24529 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From: Shiji Yang <yangshiji66@outlook.com>
|
|
Date: Fri, 28 Mar 2025 21:02:27 +0800
|
|
Subject: [PATCH] ath10k-ct: silence noisy log caused by flushing queue
|
|
|
|
.flush() is a regular mac80211 operation aims to clear all pending
|
|
frames from the hardware queue. Only developers need to care about it.
|
|
|
|
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
|
|
---
|
|
ath10k-7.2/mac.c | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
--- a/ath10k-7.2/mac.c
|
|
+++ b/ath10k-7.2/mac.c
|
|
@@ -9111,12 +9111,12 @@ static void ath10k_flush(struct ieee8021
|
|
if (vif) {
|
|
arvif = (void *)vif->drv_priv;
|
|
vid = arvif->vdev_id;
|
|
- ath10k_info(ar, "mac flush vdev %d drop %d queues 0x%x ar->paused: 0x%lx arvif->paused: 0x%lx\n",
|
|
- arvif->vdev_id, drop, queues, ar->tx_paused, arvif->tx_paused);
|
|
+ ath10k_dbg(ar, ATH10K_DBG_MAC, "mac flush vdev %d drop %d queues 0x%x ar->paused: 0x%lx arvif->paused: 0x%lx\n",
|
|
+ arvif->vdev_id, drop, queues, ar->tx_paused, arvif->tx_paused);
|
|
}
|
|
else {
|
|
- ath10k_info(ar, "mac flush null vif, drop %d queues 0x%x\n",
|
|
- drop, queues);
|
|
+ ath10k_dbg(ar, ATH10K_DBG_MAC, "mac flush null vif, drop %d queues 0x%x\n",
|
|
+ drop, queues);
|
|
}
|
|
|
|
|