]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - share/man/man9/LOCK_PROFILING.9
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / share / man / man9 / LOCK_PROFILING.9
1 .\"-
2 .\" Copyright (c) 2004 Dag-Erling Coïdan Smørgrav
3 .\" Copyright (c) 2005 Robert N. M. Watson
4 .\" Copyright (c) 2006 Kip Macy
5 .\" All rights reserved.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 3. The name of the author may not be used to endorse or promote products
16 .\"    derived from this software without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\" $FreeBSD$
31 .\"
32 .Dd March 7, 2012
33 .Dt LOCK_PROFILING 9
34 .Os
35 .Sh NAME
36 .Nm LOCK_PROFILING
37 .Nd kernel lock profiling support
38 .Sh SYNOPSIS
39 .Cd "options LOCK_PROFILING"
40 .Sh DESCRIPTION
41 The
42 .Dv LOCK_PROFILING
43 kernel option adds support for measuring and reporting lock use and
44 contention statistics.
45 These statistics are collated by
46 .Dq acquisition point .
47 Acquisition points are
48 distinct places in the kernel source code (identified by source file
49 name and line number) where a lock is acquired.
50 .Pp
51 For each acquisition point, the following statistics are accumulated:
52 .Bl -bullet
53 .It
54 The longest time the lock was ever continuously held after being
55 acquired at this point.
56 .It
57 The total time the lock was held after being acquired at this point.
58 .It
59 The total time that threads have spent waiting to acquire the lock.
60 .It
61 The total number of non-recursive acquisitions.
62 .It
63 The total number of times the lock was already held by another thread
64 when this point was reached, requiring a spin or a sleep.
65 .It
66 The total number of times another thread tried to acquire the lock
67 while it was held after having been acquired at this point.
68 .El
69 .Pp
70 In addition, the average hold time and average wait time are derived
71 from the total hold time
72 and total wait time respectively and the number of acquisitions.
73 .Pp
74 The
75 .Dv LOCK_PROFILING
76 kernel option also adds the following
77 .Xr sysctl 8
78 variables to control and monitor the profiling code:
79 .Bl -tag -width indent
80 .It Va debug.lock.prof.enable
81 Enable or disable the lock profiling code.
82 This defaults to 0 (off).
83 .It Va debug.lock.prof.reset
84 Reset the current lock profiling buffers.
85 .It Va debug.lock.prof.stats
86 The actual profiling statistics in plain text.
87 The columns are as follows, from left to right:
88 .Bl -tag -width ".Va cnt_hold"
89 .It Va max
90 The longest continuous hold time in microseconds.
91 .It Va wait_max
92 The longest continuous wait time in microseconds.
93 .It Va total
94 The total (accumulated) hold time in microseconds.
95 .It Va wait_total
96 The total (accumulated) wait time in microseconds.
97 .It Va count
98 The total number of acquisitions.
99 .It Va avg
100 The average hold time in microseconds, derived from the total hold time
101 and the number of acquisitions.
102 .It Va wait_avg
103 The average wait time in microseconds, derived from the total wait time
104 and the number of acquisitions.
105 .It Va cnt_hold
106 The number of times the lock was held and another thread attempted to
107 acquire the lock.
108 .It Va cnt_lock
109 The number of times the lock was already held when this point was
110 reached.
111 .It Va name
112 The name of the acquisition point, derived from the source file name
113 and line number, followed by the name of the lock in parentheses.
114 .El
115 .It Va debug.lock.prof.rejected
116 The number of acquisition points that were ignored after the table
117 filled up.
118 .It Va debug.lock.prof.skipspin
119 Disable or enable the lock profiling code for the spin locks.
120 This defaults to 0 (do profiling for the spin locks).
121 .It Va debug.lock.prof.skipcount
122 Do sampling approximately every N lock acquisitions.
123 .El
124 .Sh SEE ALSO
125 .Xr sysctl 8 ,
126 .Xr mutex 9
127 .Sh HISTORY
128 Mutex profiling support appeared in
129 .Fx 5.0 .
130 Generalized lock profiling support appeared in
131 .Fx 7.0 .
132 .Sh AUTHORS
133 .An -nosplit
134 The
135 .Nm MUTEX_PROFILING
136 code was written by
137 .An Eivind Eklund Aq eivind@FreeBSD.org ,
138 .An Dag-Erling Sm\(/orgrav Aq des@FreeBSD.org
139 and
140 .An Robert Watson Aq rwatson@FreeBSD.org .
141 The
142 .Nm
143 code was written by
144 .An Kip Macy Aq kmacy@FreeBSD.org .
145 This manual page was written by
146 .An Dag-Erling Sm\(/orgrav Aq des@FreeBSD.org .
147 .Sh NOTES
148 The
149 .Dv LOCK_PROFILING
150 option increases the size of
151 .Vt "struct lock_object" ,
152 so a kernel built with that option will not work with modules built
153 without it.
154 .Pp
155 The
156 .Dv LOCK_PROFILING
157 option also prevents inlining of the mutex code, which can result in a
158 fairly severe performance penalty.
159 This is, however, not always the case.
160 .Dv LOCK_PROFILING
161 can introduce a substantial performance overhead that is easily
162 monitorable using other profiling tools, so combining profiling tools
163 with
164 .Dv LOCK_PROFILING
165 is not recommended.
166 .Pp
167 Measurements are made and stored in nanoseconds using
168 .Xr nanotime 9 ,
169 (on architectures without a synchronized TSC) but are presented in microseconds.
170 This should still be sufficient for the locks one would be most
171 interested in profiling (those that are held long and/or acquired
172 often).
173 .Pp
174 .Dv LOCK_PROFILING
175 should generally not be used in combination with other debugging options, as
176 the results may be strongly affected by interactions between the features.
177 In particular,
178 .Dv LOCK_PROFILING
179 will report higher than normal
180 .Xr uma 9
181 lock contention when run with
182 .Dv INVARIANTS
183 due to extra locking that occurs when
184 .Dv INVARIANTS
185 is present; likewise, using it in combination with
186 .Dv WITNESS
187 will lead to much higher lock hold times and contention in profiling output.