[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ZFWIpN7HN431MVSI@slm.duckdns.org>
Date: Fri, 5 May 2023 12:52:20 -1000
From: Tejun Heo <tj@...nel.org>
To: Johannes Berg <johannes@...solutions.net>
Cc: jiangshanlai@...il.com, linux-kernel@...r.kernel.org,
kernel-team@...a.com, Kalle Valo <kvalo@...nel.org>,
"David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>,
Gregory Greenman <gregory.greenman@...el.com>,
Avraham Stern <avraham.stern@...el.com>,
Kees Cook <keescook@...omium.org>,
Mordechay Goodstein <mordechay.goodstein@...el.com>,
"Haim, Dreyfuss" <haim.dreyfuss@...el.com>,
linux-wireless@...r.kernel.org, netdev@...r.kernel.org
Subject: [PATCH] wifi: iwlwifi: Use default @max_active for
trans_pcie->rba.alloc_wq
trans_pcie->rba.alloc_wq only hosts a single work item and thus doesn't need
explicit concurrency limit. Let's use the default @max_active. This doesn't
cost anything and clearly expresses that @max_active doesn't matter.
Signed-off-by: Tejun Heo <tj@...nel.org>
Cc: Kalle Valo <kvalo@...nel.org>
Cc: "David S. Miller" <davem@...emloft.net>
Cc: Eric Dumazet <edumazet@...gle.com>
Cc: Jakub Kicinski <kuba@...nel.org>
Cc: Paolo Abeni <pabeni@...hat.com>
Cc: Gregory Greenman <gregory.greenman@...el.com>
Cc: Johannes Berg <johannes.berg@...el.com>
Cc: Avraham Stern <avraham.stern@...el.com>
Cc: Kees Cook <keescook@...omium.org>
Cc: Mordechay Goodstein <mordechay.goodstein@...el.com>
Cc: "Haim, Dreyfuss" <haim.dreyfuss@...el.com>
Cc: linux-wireless@...r.kernel.org
Cc: netdev@...r.kernel.org
---
Hello,
Johannes, do you mind acking this patch instead?
Thanks.
drivers/net/wireless/intel/iwlwifi/pcie/trans.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/net/wireless/intel/iwlwifi/pcie/trans.c
+++ b/drivers/net/wireless/intel/iwlwifi/pcie/trans.c
@@ -3577,7 +3577,7 @@ struct iwl_trans *iwl_trans_pcie_alloc(s
init_waitqueue_head(&trans_pcie->imr_waitq);
trans_pcie->rba.alloc_wq = alloc_workqueue("rb_allocator",
- WQ_HIGHPRI | WQ_UNBOUND, 1);
+ WQ_HIGHPRI | WQ_UNBOUND, 0);
if (!trans_pcie->rba.alloc_wq) {
ret = -ENOMEM;
goto out_free_trans;
Powered by blists - more mailing lists