aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2023-10-04 20:30:00 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2023-10-09 23:14:54 +0000
commitdae4e5ad140f1e7671cb22a9640c1395c5688f00 (patch)
treec80c9ae688bebafc718a5a611c3d244799237aaf
parent0b2982dcef77584dadf4d6c0eae276c67c67e925 (diff)
downloadsrc-dae4e5ad140f1e7671cb22a9640c1395c5688f00.tar.gz
src-dae4e5ad140f1e7671cb22a9640c1395c5688f00.zip
LinuxKPI: 802.11: hide txq debugging behind checks
Two txq debug messages were left unconditionally. Hide them behind ifdef/if() condition checks for selective debugging only. Sponsored by: The FreeBSD Foundation Approved by: re (gjb) (cherry picked from commit 0d2cb6a6ecde3b271ede59d77801cb43a8804688) (cherry picked from commit 5b9404565fef6cf4f01210343c8074b9407cb268)
-rw-r--r--sys/compat/linuxkpi/common/src/linux_80211.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/compat/linuxkpi/common/src/linux_80211.c b/sys/compat/linuxkpi/common/src/linux_80211.c
index b3ee07a9bab9..7ffe658a628d 100644
--- a/sys/compat/linuxkpi/common/src/linux_80211.c
+++ b/sys/compat/linuxkpi/common/src/linux_80211.c
@@ -4831,15 +4831,18 @@ linuxkpi_ieee80211_stop_queue(struct ieee80211_hw *hw, int qnum)
for (ac = 0; ac < ac_count; ac++) {
IMPROVE_TXQ("LOCKING");
if (qnum == vif->hw_queue[ac]) {
+#ifdef LINUXKPI_DEBUG_80211
/*
* For now log this to better understand
* how this is supposed to work.
*/
- if (lvif->hw_queue_stopped[ac])
+ if (lvif->hw_queue_stopped[ac] &&
+ (linuxkpi_debug_80211 & D80211_IMPROVE_TXQ) != 0)
ic_printf(lhw->ic, "%s:%d: lhw %p hw %p "
"lvif %p vif %p ac %d qnum %d already "
"stopped\n", __func__, __LINE__,
lhw, hw, lvif, vif, ac, qnum);
+#endif
lvif->hw_queue_stopped[ac] = true;
}
}
@@ -4886,15 +4889,18 @@ lkpi_ieee80211_wake_queues(struct ieee80211_hw *hw, int hwq)
/* XXX-BZ what about software scan? */
+#ifdef LINUXKPI_DEBUG_80211
/*
* For now log this to better understand
* how this is supposed to work.
*/
- if (!lvif->hw_queue_stopped[ac])
+ if (!lvif->hw_queue_stopped[ac] &&
+ (linuxkpi_debug_80211 & D80211_IMPROVE_TXQ) != 0)
ic_printf(lhw->ic, "%s:%d: lhw %p hw %p "
"lvif %p vif %p ac %d hw_q not stopped\n",
__func__, __LINE__,
lhw, hw, lvif, vif, ac);
+#endif
lvif->hw_queue_stopped[ac] = false;
LKPI_80211_LVIF_LOCK(lvif);