TX work for a HTC endpoint can run for long periods of time, especially on slower host machines when under heavy load. This patch prevents one endpoint starving another one by allowing each endpoint worker to be processed in parallel. This is safe since none of ar->workqueue users depend on sequential execution. Signed-off-by: Michal Kazior <michal.kazior@xxxxxxxxx> --- drivers/net/wireless/ath/ath10k/core.c | 4 +++- drivers/net/wireless/ath/ath10k/core.h | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/drivers/net/wireless/ath/ath10k/core.c b/drivers/net/wireless/ath/ath10k/core.c index b43e8ad..348a0fd 100644 --- a/drivers/net/wireless/ath/ath10k/core.c +++ b/drivers/net/wireless/ath/ath10k/core.c @@ -520,7 +520,9 @@ struct ath10k *ath10k_core_create(void *hif_priv, struct device *dev, setup_timer(&ar->scan.timeout, ath10k_reset_scan, (unsigned long)ar); - ar->workqueue = create_singlethread_workqueue("ath10k_wq"); + ar->workqueue = alloc_workqueue("ath10k_wq", + WQ_UNBOUND | WQ_MEM_RECLAIM, + ATH10K_MAX_NUM_PARALLEL_WORKERS); if (!ar->workqueue) goto err_wq; diff --git a/drivers/net/wireless/ath/ath10k/core.h b/drivers/net/wireless/ath/ath10k/core.h index 0469a2e..17694ec 100644 --- a/drivers/net/wireless/ath/ath10k/core.h +++ b/drivers/net/wireless/ath/ath10k/core.h @@ -40,6 +40,11 @@ #define ATH10K_FLUSH_TIMEOUT_HZ (5*HZ) #define ATH10K_NUM_CHANS 38 +#define ATH10K_NUM_HTC_TX_WORKERS ATH10K_HTC_EP_COUNT +#define ATH10K_NUM_WMI_RX_WORKERS 1 +#define ATH10K_MAX_NUM_PARALLEL_WORKERS (ATH10K_NUM_HTC_TX_WORKERS + \ + ATH10K_NUM_WMI_RX_WORKERS) + /* Antenna noise floor */ #define ATH10K_DEFAULT_NOISE_FLOOR -95 -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html