mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH V4 0/4] workqueue: Factor the way to assign rescuer work
@ 2025-11-25  6:36 Lai Jiangshan
  2025-11-25  6:36 ` [PATCH V4 1/4] workqueue: Loop over in rescuer until all its work is done Lai Jiangshan
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Lai Jiangshan @ 2025-11-25  6:36 UTC (permalink / raw)
  To: linux-kernel; +Cc: Tejun Heo, ying chen, Lai Jiangshan

From: Lai Jiangshan <jiangshan.ljs@antgroup.com>

Previously, the rescuer scanned for all matching work items at once and
processed them within a single rescuer thread, which could cause one
blocking work item to stall all others.

Make the rescuer process work items one-by-one instead of slurping all
matches in a single pass using a cursor.

Changed from V3:
  check memory pressure
  update comments
  rename @limited to @throttled

v3: https://lore.kernel.org/lkml/20251121145720.342467-1-jiangshanlai@gmail.com/

Lai Jiangshan (4):
  workqueue: Loop over in rescuer until all its work is done
  workqueue: Process rescuer work items one-by-one using a cursor
  workqueue: Limit number of processed works in rescuer per turn
  workqueue: Process extra works in rescuer when there are no more to
    rescue

 kernel/workqueue.c | 141 ++++++++++++++++++++++++++++++++++-----------
 1 file changed, 108 insertions(+), 33 deletions(-)

-- 
2.19.1.6.gb485710b


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2025-12-03 19:41 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-11-25  6:36 [PATCH V4 0/4] workqueue: Factor the way to assign rescuer work Lai Jiangshan
2025-11-25  6:36 ` [PATCH V4 1/4] workqueue: Loop over in rescuer until all its work is done Lai Jiangshan
2025-12-02 18:07   ` Tejun Heo
2025-11-25  6:36 ` [PATCH V4 2/4] workqueue: Process rescuer work items one-by-one using a cursor Lai Jiangshan
2025-11-25  6:36 ` [PATCH V4 3/4] workqueue: Limit number of processed works in rescuer per turn Lai Jiangshan
2025-12-02 18:16   ` Tejun Heo
2025-12-03  3:22     ` Lai Jiangshan
2025-12-03 19:41       ` Tejun Heo
2025-11-25  6:36 ` [PATCH V4 4/4] workqueue: Process extra works in rescuer when there are no more to rescue Lai Jiangshan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome