Skip to content

Commit 2aec790

Browse files
committed
Merge tag 'ath-current-20250714' of git://git.kernel.org/pub/scm/linux/kernel/git/ath/ath
Jeff Johnson says: ================== ath.git update for v6.16-rc7 Fix an ath12k performance regression introduce in v6.16-rc1 ================== Signed-off-by: Johannes Berg <[email protected]>
2 parents c7979c3 + afcefc5 commit 2aec790

File tree

1 file changed

+2
-1
lines changed
  • drivers/net/wireless/ath/ath12k

1 file changed

+2
-1
lines changed

drivers/net/wireless/ath/ath12k/dp_rx.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,6 @@ int ath12k_dp_rx_peer_tid_setup(struct ath12k *ar, const u8 *peer_mac, int vdev_
10601060
}
10611061

10621062
rx_tid = &peer->rx_tid[tid];
1063-
paddr_aligned = rx_tid->qbuf.paddr_aligned;
10641063
/* Update the tid queue if it is already setup */
10651064
if (rx_tid->active) {
10661065
ret = ath12k_peer_rx_tid_reo_update(ar, peer, rx_tid,
@@ -1072,6 +1071,7 @@ int ath12k_dp_rx_peer_tid_setup(struct ath12k *ar, const u8 *peer_mac, int vdev_
10721071
}
10731072

10741073
if (!ab->hw_params->reoq_lut_support) {
1074+
paddr_aligned = rx_tid->qbuf.paddr_aligned;
10751075
ret = ath12k_wmi_peer_rx_reorder_queue_setup(ar, vdev_id,
10761076
peer_mac,
10771077
paddr_aligned, tid,
@@ -1098,6 +1098,7 @@ int ath12k_dp_rx_peer_tid_setup(struct ath12k *ar, const u8 *peer_mac, int vdev_
10981098
return ret;
10991099
}
11001100

1101+
paddr_aligned = rx_tid->qbuf.paddr_aligned;
11011102
if (ab->hw_params->reoq_lut_support) {
11021103
/* Update the REO queue LUT at the corresponding peer id
11031104
* and tid with qaddr.

0 commit comments

Comments
 (0)