aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2009-03-09 22:09:41 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-03-16 18:09:41 -0400
commitc117fa0bf5f5b3d362b590ed6e80499defe14505 (patch)
treea6fcb30377a910bdc77e00cc0f60f1fc237dcc33 /drivers/net
parent4a5af9c2923b6d8ce31a7fe84d7dc5431cd844a0 (diff)
ath9k: downgrade xmit queue full message to xmit debug
This is not a fatal message, hitting it simply means we're going to tell the upper layers to slow their horses down but as we make more descriptors available we let the show continue by waking up the queues in ath_wake_mac80211_queue(). We downgrade this as otherwise we fill up your kernel log with messages which can be common under heavy traffic. Cc: stable@kernel.org Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/wireless/ath9k/xmit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath9k/xmit.c b/drivers/net/wireless/ath9k/xmit.c
index f61ba2b7de71..e3f376611f85 100644
--- a/drivers/net/wireless/ath9k/xmit.c
+++ b/drivers/net/wireless/ath9k/xmit.c
@@ -891,7 +891,7 @@ struct ath_txq *ath_test_get_txq(struct ath_softc *sc, struct sk_buff *skb)
891 spin_lock_bh(&txq->axq_lock); 891 spin_lock_bh(&txq->axq_lock);
892 892
893 if (txq->axq_depth >= (ATH_TXBUF - 20)) { 893 if (txq->axq_depth >= (ATH_TXBUF - 20)) {
894 DPRINTF(sc, ATH_DBG_FATAL, 894 DPRINTF(sc, ATH_DBG_XMIT,
895 "TX queue: %d is full, depth: %d\n", 895 "TX queue: %d is full, depth: %d\n",
896 qnum, txq->axq_depth); 896 qnum, txq->axq_depth);
897 ieee80211_stop_queue(sc->hw, skb_get_queue_mapping(skb)); 897 ieee80211_stop_queue(sc->hw, skb_get_queue_mapping(skb));