iwlwifi: Silence tfds_in_queue message
Commit a239a8b47c
introduced a
noisy message, that fills up the log very fast.
The error seems not to be fatal (the connection is stable and
performance is ok), so make it IWL_DEBUG_TX rather than IWL_ERR.
Signed-off-by: Adel Gadllah <adel.gadllah@gmail.com>
Cc: stable@kernel.org
Acked-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
4fdec031b9
commit
c8406ea8fa
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ void iwl_free_tfds_in_queue(struct iwl_priv *priv,
|
||||||
if (priv->stations[sta_id].tid[tid].tfds_in_queue >= freed)
|
if (priv->stations[sta_id].tid[tid].tfds_in_queue >= freed)
|
||||||
priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
|
priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
|
||||||
else {
|
else {
|
||||||
IWL_ERR(priv, "free more than tfds_in_queue (%u:%d)\n",
|
IWL_DEBUG_TX(priv, "free more than tfds_in_queue (%u:%d)\n",
|
||||||
priv->stations[sta_id].tid[tid].tfds_in_queue,
|
priv->stations[sta_id].tid[tid].tfds_in_queue,
|
||||||
freed);
|
freed);
|
||||||
priv->stations[sta_id].tid[tid].tfds_in_queue = 0;
|
priv->stations[sta_id].tid[tid].tfds_in_queue = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue