aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/workqueue.txt
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
commitc71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch)
treeecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /Documentation/workqueue.txt
parentea53c912f8a86a8567697115b6a0d8152beee5c8 (diff)
parent6a00f206debf8a5c8899055726ad127dbeeed098 (diff)
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts: litmus/sched_cedf.c
Diffstat (limited to 'Documentation/workqueue.txt')
-rw-r--r--Documentation/workqueue.txt73
1 files changed, 57 insertions, 16 deletions
diff --git a/Documentation/workqueue.txt b/Documentation/workqueue.txt
index e4498a2872c3..a0b577de918f 100644
--- a/Documentation/workqueue.txt
+++ b/Documentation/workqueue.txt
@@ -12,6 +12,7 @@ CONTENTS
124. Application Programming Interface (API) 124. Application Programming Interface (API)
135. Example Execution Scenarios 135. Example Execution Scenarios
146. Guidelines 146. Guidelines
157. Debugging
15 16
16 17
171. Introduction 181. Introduction
@@ -190,17 +191,17 @@ resources, scheduled and executed.
190 * Long running CPU intensive workloads which can be better 191 * Long running CPU intensive workloads which can be better
191 managed by the system scheduler. 192 managed by the system scheduler.
192 193
193 WQ_FREEZEABLE 194 WQ_FREEZABLE
194 195
195 A freezeable wq participates in the freeze phase of the system 196 A freezable wq participates in the freeze phase of the system
196 suspend operations. Work items on the wq are drained and no 197 suspend operations. Work items on the wq are drained and no
197 new work item starts execution until thawed. 198 new work item starts execution until thawed.
198 199
199 WQ_RESCUER 200 WQ_MEM_RECLAIM
200 201
201 All wq which might be used in the memory reclaim paths _MUST_ 202 All wq which might be used in the memory reclaim paths _MUST_
202 have this flag set. This reserves one worker exclusively for 203 have this flag set. The wq is guaranteed to have at least one
203 the execution of this wq under memory pressure. 204 execution context regardless of memory pressure.
204 205
205 WQ_HIGHPRI 206 WQ_HIGHPRI
206 207
@@ -356,11 +357,11 @@ If q1 has WQ_CPU_INTENSIVE set,
356 357
3576. Guidelines 3586. Guidelines
358 359
359* Do not forget to use WQ_RESCUER if a wq may process work items which 360* Do not forget to use WQ_MEM_RECLAIM if a wq may process work items
360 are used during memory reclaim. Each wq with WQ_RESCUER set has one 361 which are used during memory reclaim. Each wq with WQ_MEM_RECLAIM
361 rescuer thread reserved for it. If there is dependency among 362 set has an execution context reserved for it. If there is
362 multiple work items used during memory reclaim, they should be 363 dependency among multiple work items used during memory reclaim,
363 queued to separate wq each with WQ_RESCUER. 364 they should be queued to separate wq each with WQ_MEM_RECLAIM.
364 365
365* Unless strict ordering is required, there is no need to use ST wq. 366* Unless strict ordering is required, there is no need to use ST wq.
366 367
@@ -368,13 +369,53 @@ If q1 has WQ_CPU_INTENSIVE set,
368 recommended. In most use cases, concurrency level usually stays 369 recommended. In most use cases, concurrency level usually stays
369 well under the default limit. 370 well under the default limit.
370 371
371* A wq serves as a domain for forward progress guarantee (WQ_RESCUER), 372* A wq serves as a domain for forward progress guarantee
372 flush and work item attributes. Work items which are not involved 373 (WQ_MEM_RECLAIM, flush and work item attributes. Work items which
373 in memory reclaim and don't need to be flushed as a part of a group 374 are not involved in memory reclaim and don't need to be flushed as a
374 of work items, and don't require any special attribute, can use one 375 part of a group of work items, and don't require any special
375 of the system wq. There is no difference in execution 376 attribute, can use one of the system wq. There is no difference in
376 characteristics between using a dedicated wq and a system wq. 377 execution characteristics between using a dedicated wq and a system
378 wq.
377 379
378* Unless work items are expected to consume a huge amount of CPU 380* Unless work items are expected to consume a huge amount of CPU
379 cycles, using a bound wq is usually beneficial due to the increased 381 cycles, using a bound wq is usually beneficial due to the increased
380 level of locality in wq operations and work item execution. 382 level of locality in wq operations and work item execution.
383
384
3857. Debugging
386
387Because the work functions are executed by generic worker threads
388there are a few tricks needed to shed some light on misbehaving
389workqueue users.
390
391Worker threads show up in the process list as:
392
393root 5671 0.0 0.0 0 0 ? S 12:07 0:00 [kworker/0:1]
394root 5672 0.0 0.0 0 0 ? S 12:07 0:00 [kworker/1:2]
395root 5673 0.0 0.0 0 0 ? S 12:12 0:00 [kworker/0:0]
396root 5674 0.0 0.0 0 0 ? S 12:13 0:00 [kworker/1:0]
397
398If kworkers are going crazy (using too much cpu), there are two types
399of possible problems:
400
401 1. Something beeing scheduled in rapid succession
402 2. A single work item that consumes lots of cpu cycles
403
404The first one can be tracked using tracing:
405
406 $ echo workqueue:workqueue_queue_work > /sys/kernel/debug/tracing/set_event
407 $ cat /sys/kernel/debug/tracing/trace_pipe > out.txt
408 (wait a few secs)
409 ^C
410
411If something is busy looping on work queueing, it would be dominating
412the output and the offender can be determined with the work item
413function.
414
415For the second type of problems it should be possible to just check
416the stack trace of the offending worker thread.
417
418 $ cat /proc/THE_OFFENDING_KWORKER/stack
419
420The work item's function should be trivially visible in the stack
421trace.