Commit 020c8767 authored by Emmanuel Grumbach's avatar Emmanuel Grumbach Committed by Johannes Berg

iwlwifi: disable the watchdog for queues by default

I saw that when the watchdog triggers, the packets do go
through if we wait enough time. So we still have an issue
where packets are blocked in the Tx queue for a short while
and this needs to be debugged separately. For now, don't
restart the driver when it is not needed.
Signed-off-by: default avatarEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent b3a6d2e0
...@@ -1011,6 +1011,7 @@ struct iwl_mod_params iwlwifi_mod_params = { ...@@ -1011,6 +1011,7 @@ struct iwl_mod_params iwlwifi_mod_params = {
.power_level = IWL_POWER_INDEX_1, .power_level = IWL_POWER_INDEX_1,
.bt_ch_announce = true, .bt_ch_announce = true,
.auto_agg = true, .auto_agg = true,
.wd_disable = true,
/* the rest are 0 by default */ /* the rest are 0 by default */
}; };
EXPORT_SYMBOL_GPL(iwlwifi_mod_params); EXPORT_SYMBOL_GPL(iwlwifi_mod_params);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment