183a81bcbSJohn Baldwin /*-
2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
38a36da99SPedro F. Giffuni *
483a81bcbSJohn Baldwin * Copyright (c) 2006 John Baldwin <jhb@FreeBSD.org>
583a81bcbSJohn Baldwin *
683a81bcbSJohn Baldwin * Redistribution and use in source and binary forms, with or without
783a81bcbSJohn Baldwin * modification, are permitted provided that the following conditions
883a81bcbSJohn Baldwin * are met:
983a81bcbSJohn Baldwin * 1. Redistributions of source code must retain the above copyright
1083a81bcbSJohn Baldwin * notice, this list of conditions and the following disclaimer.
1183a81bcbSJohn Baldwin * 2. Redistributions in binary form must reproduce the above copyright
1283a81bcbSJohn Baldwin * notice, this list of conditions and the following disclaimer in the
1383a81bcbSJohn Baldwin * documentation and/or other materials provided with the distribution.
1483a81bcbSJohn Baldwin *
1583a81bcbSJohn Baldwin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1683a81bcbSJohn Baldwin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1783a81bcbSJohn Baldwin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1883a81bcbSJohn Baldwin * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1983a81bcbSJohn Baldwin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2083a81bcbSJohn Baldwin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2183a81bcbSJohn Baldwin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2283a81bcbSJohn Baldwin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2383a81bcbSJohn Baldwin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2483a81bcbSJohn Baldwin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2583a81bcbSJohn Baldwin * SUCH DAMAGE.
2683a81bcbSJohn Baldwin */
2783a81bcbSJohn Baldwin
2883a81bcbSJohn Baldwin /*
2983a81bcbSJohn Baldwin * This module holds the global variables and functions used to maintain
3083a81bcbSJohn Baldwin * lock_object structures.
3183a81bcbSJohn Baldwin */
3283a81bcbSJohn Baldwin
3383a81bcbSJohn Baldwin #include <sys/cdefs.h>
346ef970a9SJohn Baldwin #include "opt_ddb.h"
357c0435b9SKip Macy #include "opt_mprof.h"
366ef970a9SJohn Baldwin
3783a81bcbSJohn Baldwin #include <sys/param.h>
3883a81bcbSJohn Baldwin #include <sys/systm.h>
39eea4f254SJeff Roberson #include <sys/kernel.h>
4083a81bcbSJohn Baldwin #include <sys/ktr.h>
41eac22dd4SMateusz Guzik #include <sys/limits.h>
4283a81bcbSJohn Baldwin #include <sys/lock.h>
437c0435b9SKip Macy #include <sys/lock_profile.h>
44eea4f254SJeff Roberson #include <sys/malloc.h>
452e6b8de4SJeff Roberson #include <sys/mutex.h>
46eea4f254SJeff Roberson #include <sys/pcpu.h>
47eea4f254SJeff Roberson #include <sys/proc.h>
48eea4f254SJeff Roberson #include <sys/sbuf.h>
492e6b8de4SJeff Roberson #include <sys/sched.h>
50eea4f254SJeff Roberson #include <sys/smp.h>
51eea4f254SJeff Roberson #include <sys/sysctl.h>
5283a81bcbSJohn Baldwin
5383a81bcbSJohn Baldwin #ifdef DDB
5483a81bcbSJohn Baldwin #include <ddb/ddb.h>
5583a81bcbSJohn Baldwin #endif
5683a81bcbSJohn Baldwin
57eea4f254SJeff Roberson #include <machine/cpufunc.h>
58eea4f254SJeff Roberson
596a467cc5SMateusz Guzik /*
606a467cc5SMateusz Guzik * Uncomment to validate that spin argument to acquire/release routines matches
616a467cc5SMateusz Guzik * the flag in the lock
626a467cc5SMateusz Guzik */
636a467cc5SMateusz Guzik //#define LOCK_PROFILING_DEBUG_SPIN
646a467cc5SMateusz Guzik
6583a81bcbSJohn Baldwin CTASSERT(LOCK_CLASS_MAX == 15);
6683a81bcbSJohn Baldwin
6783a81bcbSJohn Baldwin struct lock_class *lock_classes[LOCK_CLASS_MAX + 1] = {
6883a81bcbSJohn Baldwin &lock_class_mtx_spin,
6983a81bcbSJohn Baldwin &lock_class_mtx_sleep,
7083a81bcbSJohn Baldwin &lock_class_sx,
71f53d15feSStephan Uphoff &lock_class_rm,
72cd32bd7aSJohn Baldwin &lock_class_rm_sleepable,
733f08bd8bSJohn Baldwin &lock_class_rw,
7461bd5e21SKip Macy &lock_class_lockmgr,
7583a81bcbSJohn Baldwin };
7683a81bcbSJohn Baldwin
7783a81bcbSJohn Baldwin void
lock_init(struct lock_object * lock,struct lock_class * class,const char * name,const char * type,int flags)7883a81bcbSJohn Baldwin lock_init(struct lock_object *lock, struct lock_class *class, const char *name,
7983a81bcbSJohn Baldwin const char *type, int flags)
8083a81bcbSJohn Baldwin {
8183a81bcbSJohn Baldwin int i;
8283a81bcbSJohn Baldwin
8383a81bcbSJohn Baldwin /* Check for double-init and zero object. */
84fd07ddcfSDmitry Chagin KASSERT(flags & LO_NEW || !lock_initialized(lock),
85fd07ddcfSDmitry Chagin ("lock \"%s\" %p already initialized", name, lock));
8683a81bcbSJohn Baldwin
8783a81bcbSJohn Baldwin /* Look up lock class to find its index. */
8883a81bcbSJohn Baldwin for (i = 0; i < LOCK_CLASS_MAX; i++)
8983a81bcbSJohn Baldwin if (lock_classes[i] == class) {
9083a81bcbSJohn Baldwin lock->lo_flags = i << LO_CLASSSHIFT;
9183a81bcbSJohn Baldwin break;
9283a81bcbSJohn Baldwin }
9383a81bcbSJohn Baldwin KASSERT(i < LOCK_CLASS_MAX, ("unknown lock class %p", class));
9483a81bcbSJohn Baldwin
9583a81bcbSJohn Baldwin /* Initialize the lock object. */
9683a81bcbSJohn Baldwin lock->lo_name = name;
9783a81bcbSJohn Baldwin lock->lo_flags |= flags | LO_INITIALIZED;
9883a81bcbSJohn Baldwin LOCK_LOG_INIT(lock, 0);
9990356491SAttilio Rao WITNESS_INIT(lock, (type != NULL) ? type : name);
10083a81bcbSJohn Baldwin }
10183a81bcbSJohn Baldwin
10283a81bcbSJohn Baldwin void
lock_destroy(struct lock_object * lock)10383a81bcbSJohn Baldwin lock_destroy(struct lock_object *lock)
10483a81bcbSJohn Baldwin {
10583a81bcbSJohn Baldwin
1063a6cdc4eSJohn-Mark Gurney KASSERT(lock_initialized(lock), ("lock %p is not initialized", lock));
10783a81bcbSJohn Baldwin WITNESS_DESTROY(lock);
10883a81bcbSJohn Baldwin LOCK_LOG_DESTROY(lock, 0);
10983a81bcbSJohn Baldwin lock->lo_flags &= ~LO_INITIALIZED;
11083a81bcbSJohn Baldwin }
11183a81bcbSJohn Baldwin
1127029da5cSPawel Biernacki static SYSCTL_NODE(_debug, OID_AUTO, lock, CTLFLAG_RD | CTLFLAG_MPSAFE, NULL,
1137029da5cSPawel Biernacki "lock debugging");
1147029da5cSPawel Biernacki static SYSCTL_NODE(_debug_lock, OID_AUTO, delay,
1157029da5cSPawel Biernacki CTLFLAG_RD | CTLFLAG_MPSAFE, NULL,
1168e5a3e9aSMateusz Guzik "lock delay");
1178e5a3e9aSMateusz Guzik
1181ada9041SMateusz Guzik void
lock_delay(struct lock_delay_arg * la)1191ada9041SMateusz Guzik lock_delay(struct lock_delay_arg *la)
1201ada9041SMateusz Guzik {
1211ada9041SMateusz Guzik struct lock_delay_config *lc = la->config;
1228a16fb47SJonathan T. Looney u_int i;
1231ada9041SMateusz Guzik
1243c798b2bSMateusz Guzik for (i = la->delay; i > 0; i--)
1251ada9041SMateusz Guzik cpu_spinwait();
1268e5a3e9aSMateusz Guzik la->spin_cnt += la->delay;
1277f6157f7SEdward Tomasz Napierala
1287f6157f7SEdward Tomasz Napierala la->delay <<= 1;
1298a16fb47SJonathan T. Looney if (__predict_false(la->delay > (u_int)lc->max))
1307f6157f7SEdward Tomasz Napierala la->delay = lc->max;
1318e5a3e9aSMateusz Guzik }
1328e5a3e9aSMateusz Guzik
1338e5a3e9aSMateusz Guzik static u_int
lock_roundup_2(u_int val)1348e5a3e9aSMateusz Guzik lock_roundup_2(u_int val)
1358e5a3e9aSMateusz Guzik {
1368e5a3e9aSMateusz Guzik u_int res;
1378e5a3e9aSMateusz Guzik
1388e5a3e9aSMateusz Guzik for (res = 1; res <= val; res <<= 1)
1398e5a3e9aSMateusz Guzik continue;
1408e5a3e9aSMateusz Guzik
1418e5a3e9aSMateusz Guzik return (res);
1428e5a3e9aSMateusz Guzik }
1438e5a3e9aSMateusz Guzik
1448e5a3e9aSMateusz Guzik void
lock_delay_default_init(struct lock_delay_config * lc)1458e5a3e9aSMateusz Guzik lock_delay_default_init(struct lock_delay_config *lc)
1468e5a3e9aSMateusz Guzik {
1478e5a3e9aSMateusz Guzik
148a045941bSMateusz Guzik lc->base = 1;
1498a16fb47SJonathan T. Looney lc->max = min(lock_roundup_2(mp_ncpus) * 256, SHRT_MAX);
1501ada9041SMateusz Guzik }
1511ada9041SMateusz Guzik
1522e77cad1SMateusz Guzik struct lock_delay_config __read_frequently locks_delay;
1532e77cad1SMateusz Guzik u_short __read_frequently locks_delay_retries;
1542e77cad1SMateusz Guzik u_short __read_frequently locks_delay_loops;
1552e77cad1SMateusz Guzik
1562e77cad1SMateusz Guzik SYSCTL_U16(_debug_lock, OID_AUTO, delay_base, CTLFLAG_RW, &locks_delay.base,
1572e77cad1SMateusz Guzik 0, "");
1582e77cad1SMateusz Guzik SYSCTL_U16(_debug_lock, OID_AUTO, delay_max, CTLFLAG_RW, &locks_delay.max,
1592e77cad1SMateusz Guzik 0, "");
1602e77cad1SMateusz Guzik SYSCTL_U16(_debug_lock, OID_AUTO, delay_retries, CTLFLAG_RW, &locks_delay_retries,
1612e77cad1SMateusz Guzik 0, "");
1622e77cad1SMateusz Guzik SYSCTL_U16(_debug_lock, OID_AUTO, delay_loops, CTLFLAG_RW, &locks_delay_loops,
1632e77cad1SMateusz Guzik 0, "");
1642e77cad1SMateusz Guzik
1652e77cad1SMateusz Guzik static void
locks_delay_init(void * arg __unused)1662e77cad1SMateusz Guzik locks_delay_init(void *arg __unused)
1672e77cad1SMateusz Guzik {
1682e77cad1SMateusz Guzik
1692e77cad1SMateusz Guzik lock_delay_default_init(&locks_delay);
1702e77cad1SMateusz Guzik locks_delay_retries = 10;
1712e77cad1SMateusz Guzik locks_delay_loops = max(10000, locks_delay.max);
1722e77cad1SMateusz Guzik }
1732e77cad1SMateusz Guzik LOCK_DELAY_SYSINIT(locks_delay_init);
1742e77cad1SMateusz Guzik
17583a81bcbSJohn Baldwin #ifdef DDB
DB_SHOW_COMMAND(lock,db_show_lock)17683a81bcbSJohn Baldwin DB_SHOW_COMMAND(lock, db_show_lock)
17783a81bcbSJohn Baldwin {
17883a81bcbSJohn Baldwin struct lock_object *lock;
17983a81bcbSJohn Baldwin struct lock_class *class;
18083a81bcbSJohn Baldwin
18183a81bcbSJohn Baldwin if (!have_addr)
18283a81bcbSJohn Baldwin return;
18383a81bcbSJohn Baldwin lock = (struct lock_object *)addr;
18483a81bcbSJohn Baldwin if (LO_CLASSINDEX(lock) > LOCK_CLASS_MAX) {
18583a81bcbSJohn Baldwin db_printf("Unknown lock class: %d\n", LO_CLASSINDEX(lock));
18683a81bcbSJohn Baldwin return;
18783a81bcbSJohn Baldwin }
18883a81bcbSJohn Baldwin class = LOCK_CLASS(lock);
18983a81bcbSJohn Baldwin db_printf(" class: %s\n", class->lc_name);
19083a81bcbSJohn Baldwin db_printf(" name: %s\n", lock->lo_name);
19183a81bcbSJohn Baldwin class->lc_ddb_show(lock);
19283a81bcbSJohn Baldwin }
19383a81bcbSJohn Baldwin #endif
1947c0435b9SKip Macy
1957c0435b9SKip Macy #ifdef LOCK_PROFILING
196eea4f254SJeff Roberson
197eea4f254SJeff Roberson /*
198eea4f254SJeff Roberson * One object per-thread for each lock the thread owns. Tracks individual
199eea4f254SJeff Roberson * lock instances.
200eea4f254SJeff Roberson */
201eea4f254SJeff Roberson struct lock_profile_object {
202eea4f254SJeff Roberson LIST_ENTRY(lock_profile_object) lpo_link;
203eea4f254SJeff Roberson struct lock_object *lpo_obj;
204eea4f254SJeff Roberson const char *lpo_file;
205eea4f254SJeff Roberson int lpo_line;
206eea4f254SJeff Roberson uint16_t lpo_ref;
207eea4f254SJeff Roberson uint16_t lpo_cnt;
20860ae52f7SEd Schouten uint64_t lpo_acqtime;
20960ae52f7SEd Schouten uint64_t lpo_waittime;
210eea4f254SJeff Roberson u_int lpo_contest_locking;
211eea4f254SJeff Roberson };
212eea4f254SJeff Roberson
213eea4f254SJeff Roberson /*
214eea4f254SJeff Roberson * One lock_prof for each (file, line, lock object) triple.
215eea4f254SJeff Roberson */
216eea4f254SJeff Roberson struct lock_prof {
217eea4f254SJeff Roberson SLIST_ENTRY(lock_prof) link;
2180c66dc67SJeff Roberson struct lock_class *class;
219eea4f254SJeff Roberson const char *file;
220eea4f254SJeff Roberson const char *name;
221eea4f254SJeff Roberson int line;
222eea4f254SJeff Roberson int ticks;
223947265b6SKip Macy uintmax_t cnt_wait_max;
224eea4f254SJeff Roberson uintmax_t cnt_max;
225eea4f254SJeff Roberson uintmax_t cnt_tot;
226eea4f254SJeff Roberson uintmax_t cnt_wait;
227eea4f254SJeff Roberson uintmax_t cnt_cur;
228eea4f254SJeff Roberson uintmax_t cnt_contest_locking;
229eea4f254SJeff Roberson };
230eea4f254SJeff Roberson
231eea4f254SJeff Roberson SLIST_HEAD(lphead, lock_prof);
232eea4f254SJeff Roberson
233eea4f254SJeff Roberson #define LPROF_HASH_SIZE 4096
234eea4f254SJeff Roberson #define LPROF_HASH_MASK (LPROF_HASH_SIZE - 1)
235eea4f254SJeff Roberson #define LPROF_CACHE_SIZE 4096
236eea4f254SJeff Roberson
237eea4f254SJeff Roberson /*
238eea4f254SJeff Roberson * Array of objects and profs for each type of object for each cpu. Spinlocks
239b1ce21c6SRebecca Cran * are handled separately because a thread may be preempted and acquire a
240eea4f254SJeff Roberson * spinlock while in the lock profiling code of a non-spinlock. In this way
241eea4f254SJeff Roberson * we only need a critical section to protect the per-cpu lists.
242eea4f254SJeff Roberson */
243eea4f254SJeff Roberson struct lock_prof_type {
244eea4f254SJeff Roberson struct lphead lpt_lpalloc;
245eea4f254SJeff Roberson struct lpohead lpt_lpoalloc;
246eea4f254SJeff Roberson struct lphead lpt_hash[LPROF_HASH_SIZE];
247eea4f254SJeff Roberson struct lock_prof lpt_prof[LPROF_CACHE_SIZE];
248eea4f254SJeff Roberson struct lock_profile_object lpt_objs[LPROF_CACHE_SIZE];
249eea4f254SJeff Roberson };
250eea4f254SJeff Roberson
251eea4f254SJeff Roberson struct lock_prof_cpu {
252eea4f254SJeff Roberson struct lock_prof_type lpc_types[2]; /* One for spin one for other. */
253eea4f254SJeff Roberson };
254eea4f254SJeff Roberson
255d2be3ef0SMateusz Guzik DPCPU_DEFINE_STATIC(struct lock_prof_cpu, lp);
256d2be3ef0SMateusz Guzik #define LP_CPU_SELF (DPCPU_PTR(lp))
257d2be3ef0SMateusz Guzik #define LP_CPU(cpu) (DPCPU_ID_PTR((cpu), lp))
258eea4f254SJeff Roberson
25929051116SMateusz Guzik volatile int __read_mostly lock_prof_enable;
260a0842e69SMateusz Guzik int __read_mostly lock_contested_only;
2612e6b8de4SJeff Roberson static volatile int lock_prof_resetting;
262eea4f254SJeff Roberson
2634e657159SMatthew D Fleming #define LPROF_SBUF_SIZE 256
264eea4f254SJeff Roberson
265eea4f254SJeff Roberson static int lock_prof_rejected;
266eea4f254SJeff Roberson static int lock_prof_skipspin;
267eea4f254SJeff Roberson
268eea4f254SJeff Roberson #ifndef USE_CPU_NANOSECONDS
26960ae52f7SEd Schouten uint64_t
nanoseconds(void)270eea4f254SJeff Roberson nanoseconds(void)
2717c0435b9SKip Macy {
272eea4f254SJeff Roberson struct bintime bt;
27360ae52f7SEd Schouten uint64_t ns;
2747c0435b9SKip Macy
275eea4f254SJeff Roberson binuptime(&bt);
276eea4f254SJeff Roberson /* From bintime2timespec */
27760ae52f7SEd Schouten ns = bt.sec * (uint64_t)1000000000;
278eea4f254SJeff Roberson ns += ((uint64_t)1000000000 * (uint32_t)(bt.frac >> 32)) >> 32;
279eea4f254SJeff Roberson return (ns);
280eea4f254SJeff Roberson }
281eea4f254SJeff Roberson #endif
282fe68a916SKip Macy
283eea4f254SJeff Roberson static void
lock_prof_init_type(struct lock_prof_type * type)284eea4f254SJeff Roberson lock_prof_init_type(struct lock_prof_type *type)
285eea4f254SJeff Roberson {
286eea4f254SJeff Roberson int i;
287fe68a916SKip Macy
288eea4f254SJeff Roberson SLIST_INIT(&type->lpt_lpalloc);
289eea4f254SJeff Roberson LIST_INIT(&type->lpt_lpoalloc);
290eea4f254SJeff Roberson for (i = 0; i < LPROF_CACHE_SIZE; i++) {
291eea4f254SJeff Roberson SLIST_INSERT_HEAD(&type->lpt_lpalloc, &type->lpt_prof[i],
292eea4f254SJeff Roberson link);
293eea4f254SJeff Roberson LIST_INSERT_HEAD(&type->lpt_lpoalloc, &type->lpt_objs[i],
294eea4f254SJeff Roberson lpo_link);
295eea4f254SJeff Roberson }
296eea4f254SJeff Roberson }
297eea4f254SJeff Roberson
298eea4f254SJeff Roberson static void
lock_prof_init(void * arg)299eea4f254SJeff Roberson lock_prof_init(void *arg)
300eea4f254SJeff Roberson {
301eea4f254SJeff Roberson int cpu;
302eea4f254SJeff Roberson
303cbba2cb3SMateusz Guzik CPU_FOREACH(cpu) {
304d2be3ef0SMateusz Guzik lock_prof_init_type(&LP_CPU(cpu)->lpc_types[0]);
305d2be3ef0SMateusz Guzik lock_prof_init_type(&LP_CPU(cpu)->lpc_types[1]);
306eea4f254SJeff Roberson }
307eea4f254SJeff Roberson }
308eea4f254SJeff Roberson SYSINIT(lockprof, SI_SUB_SMP, SI_ORDER_ANY, lock_prof_init, NULL);
309eea4f254SJeff Roberson
3102e6b8de4SJeff Roberson static void
lock_prof_reset_wait(void)3112e6b8de4SJeff Roberson lock_prof_reset_wait(void)
3122e6b8de4SJeff Roberson {
3132e6b8de4SJeff Roberson
3142e6b8de4SJeff Roberson /*
31528d91af3SJeff Roberson * Spin relinquishing our cpu so that quiesce_all_cpus may
31628d91af3SJeff Roberson * complete.
3172e6b8de4SJeff Roberson */
3182e6b8de4SJeff Roberson while (lock_prof_resetting)
3192e6b8de4SJeff Roberson sched_relinquish(curthread);
3202e6b8de4SJeff Roberson }
3212e6b8de4SJeff Roberson
322eea4f254SJeff Roberson static void
lock_prof_reset(void)323eea4f254SJeff Roberson lock_prof_reset(void)
324eea4f254SJeff Roberson {
325eea4f254SJeff Roberson struct lock_prof_cpu *lpc;
326eea4f254SJeff Roberson int enabled, i, cpu;
327eea4f254SJeff Roberson
3282e6b8de4SJeff Roberson /*
3292e6b8de4SJeff Roberson * We not only race with acquiring and releasing locks but also
3302e6b8de4SJeff Roberson * thread exit. To be certain that threads exit without valid head
3312e6b8de4SJeff Roberson * pointers they must see resetting set before enabled is cleared.
3322e6b8de4SJeff Roberson * Otherwise a lock may not be removed from a per-thread list due
3332e6b8de4SJeff Roberson * to disabled being set but not wait for reset() to remove it below.
3342e6b8de4SJeff Roberson */
3352e6b8de4SJeff Roberson atomic_store_rel_int(&lock_prof_resetting, 1);
336eea4f254SJeff Roberson enabled = lock_prof_enable;
337eea4f254SJeff Roberson lock_prof_enable = 0;
3383ac2ac2eSMateusz Guzik /*
3393ac2ac2eSMateusz Guzik * This both publishes lock_prof_enable as disabled and makes sure
3403ac2ac2eSMateusz Guzik * everyone else reads it if they are not far enough. We wait for the
3413ac2ac2eSMateusz Guzik * rest down below.
3423ac2ac2eSMateusz Guzik */
3433ac2ac2eSMateusz Guzik cpus_fence_seq_cst();
3443ac2ac2eSMateusz Guzik quiesce_all_critical();
3452e6b8de4SJeff Roberson /*
3462e6b8de4SJeff Roberson * Some objects may have migrated between CPUs. Clear all links
3472e6b8de4SJeff Roberson * before we zero the structures. Some items may still be linked
3482e6b8de4SJeff Roberson * into per-thread lists as well.
3492e6b8de4SJeff Roberson */
350cbba2cb3SMateusz Guzik CPU_FOREACH(cpu) {
351d2be3ef0SMateusz Guzik lpc = LP_CPU(cpu);
352eea4f254SJeff Roberson for (i = 0; i < LPROF_CACHE_SIZE; i++) {
353eea4f254SJeff Roberson LIST_REMOVE(&lpc->lpc_types[0].lpt_objs[i], lpo_link);
354eea4f254SJeff Roberson LIST_REMOVE(&lpc->lpc_types[1].lpt_objs[i], lpo_link);
355eea4f254SJeff Roberson }
3562e6b8de4SJeff Roberson }
357cbba2cb3SMateusz Guzik CPU_FOREACH(cpu) {
358d2be3ef0SMateusz Guzik lpc = LP_CPU(cpu);
359eea4f254SJeff Roberson bzero(lpc, sizeof(*lpc));
360eea4f254SJeff Roberson lock_prof_init_type(&lpc->lpc_types[0]);
361eea4f254SJeff Roberson lock_prof_init_type(&lpc->lpc_types[1]);
362eea4f254SJeff Roberson }
3633ac2ac2eSMateusz Guzik /*
3643ac2ac2eSMateusz Guzik * Paired with the fence from cpus_fence_seq_cst()
3653ac2ac2eSMateusz Guzik */
3662e6b8de4SJeff Roberson atomic_store_rel_int(&lock_prof_resetting, 0);
367eea4f254SJeff Roberson lock_prof_enable = enabled;
368eea4f254SJeff Roberson }
369eea4f254SJeff Roberson
370eea4f254SJeff Roberson static void
lock_prof_output(struct lock_prof * lp,struct sbuf * sb)371eea4f254SJeff Roberson lock_prof_output(struct lock_prof *lp, struct sbuf *sb)
372eea4f254SJeff Roberson {
373eea4f254SJeff Roberson const char *p;
374eea4f254SJeff Roberson
375eea4f254SJeff Roberson for (p = lp->file; p != NULL && strncmp(p, "../", 3) == 0; p += 3);
376eea4f254SJeff Roberson sbuf_printf(sb,
377947265b6SKip Macy "%8ju %9ju %11ju %11ju %11ju %6ju %6ju %2ju %6ju %s:%d (%s:%s)\n",
378947265b6SKip Macy lp->cnt_max / 1000, lp->cnt_wait_max / 1000, lp->cnt_tot / 1000,
379eea4f254SJeff Roberson lp->cnt_wait / 1000, lp->cnt_cur,
380eea4f254SJeff Roberson lp->cnt_cur == 0 ? (uintmax_t)0 :
381eea4f254SJeff Roberson lp->cnt_tot / (lp->cnt_cur * 1000),
382eea4f254SJeff Roberson lp->cnt_cur == 0 ? (uintmax_t)0 :
383eea4f254SJeff Roberson lp->cnt_wait / (lp->cnt_cur * 1000),
384eea4f254SJeff Roberson (uintmax_t)0, lp->cnt_contest_locking,
3850c66dc67SJeff Roberson p, lp->line, lp->class->lc_name, lp->name);
386eea4f254SJeff Roberson }
387eea4f254SJeff Roberson
388eea4f254SJeff Roberson static void
lock_prof_sum(struct lock_prof * match,struct lock_prof * dst,int hash,int spin,int t)389eea4f254SJeff Roberson lock_prof_sum(struct lock_prof *match, struct lock_prof *dst, int hash,
390eea4f254SJeff Roberson int spin, int t)
391eea4f254SJeff Roberson {
392eea4f254SJeff Roberson struct lock_prof_type *type;
393eea4f254SJeff Roberson struct lock_prof *l;
394eea4f254SJeff Roberson int cpu;
395eea4f254SJeff Roberson
396eea4f254SJeff Roberson dst->file = match->file;
397eea4f254SJeff Roberson dst->line = match->line;
3980c66dc67SJeff Roberson dst->class = match->class;
399eea4f254SJeff Roberson dst->name = match->name;
400eea4f254SJeff Roberson
401cbba2cb3SMateusz Guzik CPU_FOREACH(cpu) {
402d2be3ef0SMateusz Guzik type = &LP_CPU(cpu)->lpc_types[spin];
403eea4f254SJeff Roberson SLIST_FOREACH(l, &type->lpt_hash[hash], link) {
404eea4f254SJeff Roberson if (l->ticks == t)
405eea4f254SJeff Roberson continue;
406eea4f254SJeff Roberson if (l->file != match->file || l->line != match->line ||
4070c66dc67SJeff Roberson l->name != match->name)
408eea4f254SJeff Roberson continue;
409eea4f254SJeff Roberson l->ticks = t;
410eea4f254SJeff Roberson if (l->cnt_max > dst->cnt_max)
411eea4f254SJeff Roberson dst->cnt_max = l->cnt_max;
412947265b6SKip Macy if (l->cnt_wait_max > dst->cnt_wait_max)
413947265b6SKip Macy dst->cnt_wait_max = l->cnt_wait_max;
414eea4f254SJeff Roberson dst->cnt_tot += l->cnt_tot;
415eea4f254SJeff Roberson dst->cnt_wait += l->cnt_wait;
416eea4f254SJeff Roberson dst->cnt_cur += l->cnt_cur;
417eea4f254SJeff Roberson dst->cnt_contest_locking += l->cnt_contest_locking;
418eea4f254SJeff Roberson }
419eea4f254SJeff Roberson }
420eea4f254SJeff Roberson }
421eea4f254SJeff Roberson
422eea4f254SJeff Roberson static void
lock_prof_type_stats(struct lock_prof_type * type,struct sbuf * sb,int spin,int t)423eea4f254SJeff Roberson lock_prof_type_stats(struct lock_prof_type *type, struct sbuf *sb, int spin,
424eea4f254SJeff Roberson int t)
425eea4f254SJeff Roberson {
426eea4f254SJeff Roberson struct lock_prof *l;
427eea4f254SJeff Roberson int i;
428eea4f254SJeff Roberson
429eea4f254SJeff Roberson for (i = 0; i < LPROF_HASH_SIZE; ++i) {
430eea4f254SJeff Roberson SLIST_FOREACH(l, &type->lpt_hash[i], link) {
431eea4f254SJeff Roberson struct lock_prof lp = {};
432eea4f254SJeff Roberson
433eea4f254SJeff Roberson if (l->ticks == t)
434eea4f254SJeff Roberson continue;
435eea4f254SJeff Roberson lock_prof_sum(l, &lp, i, spin, t);
436eea4f254SJeff Roberson lock_prof_output(&lp, sb);
437eea4f254SJeff Roberson }
438eea4f254SJeff Roberson }
439eea4f254SJeff Roberson }
440eea4f254SJeff Roberson
441eea4f254SJeff Roberson static int
dump_lock_prof_stats(SYSCTL_HANDLER_ARGS)442eea4f254SJeff Roberson dump_lock_prof_stats(SYSCTL_HANDLER_ARGS)
443eea4f254SJeff Roberson {
444eea4f254SJeff Roberson struct sbuf *sb;
445eea4f254SJeff Roberson int error, cpu, t;
4460c66dc67SJeff Roberson int enabled;
447eea4f254SJeff Roberson
44800f0e671SMatthew D Fleming error = sysctl_wire_old_buffer(req, 0);
44900f0e671SMatthew D Fleming if (error != 0)
45000f0e671SMatthew D Fleming return (error);
4514e657159SMatthew D Fleming sb = sbuf_new_for_sysctl(NULL, NULL, LPROF_SBUF_SIZE, req);
452947265b6SKip Macy sbuf_printf(sb, "\n%8s %9s %11s %11s %11s %6s %6s %2s %6s %s\n",
453947265b6SKip Macy "max", "wait_max", "total", "wait_total", "count", "avg", "wait_avg", "cnt_hold", "cnt_lock", "name");
4540c66dc67SJeff Roberson enabled = lock_prof_enable;
4550c66dc67SJeff Roberson lock_prof_enable = 0;
4563ac2ac2eSMateusz Guzik /*
4573ac2ac2eSMateusz Guzik * See the comment in lock_prof_reset
4583ac2ac2eSMateusz Guzik */
4593ac2ac2eSMateusz Guzik cpus_fence_seq_cst();
4603ac2ac2eSMateusz Guzik quiesce_all_critical();
461eea4f254SJeff Roberson t = ticks;
462cbba2cb3SMateusz Guzik CPU_FOREACH(cpu) {
463d2be3ef0SMateusz Guzik lock_prof_type_stats(&LP_CPU(cpu)->lpc_types[0], sb, 0, t);
464d2be3ef0SMateusz Guzik lock_prof_type_stats(&LP_CPU(cpu)->lpc_types[1], sb, 1, t);
465eea4f254SJeff Roberson }
4663ac2ac2eSMateusz Guzik atomic_thread_fence_rel();
4670c66dc67SJeff Roberson lock_prof_enable = enabled;
468eea4f254SJeff Roberson
4694e657159SMatthew D Fleming error = sbuf_finish(sb);
4704e657159SMatthew D Fleming /* Output a trailing NUL. */
4714e657159SMatthew D Fleming if (error == 0)
4724e657159SMatthew D Fleming error = SYSCTL_OUT(req, "", 1);
473eea4f254SJeff Roberson sbuf_delete(sb);
474eea4f254SJeff Roberson return (error);
475eea4f254SJeff Roberson }
476eea4f254SJeff Roberson
477eea4f254SJeff Roberson static int
enable_lock_prof(SYSCTL_HANDLER_ARGS)478eea4f254SJeff Roberson enable_lock_prof(SYSCTL_HANDLER_ARGS)
479eea4f254SJeff Roberson {
480eea4f254SJeff Roberson int error, v;
481eea4f254SJeff Roberson
482eea4f254SJeff Roberson v = lock_prof_enable;
483eea4f254SJeff Roberson error = sysctl_handle_int(oidp, &v, v, req);
484eea4f254SJeff Roberson if (error)
485eea4f254SJeff Roberson return (error);
486eea4f254SJeff Roberson if (req->newptr == NULL)
487eea4f254SJeff Roberson return (error);
488eea4f254SJeff Roberson if (v == lock_prof_enable)
489eea4f254SJeff Roberson return (0);
490eea4f254SJeff Roberson if (v == 1)
491eea4f254SJeff Roberson lock_prof_reset();
492eea4f254SJeff Roberson lock_prof_enable = !!v;
493eea4f254SJeff Roberson
494eea4f254SJeff Roberson return (0);
495eea4f254SJeff Roberson }
496eea4f254SJeff Roberson
497eea4f254SJeff Roberson static int
reset_lock_prof_stats(SYSCTL_HANDLER_ARGS)498eea4f254SJeff Roberson reset_lock_prof_stats(SYSCTL_HANDLER_ARGS)
499eea4f254SJeff Roberson {
500eea4f254SJeff Roberson int error, v;
501eea4f254SJeff Roberson
502eea4f254SJeff Roberson v = 0;
503eea4f254SJeff Roberson error = sysctl_handle_int(oidp, &v, 0, req);
504eea4f254SJeff Roberson if (error)
505eea4f254SJeff Roberson return (error);
506eea4f254SJeff Roberson if (req->newptr == NULL)
507eea4f254SJeff Roberson return (error);
508eea4f254SJeff Roberson if (v == 0)
509eea4f254SJeff Roberson return (0);
510eea4f254SJeff Roberson lock_prof_reset();
511eea4f254SJeff Roberson
512eea4f254SJeff Roberson return (0);
513eea4f254SJeff Roberson }
514eea4f254SJeff Roberson
515eea4f254SJeff Roberson static struct lock_prof *
lock_profile_lookup(struct lock_object * lo,int spin,const char * file,int line)516eea4f254SJeff Roberson lock_profile_lookup(struct lock_object *lo, int spin, const char *file,
517eea4f254SJeff Roberson int line)
518eea4f254SJeff Roberson {
519eea4f254SJeff Roberson const char *unknown = "(unknown)";
520eea4f254SJeff Roberson struct lock_prof_type *type;
521eea4f254SJeff Roberson struct lock_prof *lp;
522eea4f254SJeff Roberson struct lphead *head;
523eea4f254SJeff Roberson const char *p;
524eea4f254SJeff Roberson u_int hash;
525eea4f254SJeff Roberson
526eea4f254SJeff Roberson p = file;
527eea4f254SJeff Roberson if (p == NULL || *p == '\0')
528eea4f254SJeff Roberson p = unknown;
529eea4f254SJeff Roberson hash = (uintptr_t)lo->lo_name * 31 + (uintptr_t)p * 31 + line;
530eea4f254SJeff Roberson hash &= LPROF_HASH_MASK;
531d2be3ef0SMateusz Guzik type = &LP_CPU_SELF->lpc_types[spin];
532eea4f254SJeff Roberson head = &type->lpt_hash[hash];
533eea4f254SJeff Roberson SLIST_FOREACH(lp, head, link) {
534eea4f254SJeff Roberson if (lp->line == line && lp->file == p &&
535eea4f254SJeff Roberson lp->name == lo->lo_name)
536eea4f254SJeff Roberson return (lp);
537eea4f254SJeff Roberson }
538eea4f254SJeff Roberson lp = SLIST_FIRST(&type->lpt_lpalloc);
539eea4f254SJeff Roberson if (lp == NULL) {
540eea4f254SJeff Roberson lock_prof_rejected++;
541eea4f254SJeff Roberson return (lp);
542eea4f254SJeff Roberson }
543eea4f254SJeff Roberson SLIST_REMOVE_HEAD(&type->lpt_lpalloc, link);
544eea4f254SJeff Roberson lp->file = p;
545eea4f254SJeff Roberson lp->line = line;
5460c66dc67SJeff Roberson lp->class = LOCK_CLASS(lo);
547eea4f254SJeff Roberson lp->name = lo->lo_name;
548eea4f254SJeff Roberson SLIST_INSERT_HEAD(&type->lpt_hash[hash], lp, link);
549eea4f254SJeff Roberson return (lp);
550eea4f254SJeff Roberson }
551eea4f254SJeff Roberson
552eea4f254SJeff Roberson static struct lock_profile_object *
lock_profile_object_lookup(struct lock_object * lo,int spin,const char * file,int line)553eea4f254SJeff Roberson lock_profile_object_lookup(struct lock_object *lo, int spin, const char *file,
554eea4f254SJeff Roberson int line)
555eea4f254SJeff Roberson {
556eea4f254SJeff Roberson struct lock_profile_object *l;
557eea4f254SJeff Roberson struct lock_prof_type *type;
558eea4f254SJeff Roberson struct lpohead *head;
559eea4f254SJeff Roberson
560eea4f254SJeff Roberson head = &curthread->td_lprof[spin];
561eea4f254SJeff Roberson LIST_FOREACH(l, head, lpo_link)
562eea4f254SJeff Roberson if (l->lpo_obj == lo && l->lpo_file == file &&
563eea4f254SJeff Roberson l->lpo_line == line)
564eea4f254SJeff Roberson return (l);
565d2be3ef0SMateusz Guzik type = &LP_CPU_SELF->lpc_types[spin];
566eea4f254SJeff Roberson l = LIST_FIRST(&type->lpt_lpoalloc);
567eea4f254SJeff Roberson if (l == NULL) {
568eea4f254SJeff Roberson lock_prof_rejected++;
569eea4f254SJeff Roberson return (NULL);
570eea4f254SJeff Roberson }
571eea4f254SJeff Roberson LIST_REMOVE(l, lpo_link);
572eea4f254SJeff Roberson l->lpo_obj = lo;
573eea4f254SJeff Roberson l->lpo_file = file;
574eea4f254SJeff Roberson l->lpo_line = line;
575eea4f254SJeff Roberson l->lpo_cnt = 0;
576eea4f254SJeff Roberson LIST_INSERT_HEAD(head, l, lpo_link);
577eea4f254SJeff Roberson
578eea4f254SJeff Roberson return (l);
579eea4f254SJeff Roberson }
580eea4f254SJeff Roberson
581eea4f254SJeff Roberson void
lock_profile_obtain_lock_success(struct lock_object * lo,bool spin,int contested,uint64_t waittime,const char * file,int line)5826a467cc5SMateusz Guzik lock_profile_obtain_lock_success(struct lock_object *lo, bool spin,
5836a467cc5SMateusz Guzik int contested, uint64_t waittime, const char *file, int line)
584eea4f254SJeff Roberson {
585eea4f254SJeff Roberson struct lock_profile_object *l;
5866a467cc5SMateusz Guzik
5876a467cc5SMateusz Guzik #ifdef LOCK_PROFILING_DEBUG_SPIN
5886a467cc5SMateusz Guzik bool is_spin = (LOCK_CLASS(lo)->lc_flags & LC_SPINLOCK);
5896a467cc5SMateusz Guzik if ((spin && !is_spin) || (!spin && is_spin))
5906a467cc5SMateusz Guzik printf("%s: lock %s spin mismatch (arg %d, flag %d)\n", __func__,
5916a467cc5SMateusz Guzik lo->lo_name, spin, is_spin);
5926a467cc5SMateusz Guzik #endif
593eea4f254SJeff Roberson
594eea4f254SJeff Roberson /* don't reset the timer when/if recursing */
595eea4f254SJeff Roberson if (!lock_prof_enable || (lo->lo_flags & LO_NOPROFILE))
596eea4f254SJeff Roberson return;
597a0842e69SMateusz Guzik if (lock_contested_only && !contested)
598a0842e69SMateusz Guzik return;
599eea4f254SJeff Roberson if (spin && lock_prof_skipspin == 1)
600eea4f254SJeff Roberson return;
601e2ab16b1SMateusz Guzik
602e2ab16b1SMateusz Guzik if (SCHEDULER_STOPPED())
603e2ab16b1SMateusz Guzik return;
604e2ab16b1SMateusz Guzik
6052e6b8de4SJeff Roberson critical_enter();
6062e6b8de4SJeff Roberson /* Recheck enabled now that we're in a critical section. */
6072e6b8de4SJeff Roberson if (lock_prof_enable == 0)
6082e6b8de4SJeff Roberson goto out;
609eea4f254SJeff Roberson l = lock_profile_object_lookup(lo, spin, file, line);
610eea4f254SJeff Roberson if (l == NULL)
6112e6b8de4SJeff Roberson goto out;
612eea4f254SJeff Roberson l->lpo_cnt++;
613eea4f254SJeff Roberson if (++l->lpo_ref > 1)
6142e6b8de4SJeff Roberson goto out;
615eea4f254SJeff Roberson l->lpo_contest_locking = contested;
6167c0435b9SKip Macy l->lpo_acqtime = nanoseconds();
617aa077979SKip Macy if (waittime && (l->lpo_acqtime > waittime))
6187c0435b9SKip Macy l->lpo_waittime = l->lpo_acqtime - waittime;
619aa077979SKip Macy else
620aa077979SKip Macy l->lpo_waittime = 0;
6212e6b8de4SJeff Roberson out:
6223ac2ac2eSMateusz Guzik /*
6233ac2ac2eSMateusz Guzik * Paired with cpus_fence_seq_cst().
6243ac2ac2eSMateusz Guzik */
6253ac2ac2eSMateusz Guzik atomic_thread_fence_rel();
6262e6b8de4SJeff Roberson critical_exit();
6272e6b8de4SJeff Roberson }
6282e6b8de4SJeff Roberson
6292e6b8de4SJeff Roberson void
lock_profile_thread_exit(struct thread * td)6302e6b8de4SJeff Roberson lock_profile_thread_exit(struct thread *td)
6312e6b8de4SJeff Roberson {
6322e6b8de4SJeff Roberson #ifdef INVARIANTS
6332e6b8de4SJeff Roberson struct lock_profile_object *l;
6342e6b8de4SJeff Roberson
6352e6b8de4SJeff Roberson MPASS(curthread->td_critnest == 0);
6362e6b8de4SJeff Roberson #endif
6372e6b8de4SJeff Roberson /*
6382e6b8de4SJeff Roberson * If lock profiling was disabled we have to wait for reset to
6392e6b8de4SJeff Roberson * clear our pointers before we can exit safely.
6402e6b8de4SJeff Roberson */
6412e6b8de4SJeff Roberson lock_prof_reset_wait();
6422e6b8de4SJeff Roberson #ifdef INVARIANTS
6432e6b8de4SJeff Roberson LIST_FOREACH(l, &td->td_lprof[0], lpo_link)
6442e6b8de4SJeff Roberson printf("thread still holds lock acquired at %s:%d\n",
6452e6b8de4SJeff Roberson l->lpo_file, l->lpo_line);
6462e6b8de4SJeff Roberson LIST_FOREACH(l, &td->td_lprof[1], lpo_link)
6472e6b8de4SJeff Roberson printf("thread still holds lock acquired at %s:%d\n",
6482e6b8de4SJeff Roberson l->lpo_file, l->lpo_line);
6492e6b8de4SJeff Roberson #endif
6502e6b8de4SJeff Roberson MPASS(LIST_FIRST(&td->td_lprof[0]) == NULL);
6512e6b8de4SJeff Roberson MPASS(LIST_FIRST(&td->td_lprof[1]) == NULL);
6527c0435b9SKip Macy }
6537c0435b9SKip Macy
654eea4f254SJeff Roberson void
lock_profile_release_lock(struct lock_object * lo,bool spin)6556a467cc5SMateusz Guzik lock_profile_release_lock(struct lock_object *lo, bool spin)
6567c0435b9SKip Macy {
657eea4f254SJeff Roberson struct lock_profile_object *l;
658eea4f254SJeff Roberson struct lock_prof_type *type;
659eea4f254SJeff Roberson struct lock_prof *lp;
66060ae52f7SEd Schouten uint64_t curtime, holdtime;
661eea4f254SJeff Roberson struct lpohead *head;
6626a467cc5SMateusz Guzik
6636a467cc5SMateusz Guzik #ifdef LOCK_PROFILING_DEBUG_SPIN
6646a467cc5SMateusz Guzik bool is_spin = (LOCK_CLASS(lo)->lc_flags & LC_SPINLOCK);
6656a467cc5SMateusz Guzik if ((spin && !is_spin) || (!spin && is_spin))
6666a467cc5SMateusz Guzik printf("%s: lock %s spin mismatch (arg %d, flag %d)\n", __func__,
6676a467cc5SMateusz Guzik lo->lo_name, spin, is_spin);
6686a467cc5SMateusz Guzik #endif
6697c0435b9SKip Macy
6702e6b8de4SJeff Roberson if (lo->lo_flags & LO_NOPROFILE)
6717c0435b9SKip Macy return;
672eea4f254SJeff Roberson head = &curthread->td_lprof[spin];
6732e6b8de4SJeff Roberson if (LIST_FIRST(head) == NULL)
6742e6b8de4SJeff Roberson return;
675e2ab16b1SMateusz Guzik if (SCHEDULER_STOPPED())
676e2ab16b1SMateusz Guzik return;
677eea4f254SJeff Roberson critical_enter();
6782e6b8de4SJeff Roberson /* Recheck enabled now that we're in a critical section. */
6792e6b8de4SJeff Roberson if (lock_prof_enable == 0 && lock_prof_resetting == 1)
6802e6b8de4SJeff Roberson goto out;
6812e6b8de4SJeff Roberson /*
6822e6b8de4SJeff Roberson * If lock profiling is not enabled we still want to remove the
6832e6b8de4SJeff Roberson * lpo from our queue.
6842e6b8de4SJeff Roberson */
685eea4f254SJeff Roberson LIST_FOREACH(l, head, lpo_link)
686eea4f254SJeff Roberson if (l->lpo_obj == lo)
6877c0435b9SKip Macy break;
688eea4f254SJeff Roberson if (l == NULL)
689eea4f254SJeff Roberson goto out;
690eea4f254SJeff Roberson if (--l->lpo_ref > 0)
691eea4f254SJeff Roberson goto out;
692eea4f254SJeff Roberson lp = lock_profile_lookup(lo, spin, l->lpo_file, l->lpo_line);
693eea4f254SJeff Roberson if (lp == NULL)
694eea4f254SJeff Roberson goto release;
695e7154e7eSAndriy Gapon curtime = nanoseconds();
696e7154e7eSAndriy Gapon if (curtime < l->lpo_acqtime)
697eea4f254SJeff Roberson goto release;
698e7154e7eSAndriy Gapon holdtime = curtime - l->lpo_acqtime;
699e7154e7eSAndriy Gapon
7007c0435b9SKip Macy /*
70183b72e3eSKip Macy * Record if the lock has been held longer now than ever
7027c0435b9SKip Macy * before.
7037c0435b9SKip Macy */
704eea4f254SJeff Roberson if (holdtime > lp->cnt_max)
705eea4f254SJeff Roberson lp->cnt_max = holdtime;
706947265b6SKip Macy if (l->lpo_waittime > lp->cnt_wait_max)
707947265b6SKip Macy lp->cnt_wait_max = l->lpo_waittime;
708eea4f254SJeff Roberson lp->cnt_tot += holdtime;
709eea4f254SJeff Roberson lp->cnt_wait += l->lpo_waittime;
710eea4f254SJeff Roberson lp->cnt_contest_locking += l->lpo_contest_locking;
711eea4f254SJeff Roberson lp->cnt_cur += l->lpo_cnt;
712eea4f254SJeff Roberson release:
713eea4f254SJeff Roberson LIST_REMOVE(l, lpo_link);
714d2be3ef0SMateusz Guzik type = &LP_CPU_SELF->lpc_types[spin];
715eea4f254SJeff Roberson LIST_INSERT_HEAD(&type->lpt_lpoalloc, l, lpo_link);
716eea4f254SJeff Roberson out:
7173ac2ac2eSMateusz Guzik /*
7183ac2ac2eSMateusz Guzik * Paired with cpus_fence_seq_cst().
7193ac2ac2eSMateusz Guzik */
7203ac2ac2eSMateusz Guzik atomic_thread_fence_rel();
721eea4f254SJeff Roberson critical_exit();
722eea4f254SJeff Roberson }
7237c0435b9SKip Macy
7247029da5cSPawel Biernacki static SYSCTL_NODE(_debug_lock, OID_AUTO, prof,
7257029da5cSPawel Biernacki CTLFLAG_RD | CTLFLAG_MPSAFE, NULL,
7266472ac3dSEd Schouten "lock profiling");
727eea4f254SJeff Roberson SYSCTL_INT(_debug_lock_prof, OID_AUTO, skipspin, CTLFLAG_RW,
728eea4f254SJeff Roberson &lock_prof_skipspin, 0, "Skip profiling on spinlocks.");
729eea4f254SJeff Roberson SYSCTL_INT(_debug_lock_prof, OID_AUTO, rejected, CTLFLAG_RD,
730eea4f254SJeff Roberson &lock_prof_rejected, 0, "Number of rejected profiling records");
731a0842e69SMateusz Guzik SYSCTL_INT(_debug_lock_prof, OID_AUTO, contested_only, CTLFLAG_RW,
732a0842e69SMateusz Guzik &lock_contested_only, 0, "Only profile contested acquires");
7337029da5cSPawel Biernacki SYSCTL_PROC(_debug_lock_prof, OID_AUTO, stats,
7347029da5cSPawel Biernacki CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, 0,
7357029da5cSPawel Biernacki dump_lock_prof_stats, "A",
7367029da5cSPawel Biernacki "Lock profiling statistics");
7377029da5cSPawel Biernacki SYSCTL_PROC(_debug_lock_prof, OID_AUTO, reset,
7387029da5cSPawel Biernacki CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_NEEDGIANT, NULL, 0,
7397029da5cSPawel Biernacki reset_lock_prof_stats, "I",
7407029da5cSPawel Biernacki "Reset lock profiling statistics");
7417029da5cSPawel Biernacki SYSCTL_PROC(_debug_lock_prof, OID_AUTO, enable,
7427029da5cSPawel Biernacki CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE, NULL, 0,
7437029da5cSPawel Biernacki enable_lock_prof, "I",
7447029da5cSPawel Biernacki "Enable lock profiling");
745eea4f254SJeff Roberson
7467c0435b9SKip Macy #endif
747