Mauro Carvalho Chehab | c312355 | 2019-04-17 05:46:08 -0300 | [diff] [blame] | 1 | ================ |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 2 | Delay accounting |
Mauro Carvalho Chehab | c312355 | 2019-04-17 05:46:08 -0300 | [diff] [blame] | 3 | ================ |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 4 | |
| 5 | Tasks encounter delays in execution when they wait |
| 6 | for some kernel resource to become available e.g. a |
| 7 | runnable task may wait for a free CPU to run on. |
| 8 | |
| 9 | The per-task delay accounting functionality measures |
| 10 | the delays experienced by a task while |
| 11 | |
| 12 | a) waiting for a CPU (while being runnable) |
| 13 | b) completion of synchronous block I/O initiated by the task |
| 14 | c) swapping in pages |
Keika Kobayashi | 9b0975a | 2008-07-25 01:48:54 -0700 | [diff] [blame] | 15 | d) memory reclaim |
wangyong | ec710aa | 2022-01-19 18:10:12 -0800 | [diff] [blame] | 16 | e) thrashing page cache |
| 17 | f) direct compact |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 18 | |
| 19 | and makes these statistics available to userspace through |
| 20 | the taskstats interface. |
| 21 | |
| 22 | Such delays provide feedback for setting a task's cpu priority, |
| 23 | io priority and rss limit values appropriately. Long delays for |
| 24 | important tasks could be a trigger for raising its corresponding priority. |
| 25 | |
| 26 | The functionality, through its use of the taskstats interface, also provides |
| 27 | delay statistics aggregated for all tasks (or threads) belonging to a |
| 28 | thread group (corresponding to a traditional Unix process). This is a commonly |
| 29 | needed aggregation that is more efficiently done by the kernel. |
| 30 | |
| 31 | Userspace utilities, particularly resource management applications, can also |
| 32 | aggregate delay statistics into arbitrary groups. To enable this, delay |
| 33 | statistics of a task are available both during its lifetime as well as on its |
| 34 | exit, ensuring continuous and complete monitoring can be done. |
| 35 | |
| 36 | |
| 37 | Interface |
| 38 | --------- |
| 39 | |
| 40 | Delay accounting uses the taskstats interface which is described |
| 41 | in detail in a separate document in this directory. Taskstats returns a |
| 42 | generic data structure to userspace corresponding to per-pid and per-tgid |
| 43 | statistics. The delay accounting functionality populates specific fields of |
| 44 | this structure. See |
Mauro Carvalho Chehab | c312355 | 2019-04-17 05:46:08 -0300 | [diff] [blame] | 45 | |
wangyong | ec710aa | 2022-01-19 18:10:12 -0800 | [diff] [blame] | 46 | include/uapi/linux/taskstats.h |
Mauro Carvalho Chehab | c312355 | 2019-04-17 05:46:08 -0300 | [diff] [blame] | 47 | |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 48 | for a description of the fields pertaining to delay accounting. |
| 49 | It will generally be in the form of counters returning the cumulative |
wangyong | ec710aa | 2022-01-19 18:10:12 -0800 | [diff] [blame] | 50 | delay seen for cpu, sync block I/O, swapin, memory reclaim, thrash page |
| 51 | cache, direct compact etc. |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 52 | |
| 53 | Taking the difference of two successive readings of a given |
| 54 | counter (say cpu_delay_total) for a task will give the delay |
| 55 | experienced by the task waiting for the corresponding resource |
| 56 | in that interval. |
| 57 | |
Shailabh Nagar | ad4ecbc | 2006-07-14 00:24:44 -0700 | [diff] [blame] | 58 | When a task exits, records containing the per-task statistics |
| 59 | are sent to userspace without requiring a command. If it is the last exiting |
| 60 | task of a thread group, the per-tgid statistics are also sent. More details |
| 61 | are given in the taskstats interface description. |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 62 | |
Shuah Khan | d522b2c | 2016-09-21 16:19:35 -0600 | [diff] [blame] | 63 | The getdelays.c userspace utility in tools/accounting directory allows simple |
| 64 | commands to be run and the corresponding delay statistics to be displayed. It |
| 65 | also serves as an example of using the taskstats interface. |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 66 | |
| 67 | Usage |
| 68 | ----- |
| 69 | |
Mauro Carvalho Chehab | c312355 | 2019-04-17 05:46:08 -0300 | [diff] [blame] | 70 | Compile the kernel with:: |
| 71 | |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 72 | CONFIG_TASK_DELAY_ACCT=y |
| 73 | CONFIG_TASKSTATS=y |
| 74 | |
Peter Zijlstra | e4042ad | 2021-05-04 22:43:32 +0200 | [diff] [blame] | 75 | Delay accounting is disabled by default at boot up. |
| 76 | To enable, add:: |
Mauro Carvalho Chehab | c312355 | 2019-04-17 05:46:08 -0300 | [diff] [blame] | 77 | |
Peter Zijlstra | e4042ad | 2021-05-04 22:43:32 +0200 | [diff] [blame] | 78 | delayacct |
Mauro Carvalho Chehab | c312355 | 2019-04-17 05:46:08 -0300 | [diff] [blame] | 79 | |
Peter Zijlstra | 0cd7c74 | 2021-05-10 14:01:00 +0200 | [diff] [blame] | 80 | to the kernel boot options. The rest of the instructions below assume this has |
| 81 | been done. Alternatively, use sysctl kernel.task_delayacct to switch the state |
| 82 | at runtime. Note however that only tasks started after enabling it will have |
| 83 | delayacct information. |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 84 | |
Shailabh Nagar | 163ecdf | 2006-07-30 03:03:11 -0700 | [diff] [blame] | 85 | After the system has booted up, use a utility |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 86 | similar to getdelays.c to access the delays |
| 87 | seen by a given task or a task group (tgid). |
| 88 | The utility also allows a given command to be |
| 89 | executed and the corresponding delays to be |
| 90 | seen. |
| 91 | |
Mauro Carvalho Chehab | c312355 | 2019-04-17 05:46:08 -0300 | [diff] [blame] | 92 | General format of the getdelays command:: |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 93 | |
wangyong | ec710aa | 2022-01-19 18:10:12 -0800 | [diff] [blame] | 94 | getdelays [-dilv] [-t tgid] [-p pid] |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 95 | |
Mauro Carvalho Chehab | c312355 | 2019-04-17 05:46:08 -0300 | [diff] [blame] | 96 | Get delays, since system boot, for pid 10:: |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 97 | |
wangyong | ec710aa | 2022-01-19 18:10:12 -0800 | [diff] [blame] | 98 | # ./getdelays -d -p 10 |
Mauro Carvalho Chehab | c312355 | 2019-04-17 05:46:08 -0300 | [diff] [blame] | 99 | (output similar to next case) |
| 100 | |
| 101 | Get sum of delays, since system boot, for all pids with tgid 5:: |
| 102 | |
wangyong | ec710aa | 2022-01-19 18:10:12 -0800 | [diff] [blame] | 103 | # ./getdelays -d -t 5 |
| 104 | print delayacct stats ON |
| 105 | TGID 5 |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 106 | |
| 107 | |
wangyong | ec710aa | 2022-01-19 18:10:12 -0800 | [diff] [blame] | 108 | CPU count real total virtual total delay total delay average |
| 109 | 8 7000000 6872122 3382277 0.423ms |
| 110 | IO count delay total delay average |
| 111 | 0 0 0ms |
| 112 | SWAP count delay total delay average |
| 113 | 0 0 0ms |
| 114 | RECLAIM count delay total delay average |
| 115 | 0 0 0ms |
| 116 | THRASHING count delay total delay average |
| 117 | 0 0 0ms |
| 118 | COMPACT count delay total delay average |
| 119 | 0 0 0ms |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 120 | |
wangyong | ec710aa | 2022-01-19 18:10:12 -0800 | [diff] [blame] | 121 | Get IO accounting for pid 1, it works only with -p:: |
Shailabh Nagar | a3baf64 | 2006-07-14 00:24:42 -0700 | [diff] [blame] | 122 | |
wangyong | ec710aa | 2022-01-19 18:10:12 -0800 | [diff] [blame] | 123 | # ./getdelays -i -p 1 |
| 124 | printing IO accounting |
| 125 | linuxrc: read=65536, write=0, cancelled_write=0 |
Mauro Carvalho Chehab | c312355 | 2019-04-17 05:46:08 -0300 | [diff] [blame] | 126 | |
wangyong | ec710aa | 2022-01-19 18:10:12 -0800 | [diff] [blame] | 127 | The above command can be used with -v to get more debug information. |