Blame view

Documentation/accounting/delay-accounting.txt 3.75 KB
a3baf649c   Shailabh Nagar   [PATCH] per-task-...
1
2
3
4
5
6
7
8
9
10
11
12
13
  Delay accounting
  ----------------
  
  Tasks encounter delays in execution when they wait
  for some kernel resource to become available e.g. a
  runnable task may wait for a free CPU to run on.
  
  The per-task delay accounting functionality measures
  the delays experienced by a task while
  
  a) waiting for a CPU (while being runnable)
  b) completion of synchronous block I/O initiated by the task
  c) swapping in pages
9b0975a20   Keika Kobayashi   per-task-delay-ac...
14
  d) memory reclaim
a3baf649c   Shailabh Nagar   [PATCH] per-task-...
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  
  and makes these statistics available to userspace through
  the taskstats interface.
  
  Such delays provide feedback for setting a task's cpu priority,
  io priority and rss limit values appropriately. Long delays for
  important tasks could be a trigger for raising its corresponding priority.
  
  The functionality, through its use of the taskstats interface, also provides
  delay statistics aggregated for all tasks (or threads) belonging to a
  thread group (corresponding to a traditional Unix process). This is a commonly
  needed aggregation that is more efficiently done by the kernel.
  
  Userspace utilities, particularly resource management applications, can also
  aggregate delay statistics into arbitrary groups. To enable this, delay
  statistics of a task are available both during its lifetime as well as on its
  exit, ensuring continuous and complete monitoring can be done.
  
  
  Interface
  ---------
  
  Delay accounting uses the taskstats interface which is described
  in detail in a separate document in this directory. Taskstats returns a
  generic data structure to userspace corresponding to per-pid and per-tgid
  statistics. The delay accounting functionality populates specific fields of
  this structure. See
       include/linux/taskstats.h
  for a description of the fields pertaining to delay accounting.
  It will generally be in the form of counters returning the cumulative
9b0975a20   Keika Kobayashi   per-task-delay-ac...
45
  delay seen for cpu, sync block I/O, swapin, memory reclaim etc.
a3baf649c   Shailabh Nagar   [PATCH] per-task-...
46
47
48
49
50
  
  Taking the difference of two successive readings of a given
  counter (say cpu_delay_total) for a task will give the delay
  experienced by the task waiting for the corresponding resource
  in that interval.
ad4ecbcba   Shailabh Nagar   [PATCH] delay acc...
51
52
53
54
  When a task exits, records containing the per-task statistics
  are sent to userspace without requiring a command. If it is the last exiting
  task of a thread group, the per-tgid statistics are also sent. More details
  are given in the taskstats interface description.
a3baf649c   Shailabh Nagar   [PATCH] per-task-...
55
56
57
58
59
60
61
62
63
64
65
  
  The getdelays.c userspace utility in this directory allows simple commands to
  be run and the corresponding delay statistics to be displayed. It also serves
  as an example of using the taskstats interface.
  
  Usage
  -----
  
  Compile the kernel with
  	CONFIG_TASK_DELAY_ACCT=y
  	CONFIG_TASKSTATS=y
163ecdff0   Shailabh Nagar   [PATCH] delay acc...
66
67
68
69
70
  Delay accounting is enabled by default at boot up.
  To disable, add
     nodelayacct
  to the kernel boot options. The rest of the instructions
  below assume this has not been done.
a3baf649c   Shailabh Nagar   [PATCH] per-task-...
71

163ecdff0   Shailabh Nagar   [PATCH] delay acc...
72
  After the system has booted up, use a utility
a3baf649c   Shailabh Nagar   [PATCH] per-task-...
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
  similar to  getdelays.c to access the delays
  seen by a given task or a task group (tgid).
  The utility also allows a given command to be
  executed and the corresponding delays to be
  seen.
  
  General format of the getdelays command
  
  getdelays [-t tgid] [-p pid] [-c cmd...]
  
  
  Get delays, since system boot, for pid 10
  # ./getdelays -p 10
  (output similar to next case)
  
  Get sum of delays, since system boot, for all pids with tgid 5
  # ./getdelays -t 5
  
  
  CPU	count	real total	virtual total	delay total
  	7876	92005750	100000000	24001500
  IO	count	delay total
  	0	0
9b0975a20   Keika Kobayashi   per-task-delay-ac...
96
97
98
  SWAP	count	delay total
  	0	0
  RECLAIM	count	delay total
a3baf649c   Shailabh Nagar   [PATCH] per-task-...
99
100
101
102
103
104
105
106
107
108
109
110
111
  	0	0
  
  Get delays seen in executing a given simple command
  # ./getdelays -c ls /
  
  bin   data1  data3  data5  dev  home  media  opt   root  srv        sys  usr
  boot  data2  data4  data6  etc  lib   mnt    proc  sbin  subdomain  tmp  var
  
  
  CPU	count	real total	virtual total	delay total
  	6	4000250		4000000		0
  IO	count	delay total
  	0	0
9b0975a20   Keika Kobayashi   per-task-delay-ac...
112
113
114
  SWAP	count	delay total
  	0	0
  RECLAIM	count	delay total
a3baf649c   Shailabh Nagar   [PATCH] per-task-...
115
  	0	0