mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
iwlwifi: re-enable "Invalid TXQ id" logging
Various reports recently hit the "Invalid TXQ id" in iwlwifi again.
Unconditionally enable logging and add a note to report to a specific
PR in the log message for now.
Along with 018d93ece1 this will hopefully help us to understand what
is going on.
Sponsored by: The FreeBSD Foundation
PR: 274382
This commit is contained in:
parent
018d93ece1
commit
ad134f8ab7
1 changed files with 4 additions and 3 deletions
|
|
@ -1199,9 +1199,10 @@ static int iwl_mvm_tx_mpdu(struct iwl_mvm *mvm, struct sk_buff *skb,
|
|||
|
||||
if (WARN_ONCE(txq_id == IWL_MVM_INVALID_QUEUE, "Invalid TXQ id")) {
|
||||
#if defined(__FreeBSD__)
|
||||
IWL_DEBUG_TX(mvm, "fc %#06x tid %u txq_id %u mvm %p "
|
||||
"skb %p { len %u } info %p sta %p\n", fc,
|
||||
tid, txq_id, mvm, skb, skb->len, info, sta);
|
||||
printf("%s:%d: fc %#06x tid %u txq_id %u mvm %p "
|
||||
"skb %p { len %u } info %p sta %p (if you see this please "
|
||||
"report to PR 274382)\n", __func__, __LINE__,
|
||||
fc, tid, txq_id, mvm, skb, skb->len, info, sta);
|
||||
#endif
|
||||
iwl_trans_free_tx_cmd(mvm->trans, dev_cmd);
|
||||
spin_unlock(&mvmsta->lock);
|
||||
|
|
|
|||
Loading…
Reference in a new issue