* [PATCH v2] workqueue: Kick a worker based on the actual activation of delayed works
@ 2020-11-19 6:21 Yunfeng Ye
2020-11-20 1:45 ` Lai Jiangshan
2020-11-25 12:45 ` Tejun Heo
0 siblings, 2 replies; 3+ messages in thread
From: Yunfeng Ye @ 2020-11-19 6:21 UTC (permalink / raw)
To: tj, jiangshanlai, linux-kernel; +Cc: Shiyuan Hu, Hewenliang
In realtime scenario, We do not want to have interference on the
isolated cpu cores. but when invoking alloc_workqueue() for percpu wq
on the housekeeping cpu, it kick a kworker on the isolated cpu.
alloc_workqueue
pwq_adjust_max_active
wake_up_worker
The comment in pwq_adjust_max_active() said:
"Need to kick a worker after thawed or an unbound wq's
max_active is bumped"
So it is unnecessary to kick a kworker for percpu's wq when invoking
alloc_workqueue(). this patch only kick a worker based on the actual
activation of delayed works.
Signed-off-by: Yunfeng Ye <yeyunfeng@huawei.com>
---
kernel/workqueue.c | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/kernel/workqueue.c b/kernel/workqueue.c
index c41c3c17b86a..b3c9d6ef7c69 100644
--- a/kernel/workqueue.c
+++ b/kernel/workqueue.c
@@ -3725,17 +3725,25 @@ static void pwq_adjust_max_active(struct pool_workqueue *pwq)
* is updated and visible.
*/
if (!freezable || !workqueue_freezing) {
+ bool kick = false;
+
pwq->max_active = wq->saved_max_active;
while (!list_empty(&pwq->delayed_works) &&
- pwq->nr_active < pwq->max_active)
+ pwq->nr_active < pwq->max_active) {
pwq_activate_first_delayed(pwq);
+ kick = true;
+ }
/*
* Need to kick a worker after thawed or an unbound wq's
- * max_active is bumped. It's a slow path. Do it always.
+ * max_active is bumped. But in realtime scenario, kick a
+ * worker always will have interference on the isolated
+ * cpu cores. So do it only based on the actual activation
+ * of delayed works.
*/
- wake_up_worker(pwq->pool);
+ if (kick)
+ wake_up_worker(pwq->pool);
} else {
pwq->max_active = 0;
}
--
2.18.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] workqueue: Kick a worker based on the actual activation of delayed works
2020-11-19 6:21 [PATCH v2] workqueue: Kick a worker based on the actual activation of delayed works Yunfeng Ye
@ 2020-11-20 1:45 ` Lai Jiangshan
2020-11-25 12:45 ` Tejun Heo
1 sibling, 0 replies; 3+ messages in thread
From: Lai Jiangshan @ 2020-11-20 1:45 UTC (permalink / raw)
To: Yunfeng Ye; +Cc: Tejun Heo, LKML, Shiyuan Hu, Hewenliang
On Thu, Nov 19, 2020 at 2:21 PM Yunfeng Ye <yeyunfeng@huawei.com> wrote:
>
> In realtime scenario, We do not want to have interference on the
> isolated cpu cores. but when invoking alloc_workqueue() for percpu wq
> on the housekeeping cpu, it kick a kworker on the isolated cpu.
>
> alloc_workqueue
> pwq_adjust_max_active
> wake_up_worker
>
> The comment in pwq_adjust_max_active() said:
> "Need to kick a worker after thawed or an unbound wq's
> max_active is bumped"
>
> So it is unnecessary to kick a kworker for percpu's wq when invoking
> alloc_workqueue(). this patch only kick a worker based on the actual
> activation of delayed works.
>
> Signed-off-by: Yunfeng Ye <yeyunfeng@huawei.com>
Reviewed-by: Lai Jiangshan <jiangshanlai@gmail.com>
> ---
> kernel/workqueue.c | 14 +++++++++++---
> 1 file changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/kernel/workqueue.c b/kernel/workqueue.c
> index c41c3c17b86a..b3c9d6ef7c69 100644
> --- a/kernel/workqueue.c
> +++ b/kernel/workqueue.c
> @@ -3725,17 +3725,25 @@ static void pwq_adjust_max_active(struct pool_workqueue *pwq)
> * is updated and visible.
> */
> if (!freezable || !workqueue_freezing) {
> + bool kick = false;
> +
> pwq->max_active = wq->saved_max_active;
>
> while (!list_empty(&pwq->delayed_works) &&
> - pwq->nr_active < pwq->max_active)
> + pwq->nr_active < pwq->max_active) {
> pwq_activate_first_delayed(pwq);
> + kick = true;
> + }
>
> /*
> * Need to kick a worker after thawed or an unbound wq's
> - * max_active is bumped. It's a slow path. Do it always.
> + * max_active is bumped. But in realtime scenario, kick a
> + * worker always will have interference on the isolated
> + * cpu cores. So do it only based on the actual activation
> + * of delayed works.
> */
> - wake_up_worker(pwq->pool);
> + if (kick)
> + wake_up_worker(pwq->pool);
> } else {
> pwq->max_active = 0;
> }
> --
> 2.18.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] workqueue: Kick a worker based on the actual activation of delayed works
2020-11-19 6:21 [PATCH v2] workqueue: Kick a worker based on the actual activation of delayed works Yunfeng Ye
2020-11-20 1:45 ` Lai Jiangshan
@ 2020-11-25 12:45 ` Tejun Heo
1 sibling, 0 replies; 3+ messages in thread
From: Tejun Heo @ 2020-11-25 12:45 UTC (permalink / raw)
To: Yunfeng Ye; +Cc: jiangshanlai, linux-kernel, Shiyuan Hu, Hewenliang
On Thu, Nov 19, 2020 at 02:21:25PM +0800, Yunfeng Ye wrote:
> In realtime scenario, We do not want to have interference on the
> isolated cpu cores. but when invoking alloc_workqueue() for percpu wq
> on the housekeeping cpu, it kick a kworker on the isolated cpu.
>
> alloc_workqueue
> pwq_adjust_max_active
> wake_up_worker
>
> The comment in pwq_adjust_max_active() said:
> "Need to kick a worker after thawed or an unbound wq's
> max_active is bumped"
>
> So it is unnecessary to kick a kworker for percpu's wq when invoking
> alloc_workqueue(). this patch only kick a worker based on the actual
> activation of delayed works.
>
> Signed-off-by: Yunfeng Ye <yeyunfeng@huawei.com>
Applied to wq/for-5.10-fixes w/ minor comment updates.
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-11-25 12:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-19 6:21 [PATCH v2] workqueue: Kick a worker based on the actual activation of delayed works Yunfeng Ye
2020-11-20 1:45 ` Lai Jiangshan
2020-11-25 12:45 ` Tejun Heo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®