xref: /freebsd/sys/kern/subr_lock.c (revision 36712a94975f5bd0d26c85377283b49a2369c82f)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2006 John Baldwin <jhb@FreeBSD.org>
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 
28 /*
29  * This module holds the global variables and functions used to maintain
30  * lock_object structures.
31  */
32 
33 #include <sys/cdefs.h>
34 __FBSDID("$FreeBSD$");
35 
36 #include "opt_ddb.h"
37 #include "opt_mprof.h"
38 
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/kernel.h>
42 #include <sys/ktr.h>
43 #include <sys/lock.h>
44 #include <sys/lock_profile.h>
45 #include <sys/malloc.h>
46 #include <sys/mutex.h>
47 #include <sys/pcpu.h>
48 #include <sys/proc.h>
49 #include <sys/sbuf.h>
50 #include <sys/sched.h>
51 #include <sys/smp.h>
52 #include <sys/sysctl.h>
53 
54 #ifdef DDB
55 #include <ddb/ddb.h>
56 #endif
57 
58 #include <machine/cpufunc.h>
59 
60 SDT_PROVIDER_DEFINE(lock);
61 SDT_PROBE_DEFINE1(lock, , , starvation, "u_int");
62 
63 CTASSERT(LOCK_CLASS_MAX == 15);
64 
65 struct lock_class *lock_classes[LOCK_CLASS_MAX + 1] = {
66 	&lock_class_mtx_spin,
67 	&lock_class_mtx_sleep,
68 	&lock_class_sx,
69 	&lock_class_rm,
70 	&lock_class_rm_sleepable,
71 	&lock_class_rw,
72 	&lock_class_lockmgr,
73 };
74 
75 void
76 lock_init(struct lock_object *lock, struct lock_class *class, const char *name,
77     const char *type, int flags)
78 {
79 	int i;
80 
81 	/* Check for double-init and zero object. */
82 	KASSERT(flags & LO_NEW || !lock_initialized(lock),
83 	    ("lock \"%s\" %p already initialized", name, lock));
84 
85 	/* Look up lock class to find its index. */
86 	for (i = 0; i < LOCK_CLASS_MAX; i++)
87 		if (lock_classes[i] == class) {
88 			lock->lo_flags = i << LO_CLASSSHIFT;
89 			break;
90 		}
91 	KASSERT(i < LOCK_CLASS_MAX, ("unknown lock class %p", class));
92 
93 	/* Initialize the lock object. */
94 	lock->lo_name = name;
95 	lock->lo_flags |= flags | LO_INITIALIZED;
96 	LOCK_LOG_INIT(lock, 0);
97 	WITNESS_INIT(lock, (type != NULL) ? type : name);
98 }
99 
100 void
101 lock_destroy(struct lock_object *lock)
102 {
103 
104 	KASSERT(lock_initialized(lock), ("lock %p is not initialized", lock));
105 	WITNESS_DESTROY(lock);
106 	LOCK_LOG_DESTROY(lock, 0);
107 	lock->lo_flags &= ~LO_INITIALIZED;
108 }
109 
110 static SYSCTL_NODE(_debug, OID_AUTO, lock, CTLFLAG_RD, NULL, "lock debugging");
111 static SYSCTL_NODE(_debug_lock, OID_AUTO, delay, CTLFLAG_RD, NULL,
112     "lock delay");
113 
114 static u_int __read_mostly starvation_limit = 131072;
115 SYSCTL_INT(_debug_lock_delay, OID_AUTO, starvation_limit, CTLFLAG_RW,
116     &starvation_limit, 0, "");
117 
118 static u_int __read_mostly restrict_starvation = 0;
119 SYSCTL_INT(_debug_lock_delay, OID_AUTO, restrict_starvation, CTLFLAG_RW,
120     &restrict_starvation, 0, "");
121 
122 void
123 lock_delay(struct lock_delay_arg *la)
124 {
125 	struct lock_delay_config *lc = la->config;
126 	u_int i;
127 
128 	la->delay <<= 1;
129 	if (__predict_false(la->delay > lc->max))
130 		la->delay = lc->max;
131 
132 	for (i = la->delay; i > 0; i--)
133 		cpu_spinwait();
134 
135 	la->spin_cnt += la->delay;
136 	if (__predict_false(la->spin_cnt > starvation_limit)) {
137 		SDT_PROBE1(lock, , , starvation, la->delay);
138 		if (restrict_starvation)
139 			la->delay = lc->base;
140 	}
141 }
142 
143 static u_int
144 lock_roundup_2(u_int val)
145 {
146 	u_int res;
147 
148 	for (res = 1; res <= val; res <<= 1)
149 		continue;
150 
151 	return (res);
152 }
153 
154 void
155 lock_delay_default_init(struct lock_delay_config *lc)
156 {
157 
158 	lc->base = 1;
159 	lc->max = lock_roundup_2(mp_ncpus) * 256;
160 	if (lc->max > 32678)
161 		lc->max = 32678;
162 }
163 
164 #ifdef DDB
165 DB_SHOW_COMMAND(lock, db_show_lock)
166 {
167 	struct lock_object *lock;
168 	struct lock_class *class;
169 
170 	if (!have_addr)
171 		return;
172 	lock = (struct lock_object *)addr;
173 	if (LO_CLASSINDEX(lock) > LOCK_CLASS_MAX) {
174 		db_printf("Unknown lock class: %d\n", LO_CLASSINDEX(lock));
175 		return;
176 	}
177 	class = LOCK_CLASS(lock);
178 	db_printf(" class: %s\n", class->lc_name);
179 	db_printf(" name: %s\n", lock->lo_name);
180 	class->lc_ddb_show(lock);
181 }
182 #endif
183 
184 #ifdef LOCK_PROFILING
185 
186 /*
187  * One object per-thread for each lock the thread owns.  Tracks individual
188  * lock instances.
189  */
190 struct lock_profile_object {
191 	LIST_ENTRY(lock_profile_object) lpo_link;
192 	struct lock_object *lpo_obj;
193 	const char	*lpo_file;
194 	int		lpo_line;
195 	uint16_t	lpo_ref;
196 	uint16_t	lpo_cnt;
197 	uint64_t	lpo_acqtime;
198 	uint64_t	lpo_waittime;
199 	u_int		lpo_contest_locking;
200 };
201 
202 /*
203  * One lock_prof for each (file, line, lock object) triple.
204  */
205 struct lock_prof {
206 	SLIST_ENTRY(lock_prof) link;
207 	struct lock_class *class;
208 	const char	*file;
209 	const char	*name;
210 	int		line;
211 	int		ticks;
212 	uintmax_t	cnt_wait_max;
213 	uintmax_t	cnt_max;
214 	uintmax_t	cnt_tot;
215 	uintmax_t	cnt_wait;
216 	uintmax_t	cnt_cur;
217 	uintmax_t	cnt_contest_locking;
218 };
219 
220 SLIST_HEAD(lphead, lock_prof);
221 
222 #define	LPROF_HASH_SIZE		4096
223 #define	LPROF_HASH_MASK		(LPROF_HASH_SIZE - 1)
224 #define	LPROF_CACHE_SIZE	4096
225 
226 /*
227  * Array of objects and profs for each type of object for each cpu.  Spinlocks
228  * are handled separately because a thread may be preempted and acquire a
229  * spinlock while in the lock profiling code of a non-spinlock.  In this way
230  * we only need a critical section to protect the per-cpu lists.
231  */
232 struct lock_prof_type {
233 	struct lphead		lpt_lpalloc;
234 	struct lpohead		lpt_lpoalloc;
235 	struct lphead		lpt_hash[LPROF_HASH_SIZE];
236 	struct lock_prof	lpt_prof[LPROF_CACHE_SIZE];
237 	struct lock_profile_object lpt_objs[LPROF_CACHE_SIZE];
238 };
239 
240 struct lock_prof_cpu {
241 	struct lock_prof_type	lpc_types[2]; /* One for spin one for other. */
242 };
243 
244 DPCPU_DEFINE_STATIC(struct lock_prof_cpu, lp);
245 #define	LP_CPU_SELF	(DPCPU_PTR(lp))
246 #define	LP_CPU(cpu)	(DPCPU_ID_PTR((cpu), lp))
247 
248 volatile int __read_mostly lock_prof_enable;
249 static volatile int lock_prof_resetting;
250 
251 #define LPROF_SBUF_SIZE		256
252 
253 static int lock_prof_rejected;
254 static int lock_prof_skipspin;
255 static int lock_prof_skipcount;
256 
257 #ifndef USE_CPU_NANOSECONDS
258 uint64_t
259 nanoseconds(void)
260 {
261 	struct bintime bt;
262 	uint64_t ns;
263 
264 	binuptime(&bt);
265 	/* From bintime2timespec */
266 	ns = bt.sec * (uint64_t)1000000000;
267 	ns += ((uint64_t)1000000000 * (uint32_t)(bt.frac >> 32)) >> 32;
268 	return (ns);
269 }
270 #endif
271 
272 static void
273 lock_prof_init_type(struct lock_prof_type *type)
274 {
275 	int i;
276 
277 	SLIST_INIT(&type->lpt_lpalloc);
278 	LIST_INIT(&type->lpt_lpoalloc);
279 	for (i = 0; i < LPROF_CACHE_SIZE; i++) {
280 		SLIST_INSERT_HEAD(&type->lpt_lpalloc, &type->lpt_prof[i],
281 		    link);
282 		LIST_INSERT_HEAD(&type->lpt_lpoalloc, &type->lpt_objs[i],
283 		    lpo_link);
284 	}
285 }
286 
287 static void
288 lock_prof_init(void *arg)
289 {
290 	int cpu;
291 
292 	CPU_FOREACH(cpu) {
293 		lock_prof_init_type(&LP_CPU(cpu)->lpc_types[0]);
294 		lock_prof_init_type(&LP_CPU(cpu)->lpc_types[1]);
295 	}
296 }
297 SYSINIT(lockprof, SI_SUB_SMP, SI_ORDER_ANY, lock_prof_init, NULL);
298 
299 static void
300 lock_prof_reset_wait(void)
301 {
302 
303 	/*
304 	 * Spin relinquishing our cpu so that quiesce_all_cpus may
305 	 * complete.
306 	 */
307 	while (lock_prof_resetting)
308 		sched_relinquish(curthread);
309 }
310 
311 static void
312 lock_prof_reset(void)
313 {
314 	struct lock_prof_cpu *lpc;
315 	int enabled, i, cpu;
316 
317 	/*
318 	 * We not only race with acquiring and releasing locks but also
319 	 * thread exit.  To be certain that threads exit without valid head
320 	 * pointers they must see resetting set before enabled is cleared.
321 	 * Otherwise a lock may not be removed from a per-thread list due
322 	 * to disabled being set but not wait for reset() to remove it below.
323 	 */
324 	atomic_store_rel_int(&lock_prof_resetting, 1);
325 	enabled = lock_prof_enable;
326 	lock_prof_enable = 0;
327 	quiesce_all_cpus("profreset", 0);
328 	/*
329 	 * Some objects may have migrated between CPUs.  Clear all links
330 	 * before we zero the structures.  Some items may still be linked
331 	 * into per-thread lists as well.
332 	 */
333 	CPU_FOREACH(cpu) {
334 		lpc = LP_CPU(cpu);
335 		for (i = 0; i < LPROF_CACHE_SIZE; i++) {
336 			LIST_REMOVE(&lpc->lpc_types[0].lpt_objs[i], lpo_link);
337 			LIST_REMOVE(&lpc->lpc_types[1].lpt_objs[i], lpo_link);
338 		}
339 	}
340 	CPU_FOREACH(cpu) {
341 		lpc = LP_CPU(cpu);
342 		bzero(lpc, sizeof(*lpc));
343 		lock_prof_init_type(&lpc->lpc_types[0]);
344 		lock_prof_init_type(&lpc->lpc_types[1]);
345 	}
346 	atomic_store_rel_int(&lock_prof_resetting, 0);
347 	lock_prof_enable = enabled;
348 }
349 
350 static void
351 lock_prof_output(struct lock_prof *lp, struct sbuf *sb)
352 {
353 	const char *p;
354 
355 	for (p = lp->file; p != NULL && strncmp(p, "../", 3) == 0; p += 3);
356 	sbuf_printf(sb,
357 	    "%8ju %9ju %11ju %11ju %11ju %6ju %6ju %2ju %6ju %s:%d (%s:%s)\n",
358 	    lp->cnt_max / 1000, lp->cnt_wait_max / 1000, lp->cnt_tot / 1000,
359 	    lp->cnt_wait / 1000, lp->cnt_cur,
360 	    lp->cnt_cur == 0 ? (uintmax_t)0 :
361 	    lp->cnt_tot / (lp->cnt_cur * 1000),
362 	    lp->cnt_cur == 0 ? (uintmax_t)0 :
363 	    lp->cnt_wait / (lp->cnt_cur * 1000),
364 	    (uintmax_t)0, lp->cnt_contest_locking,
365 	    p, lp->line, lp->class->lc_name, lp->name);
366 }
367 
368 static void
369 lock_prof_sum(struct lock_prof *match, struct lock_prof *dst, int hash,
370     int spin, int t)
371 {
372 	struct lock_prof_type *type;
373 	struct lock_prof *l;
374 	int cpu;
375 
376 	dst->file = match->file;
377 	dst->line = match->line;
378 	dst->class = match->class;
379 	dst->name = match->name;
380 
381 	CPU_FOREACH(cpu) {
382 		type = &LP_CPU(cpu)->lpc_types[spin];
383 		SLIST_FOREACH(l, &type->lpt_hash[hash], link) {
384 			if (l->ticks == t)
385 				continue;
386 			if (l->file != match->file || l->line != match->line ||
387 			    l->name != match->name)
388 				continue;
389 			l->ticks = t;
390 			if (l->cnt_max > dst->cnt_max)
391 				dst->cnt_max = l->cnt_max;
392 			if (l->cnt_wait_max > dst->cnt_wait_max)
393 				dst->cnt_wait_max = l->cnt_wait_max;
394 			dst->cnt_tot += l->cnt_tot;
395 			dst->cnt_wait += l->cnt_wait;
396 			dst->cnt_cur += l->cnt_cur;
397 			dst->cnt_contest_locking += l->cnt_contest_locking;
398 		}
399 	}
400 }
401 
402 static void
403 lock_prof_type_stats(struct lock_prof_type *type, struct sbuf *sb, int spin,
404     int t)
405 {
406 	struct lock_prof *l;
407 	int i;
408 
409 	for (i = 0; i < LPROF_HASH_SIZE; ++i) {
410 		SLIST_FOREACH(l, &type->lpt_hash[i], link) {
411 			struct lock_prof lp = {};
412 
413 			if (l->ticks == t)
414 				continue;
415 			lock_prof_sum(l, &lp, i, spin, t);
416 			lock_prof_output(&lp, sb);
417 		}
418 	}
419 }
420 
421 static int
422 dump_lock_prof_stats(SYSCTL_HANDLER_ARGS)
423 {
424 	struct sbuf *sb;
425 	int error, cpu, t;
426 	int enabled;
427 
428 	error = sysctl_wire_old_buffer(req, 0);
429 	if (error != 0)
430 		return (error);
431 	sb = sbuf_new_for_sysctl(NULL, NULL, LPROF_SBUF_SIZE, req);
432 	sbuf_printf(sb, "\n%8s %9s %11s %11s %11s %6s %6s %2s %6s %s\n",
433 	    "max", "wait_max", "total", "wait_total", "count", "avg", "wait_avg", "cnt_hold", "cnt_lock", "name");
434 	enabled = lock_prof_enable;
435 	lock_prof_enable = 0;
436 	quiesce_all_cpus("profstat", 0);
437 	t = ticks;
438 	CPU_FOREACH(cpu) {
439 		lock_prof_type_stats(&LP_CPU(cpu)->lpc_types[0], sb, 0, t);
440 		lock_prof_type_stats(&LP_CPU(cpu)->lpc_types[1], sb, 1, t);
441 	}
442 	lock_prof_enable = enabled;
443 
444 	error = sbuf_finish(sb);
445 	/* Output a trailing NUL. */
446 	if (error == 0)
447 		error = SYSCTL_OUT(req, "", 1);
448 	sbuf_delete(sb);
449 	return (error);
450 }
451 
452 static int
453 enable_lock_prof(SYSCTL_HANDLER_ARGS)
454 {
455 	int error, v;
456 
457 	v = lock_prof_enable;
458 	error = sysctl_handle_int(oidp, &v, v, req);
459 	if (error)
460 		return (error);
461 	if (req->newptr == NULL)
462 		return (error);
463 	if (v == lock_prof_enable)
464 		return (0);
465 	if (v == 1)
466 		lock_prof_reset();
467 	lock_prof_enable = !!v;
468 
469 	return (0);
470 }
471 
472 static int
473 reset_lock_prof_stats(SYSCTL_HANDLER_ARGS)
474 {
475 	int error, v;
476 
477 	v = 0;
478 	error = sysctl_handle_int(oidp, &v, 0, req);
479 	if (error)
480 		return (error);
481 	if (req->newptr == NULL)
482 		return (error);
483 	if (v == 0)
484 		return (0);
485 	lock_prof_reset();
486 
487 	return (0);
488 }
489 
490 static struct lock_prof *
491 lock_profile_lookup(struct lock_object *lo, int spin, const char *file,
492     int line)
493 {
494 	const char *unknown = "(unknown)";
495 	struct lock_prof_type *type;
496 	struct lock_prof *lp;
497 	struct lphead *head;
498 	const char *p;
499 	u_int hash;
500 
501 	p = file;
502 	if (p == NULL || *p == '\0')
503 		p = unknown;
504 	hash = (uintptr_t)lo->lo_name * 31 + (uintptr_t)p * 31 + line;
505 	hash &= LPROF_HASH_MASK;
506 	type = &LP_CPU_SELF->lpc_types[spin];
507 	head = &type->lpt_hash[hash];
508 	SLIST_FOREACH(lp, head, link) {
509 		if (lp->line == line && lp->file == p &&
510 		    lp->name == lo->lo_name)
511 			return (lp);
512 
513 	}
514 	lp = SLIST_FIRST(&type->lpt_lpalloc);
515 	if (lp == NULL) {
516 		lock_prof_rejected++;
517 		return (lp);
518 	}
519 	SLIST_REMOVE_HEAD(&type->lpt_lpalloc, link);
520 	lp->file = p;
521 	lp->line = line;
522 	lp->class = LOCK_CLASS(lo);
523 	lp->name = lo->lo_name;
524 	SLIST_INSERT_HEAD(&type->lpt_hash[hash], lp, link);
525 	return (lp);
526 }
527 
528 static struct lock_profile_object *
529 lock_profile_object_lookup(struct lock_object *lo, int spin, const char *file,
530     int line)
531 {
532 	struct lock_profile_object *l;
533 	struct lock_prof_type *type;
534 	struct lpohead *head;
535 
536 	head = &curthread->td_lprof[spin];
537 	LIST_FOREACH(l, head, lpo_link)
538 		if (l->lpo_obj == lo && l->lpo_file == file &&
539 		    l->lpo_line == line)
540 			return (l);
541 	type = &LP_CPU_SELF->lpc_types[spin];
542 	l = LIST_FIRST(&type->lpt_lpoalloc);
543 	if (l == NULL) {
544 		lock_prof_rejected++;
545 		return (NULL);
546 	}
547 	LIST_REMOVE(l, lpo_link);
548 	l->lpo_obj = lo;
549 	l->lpo_file = file;
550 	l->lpo_line = line;
551 	l->lpo_cnt = 0;
552 	LIST_INSERT_HEAD(head, l, lpo_link);
553 
554 	return (l);
555 }
556 
557 void
558 lock_profile_obtain_lock_success(struct lock_object *lo, int contested,
559     uint64_t waittime, const char *file, int line)
560 {
561 	static int lock_prof_count;
562 	struct lock_profile_object *l;
563 	int spin;
564 
565 	if (SCHEDULER_STOPPED())
566 		return;
567 
568 	/* don't reset the timer when/if recursing */
569 	if (!lock_prof_enable || (lo->lo_flags & LO_NOPROFILE))
570 		return;
571 	if (lock_prof_skipcount &&
572 	    (++lock_prof_count % lock_prof_skipcount) != 0)
573 		return;
574 	spin = (LOCK_CLASS(lo)->lc_flags & LC_SPINLOCK) ? 1 : 0;
575 	if (spin && lock_prof_skipspin == 1)
576 		return;
577 	critical_enter();
578 	/* Recheck enabled now that we're in a critical section. */
579 	if (lock_prof_enable == 0)
580 		goto out;
581 	l = lock_profile_object_lookup(lo, spin, file, line);
582 	if (l == NULL)
583 		goto out;
584 	l->lpo_cnt++;
585 	if (++l->lpo_ref > 1)
586 		goto out;
587 	l->lpo_contest_locking = contested;
588 	l->lpo_acqtime = nanoseconds();
589 	if (waittime && (l->lpo_acqtime > waittime))
590 		l->lpo_waittime = l->lpo_acqtime - waittime;
591 	else
592 		l->lpo_waittime = 0;
593 out:
594 	critical_exit();
595 }
596 
597 void
598 lock_profile_thread_exit(struct thread *td)
599 {
600 #ifdef INVARIANTS
601 	struct lock_profile_object *l;
602 
603 	MPASS(curthread->td_critnest == 0);
604 #endif
605 	/*
606 	 * If lock profiling was disabled we have to wait for reset to
607 	 * clear our pointers before we can exit safely.
608 	 */
609 	lock_prof_reset_wait();
610 #ifdef INVARIANTS
611 	LIST_FOREACH(l, &td->td_lprof[0], lpo_link)
612 		printf("thread still holds lock acquired at %s:%d\n",
613 		    l->lpo_file, l->lpo_line);
614 	LIST_FOREACH(l, &td->td_lprof[1], lpo_link)
615 		printf("thread still holds lock acquired at %s:%d\n",
616 		    l->lpo_file, l->lpo_line);
617 #endif
618 	MPASS(LIST_FIRST(&td->td_lprof[0]) == NULL);
619 	MPASS(LIST_FIRST(&td->td_lprof[1]) == NULL);
620 }
621 
622 void
623 lock_profile_release_lock(struct lock_object *lo)
624 {
625 	struct lock_profile_object *l;
626 	struct lock_prof_type *type;
627 	struct lock_prof *lp;
628 	uint64_t curtime, holdtime;
629 	struct lpohead *head;
630 	int spin;
631 
632 	if (SCHEDULER_STOPPED())
633 		return;
634 	if (lo->lo_flags & LO_NOPROFILE)
635 		return;
636 	spin = (LOCK_CLASS(lo)->lc_flags & LC_SPINLOCK) ? 1 : 0;
637 	head = &curthread->td_lprof[spin];
638 	if (LIST_FIRST(head) == NULL)
639 		return;
640 	critical_enter();
641 	/* Recheck enabled now that we're in a critical section. */
642 	if (lock_prof_enable == 0 && lock_prof_resetting == 1)
643 		goto out;
644 	/*
645 	 * If lock profiling is not enabled we still want to remove the
646 	 * lpo from our queue.
647 	 */
648 	LIST_FOREACH(l, head, lpo_link)
649 		if (l->lpo_obj == lo)
650 			break;
651 	if (l == NULL)
652 		goto out;
653 	if (--l->lpo_ref > 0)
654 		goto out;
655 	lp = lock_profile_lookup(lo, spin, l->lpo_file, l->lpo_line);
656 	if (lp == NULL)
657 		goto release;
658 	curtime = nanoseconds();
659 	if (curtime < l->lpo_acqtime)
660 		goto release;
661 	holdtime = curtime - l->lpo_acqtime;
662 
663 	/*
664 	 * Record if the lock has been held longer now than ever
665 	 * before.
666 	 */
667 	if (holdtime > lp->cnt_max)
668 		lp->cnt_max = holdtime;
669 	if (l->lpo_waittime > lp->cnt_wait_max)
670 		lp->cnt_wait_max = l->lpo_waittime;
671 	lp->cnt_tot += holdtime;
672 	lp->cnt_wait += l->lpo_waittime;
673 	lp->cnt_contest_locking += l->lpo_contest_locking;
674 	lp->cnt_cur += l->lpo_cnt;
675 release:
676 	LIST_REMOVE(l, lpo_link);
677 	type = &LP_CPU_SELF->lpc_types[spin];
678 	LIST_INSERT_HEAD(&type->lpt_lpoalloc, l, lpo_link);
679 out:
680 	critical_exit();
681 }
682 
683 static SYSCTL_NODE(_debug_lock, OID_AUTO, prof, CTLFLAG_RD, NULL,
684     "lock profiling");
685 SYSCTL_INT(_debug_lock_prof, OID_AUTO, skipspin, CTLFLAG_RW,
686     &lock_prof_skipspin, 0, "Skip profiling on spinlocks.");
687 SYSCTL_INT(_debug_lock_prof, OID_AUTO, skipcount, CTLFLAG_RW,
688     &lock_prof_skipcount, 0, "Sample approximately every N lock acquisitions.");
689 SYSCTL_INT(_debug_lock_prof, OID_AUTO, rejected, CTLFLAG_RD,
690     &lock_prof_rejected, 0, "Number of rejected profiling records");
691 SYSCTL_PROC(_debug_lock_prof, OID_AUTO, stats, CTLTYPE_STRING | CTLFLAG_RD,
692     NULL, 0, dump_lock_prof_stats, "A", "Lock profiling statistics");
693 SYSCTL_PROC(_debug_lock_prof, OID_AUTO, reset, CTLTYPE_INT | CTLFLAG_RW,
694     NULL, 0, reset_lock_prof_stats, "I", "Reset lock profiling statistics");
695 SYSCTL_PROC(_debug_lock_prof, OID_AUTO, enable, CTLTYPE_INT | CTLFLAG_RW,
696     NULL, 0, enable_lock_prof, "I", "Enable lock profiling");
697 
698 #endif
699