xref: /freebsd/sys/kern/kern_lock.c (revision 6e0da4f753ed6b5d26395001a6194b4fdea70177)
1 /*-
2  * Copyright (c) 1995
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * Copyright (C) 1997
6  *	John S. Dyson.  All rights reserved.
7  *
8  * This code contains ideas from software contributed to Berkeley by
9  * Avadis Tevanian, Jr., Michael Wayne Young, and the Mach Operating
10  * System project at Carnegie-Mellon University.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. All advertising materials mentioning features or use of this software
21  *    must display the following acknowledgement:
22  *	This product includes software developed by the University of
23  *	California, Berkeley and its contributors.
24  * 4. Neither the name of the University nor the names of its contributors
25  *    may be used to endorse or promote products derived from this software
26  *    without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38  * SUCH DAMAGE.
39  *
40  *	@(#)kern_lock.c	8.18 (Berkeley) 5/21/95
41  */
42 
43 #include <sys/cdefs.h>
44 __FBSDID("$FreeBSD$");
45 
46 #include <sys/param.h>
47 #include <sys/kernel.h>
48 #include <sys/ktr.h>
49 #include <sys/lock.h>
50 #include <sys/lockmgr.h>
51 #include <sys/mutex.h>
52 #include <sys/proc.h>
53 #include <sys/systm.h>
54 
55 /*
56  * Locking primitives implementation.
57  * Locks provide shared/exclusive sychronization.
58  */
59 
60 #define LOCK_WAIT_TIME 100
61 #define LOCK_SAMPLE_WAIT 7
62 
63 #if defined(DIAGNOSTIC)
64 #define LOCK_INLINE
65 #else
66 #define LOCK_INLINE __inline
67 #endif
68 
69 #define LK_ALL (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE | \
70 	LK_SHARE_NONZERO | LK_WAIT_NONZERO)
71 
72 /*
73  * Mutex array variables.  Rather than each lockmgr lock having its own mutex,
74  * share a fixed (at boot time) number of mutexes across all lockmgr locks in
75  * order to keep sizeof(struct lock) down.
76  */
77 static struct mtx lock_mtx;
78 
79 static int acquire(struct lock **lkpp, int extflags, int wanted);
80 static int apause(struct lock *lkp, int flags);
81 static int acquiredrain(struct lock *lkp, int extflags) ;
82 
83 static void
84 lockmgr_init(void *dummy __unused)
85 {
86 	mtx_init(&lock_mtx, "lockmgr", NULL, MTX_DEF);
87 }
88 SYSINIT(lmgrinit, SI_SUB_LOCKMGR, SI_ORDER_FIRST, lockmgr_init, NULL)
89 
90 static LOCK_INLINE void
91 sharelock(struct lock *lkp, int incr) {
92 	lkp->lk_flags |= LK_SHARE_NONZERO;
93 	lkp->lk_sharecount += incr;
94 }
95 
96 static LOCK_INLINE void
97 shareunlock(struct lock *lkp, int decr) {
98 
99 	KASSERT(lkp->lk_sharecount >= decr, ("shareunlock: count < decr"));
100 
101 	if (lkp->lk_sharecount == decr) {
102 		lkp->lk_flags &= ~LK_SHARE_NONZERO;
103 		if (lkp->lk_flags & (LK_WANT_UPGRADE | LK_WANT_EXCL)) {
104 			wakeup(lkp);
105 		}
106 		lkp->lk_sharecount = 0;
107 	} else {
108 		lkp->lk_sharecount -= decr;
109 	}
110 }
111 
112 /*
113  * This is the waitloop optimization.
114  */
115 static int
116 apause(struct lock *lkp, int flags)
117 {
118 #ifdef SMP
119 	int i, lock_wait;
120 #endif
121 
122 	if ((lkp->lk_flags & flags) == 0)
123 		return 0;
124 #ifdef SMP
125 	for (lock_wait = LOCK_WAIT_TIME; lock_wait > 0; lock_wait--) {
126 		mtx_unlock(lkp->lk_interlock);
127 		for (i = LOCK_SAMPLE_WAIT; i > 0; i--)
128 			if ((lkp->lk_flags & flags) == 0)
129 				break;
130 		mtx_lock(lkp->lk_interlock);
131 		if ((lkp->lk_flags & flags) == 0)
132 			return 0;
133 	}
134 #endif
135 	return 1;
136 }
137 
138 static int
139 acquire(struct lock **lkpp, int extflags, int wanted) {
140 	struct lock *lkp = *lkpp;
141 	int s, error;
142 
143 	CTR3(KTR_LOCK,
144 	    "acquire(): lkp == %p, extflags == 0x%x, wanted == 0x%x",
145 	    lkp, extflags, wanted);
146 
147 	if ((extflags & LK_NOWAIT) && (lkp->lk_flags & wanted)) {
148 		return EBUSY;
149 	}
150 
151 	if (((lkp->lk_flags | extflags) & LK_NOPAUSE) == 0) {
152 		error = apause(lkp, wanted);
153 		if (error == 0)
154 			return 0;
155 	}
156 
157 	s = splhigh();
158 	while ((lkp->lk_flags & wanted) != 0) {
159 		lkp->lk_flags |= LK_WAIT_NONZERO;
160 		lkp->lk_waitcount++;
161 		error = msleep(lkp, lkp->lk_interlock, lkp->lk_prio,
162 		    lkp->lk_wmesg,
163 		    ((extflags & LK_TIMELOCK) ? lkp->lk_timo : 0));
164 		if (lkp->lk_waitcount == 1) {
165 			lkp->lk_flags &= ~LK_WAIT_NONZERO;
166 			lkp->lk_waitcount = 0;
167 		} else {
168 			lkp->lk_waitcount--;
169 		}
170 		if (error) {
171 			splx(s);
172 			return error;
173 		}
174 		if (extflags & LK_SLEEPFAIL) {
175 			splx(s);
176 			return ENOLCK;
177 		}
178 		if (lkp->lk_newlock != NULL) {
179 			mtx_lock(lkp->lk_newlock->lk_interlock);
180 			mtx_unlock(lkp->lk_interlock);
181 			if (lkp->lk_waitcount == 0)
182 				wakeup((void *)(&lkp->lk_newlock));
183 			*lkpp = lkp = lkp->lk_newlock;
184 		}
185 	}
186 	splx(s);
187 	return 0;
188 }
189 
190 /*
191  * Set, change, or release a lock.
192  *
193  * Shared requests increment the shared count. Exclusive requests set the
194  * LK_WANT_EXCL flag (preventing further shared locks), and wait for already
195  * accepted shared locks and shared-to-exclusive upgrades to go away.
196  */
197 int
198 #ifndef	DEBUG_LOCKS
199 lockmgr(lkp, flags, interlkp, td)
200 #else
201 debuglockmgr(lkp, flags, interlkp, td, name, file, line)
202 #endif
203 	struct lock *lkp;
204 	u_int flags;
205 	struct mtx *interlkp;
206 	struct thread *td;
207 #ifdef	DEBUG_LOCKS
208 	const char *name;	/* Name of lock function */
209 	const char *file;	/* Name of file call is from */
210 	int line;		/* Line number in file */
211 #endif
212 {
213 	int error;
214 	struct thread *thr;
215 	int extflags, lockflags;
216 
217 	CTR5(KTR_LOCK,
218 	    "lockmgr(): lkp == %p (lk_wmesg == \"%s\"), flags == 0x%x, "
219 	    "interlkp == %p, td == %p", lkp, lkp->lk_wmesg, flags, interlkp, td);
220 
221 	error = 0;
222 	if (td == NULL)
223 		thr = LK_KERNPROC;
224 	else
225 		thr = td;
226 
227 	if ((flags & LK_INTERNAL) == 0)
228 		mtx_lock(lkp->lk_interlock);
229 	if (flags & LK_INTERLOCK) {
230 		mtx_assert(interlkp, MA_OWNED | MA_NOTRECURSED);
231 		mtx_unlock(interlkp);
232 	}
233 
234 	if ((flags & (LK_NOWAIT|LK_RELEASE)) == 0)
235 		WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK,
236 		    &lkp->lk_interlock->mtx_object,
237 		    "Acquiring lockmgr lock \"%s\"", lkp->lk_wmesg);
238 
239 	if (panicstr != NULL) {
240 		mtx_unlock(lkp->lk_interlock);
241 		return (0);
242 	}
243 
244 	extflags = (flags | lkp->lk_flags) & LK_EXTFLG_MASK;
245 
246 	switch (flags & LK_TYPE_MASK) {
247 
248 	case LK_SHARED:
249 		/*
250 		 * If we are not the exclusive lock holder, we have to block
251 		 * while there is an exclusive lock holder or while an
252 		 * exclusive lock request or upgrade request is in progress.
253 		 *
254 		 * However, if TDP_DEADLKTREAT is set, we override exclusive
255 		 * lock requests or upgrade requests ( but not the exclusive
256 		 * lock itself ).
257 		 */
258 		if (lkp->lk_lockholder != thr) {
259 			lockflags = LK_HAVE_EXCL;
260 			if (td != NULL && !(td->td_pflags & TDP_DEADLKTREAT))
261 				lockflags |= LK_WANT_EXCL | LK_WANT_UPGRADE;
262 			error = acquire(&lkp, extflags, lockflags);
263 			if (error)
264 				break;
265 			sharelock(lkp, 1);
266 #if defined(DEBUG_LOCKS)
267 			lkp->lk_slockholder = thr;
268 			lkp->lk_sfilename = file;
269 			lkp->lk_slineno = line;
270 			lkp->lk_slockername = name;
271 #endif
272 			break;
273 		}
274 		/*
275 		 * We hold an exclusive lock, so downgrade it to shared.
276 		 * An alternative would be to fail with EDEADLK.
277 		 */
278 		sharelock(lkp, 1);
279 		/* FALLTHROUGH downgrade */
280 
281 	case LK_DOWNGRADE:
282 		KASSERT(lkp->lk_lockholder == thr && lkp->lk_exclusivecount != 0,
283 			("lockmgr: not holding exclusive lock "
284 			"(owner thread (%p) != thread (%p), exlcnt (%d) != 0",
285 			lkp->lk_lockholder, thr, lkp->lk_exclusivecount));
286 		sharelock(lkp, lkp->lk_exclusivecount);
287 		lkp->lk_exclusivecount = 0;
288 		lkp->lk_flags &= ~LK_HAVE_EXCL;
289 		lkp->lk_lockholder = LK_NOPROC;
290 		if (lkp->lk_waitcount)
291 			wakeup((void *)lkp);
292 		break;
293 
294 	case LK_EXCLUPGRADE:
295 		/*
296 		 * If another process is ahead of us to get an upgrade,
297 		 * then we want to fail rather than have an intervening
298 		 * exclusive access.
299 		 */
300 		if (lkp->lk_flags & LK_WANT_UPGRADE) {
301 			shareunlock(lkp, 1);
302 			error = EBUSY;
303 			break;
304 		}
305 		/* FALLTHROUGH normal upgrade */
306 
307 	case LK_UPGRADE:
308 		/*
309 		 * Upgrade a shared lock to an exclusive one. If another
310 		 * shared lock has already requested an upgrade to an
311 		 * exclusive lock, our shared lock is released and an
312 		 * exclusive lock is requested (which will be granted
313 		 * after the upgrade). If we return an error, the file
314 		 * will always be unlocked.
315 		 */
316 		if ((lkp->lk_lockholder == thr) || (lkp->lk_sharecount <= 0))
317 			panic("lockmgr: upgrade exclusive lock");
318 		shareunlock(lkp, 1);
319 		/*
320 		 * If we are just polling, check to see if we will block.
321 		 */
322 		if ((extflags & LK_NOWAIT) &&
323 		    ((lkp->lk_flags & LK_WANT_UPGRADE) ||
324 		     lkp->lk_sharecount > 1)) {
325 			error = EBUSY;
326 			break;
327 		}
328 		if ((lkp->lk_flags & LK_WANT_UPGRADE) == 0) {
329 			/*
330 			 * We are first shared lock to request an upgrade, so
331 			 * request upgrade and wait for the shared count to
332 			 * drop to zero, then take exclusive lock.
333 			 */
334 			lkp->lk_flags |= LK_WANT_UPGRADE;
335 			error = acquire(&lkp, extflags, LK_SHARE_NONZERO);
336 			lkp->lk_flags &= ~LK_WANT_UPGRADE;
337 
338 			if (error) {
339 			         if ((lkp->lk_flags & ( LK_WANT_EXCL | LK_WAIT_NONZERO)) == (LK_WANT_EXCL | LK_WAIT_NONZERO))
340 			                   wakeup((void *)lkp);
341 			         break;
342 			}
343 			if (lkp->lk_exclusivecount != 0)
344 				panic("lockmgr: non-zero exclusive count");
345 			lkp->lk_flags |= LK_HAVE_EXCL;
346 			lkp->lk_lockholder = thr;
347 			lkp->lk_exclusivecount = 1;
348 #if defined(DEBUG_LOCKS)
349 			lkp->lk_filename = file;
350 			lkp->lk_lineno = line;
351 			lkp->lk_lockername = name;
352 #endif
353 			break;
354 		}
355 		/*
356 		 * Someone else has requested upgrade. Release our shared
357 		 * lock, awaken upgrade requestor if we are the last shared
358 		 * lock, then request an exclusive lock.
359 		 */
360 		if ( (lkp->lk_flags & (LK_SHARE_NONZERO|LK_WAIT_NONZERO)) ==
361 			LK_WAIT_NONZERO)
362 			wakeup((void *)lkp);
363 		/* FALLTHROUGH exclusive request */
364 
365 	case LK_EXCLUSIVE:
366 		if (lkp->lk_lockholder == thr && thr != LK_KERNPROC) {
367 			/*
368 			 *	Recursive lock.
369 			 */
370 			if ((extflags & (LK_NOWAIT | LK_CANRECURSE)) == 0)
371 				panic("lockmgr: locking against myself");
372 			if ((extflags & LK_CANRECURSE) != 0) {
373 				lkp->lk_exclusivecount++;
374 				break;
375 			}
376 		}
377 		/*
378 		 * If we are just polling, check to see if we will sleep.
379 		 */
380 		if ((extflags & LK_NOWAIT) &&
381 		    (lkp->lk_flags & (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE | LK_SHARE_NONZERO))) {
382 			error = EBUSY;
383 			break;
384 		}
385 		/*
386 		 * Try to acquire the want_exclusive flag.
387 		 */
388 		error = acquire(&lkp, extflags, (LK_HAVE_EXCL | LK_WANT_EXCL));
389 		if (error)
390 			break;
391 		lkp->lk_flags |= LK_WANT_EXCL;
392 		/*
393 		 * Wait for shared locks and upgrades to finish.
394 		 */
395 		error = acquire(&lkp, extflags, LK_HAVE_EXCL | LK_WANT_UPGRADE | LK_SHARE_NONZERO);
396 		lkp->lk_flags &= ~LK_WANT_EXCL;
397 		if (error) {
398 			if (lkp->lk_flags & LK_WAIT_NONZERO)
399 			         wakeup((void *)lkp);
400 			break;
401 		}
402 		lkp->lk_flags |= LK_HAVE_EXCL;
403 		lkp->lk_lockholder = thr;
404 		if (lkp->lk_exclusivecount != 0)
405 			panic("lockmgr: non-zero exclusive count");
406 		lkp->lk_exclusivecount = 1;
407 #if defined(DEBUG_LOCKS)
408 			lkp->lk_filename = file;
409 			lkp->lk_lineno = line;
410 			lkp->lk_lockername = name;
411 #endif
412 		break;
413 
414 	case LK_RELEASE:
415 		if (lkp->lk_exclusivecount != 0) {
416 			if (lkp->lk_lockholder != thr &&
417 			    lkp->lk_lockholder != LK_KERNPROC) {
418 				panic("lockmgr: thread %p, not %s %p unlocking",
419 				    thr, "exclusive lock holder",
420 				    lkp->lk_lockholder);
421 			}
422 			if (lkp->lk_exclusivecount == 1) {
423 				lkp->lk_flags &= ~LK_HAVE_EXCL;
424 				lkp->lk_lockholder = LK_NOPROC;
425 				lkp->lk_exclusivecount = 0;
426 			} else {
427 				lkp->lk_exclusivecount--;
428 			}
429 		} else if (lkp->lk_flags & LK_SHARE_NONZERO)
430 			shareunlock(lkp, 1);
431 		if (lkp->lk_flags & LK_WAIT_NONZERO)
432 			wakeup((void *)lkp);
433 		break;
434 
435 	case LK_DRAIN:
436 		/*
437 		 * Check that we do not already hold the lock, as it can
438 		 * never drain if we do. Unfortunately, we have no way to
439 		 * check for holding a shared lock, but at least we can
440 		 * check for an exclusive one.
441 		 */
442 		if (lkp->lk_lockholder == thr)
443 			panic("lockmgr: draining against myself");
444 
445 		error = acquiredrain(lkp, extflags);
446 		if (error)
447 			break;
448 		lkp->lk_flags |= LK_DRAINING | LK_HAVE_EXCL;
449 		lkp->lk_lockholder = thr;
450 		lkp->lk_exclusivecount = 1;
451 #if defined(DEBUG_LOCKS)
452 			lkp->lk_filename = file;
453 			lkp->lk_lineno = line;
454 			lkp->lk_lockername = name;
455 #endif
456 		break;
457 
458 	default:
459 		mtx_unlock(lkp->lk_interlock);
460 		panic("lockmgr: unknown locktype request %d",
461 		    flags & LK_TYPE_MASK);
462 		/* NOTREACHED */
463 	}
464 	if ((lkp->lk_flags & LK_WAITDRAIN) &&
465 	    (lkp->lk_flags & (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE |
466 		LK_SHARE_NONZERO | LK_WAIT_NONZERO)) == 0) {
467 		lkp->lk_flags &= ~LK_WAITDRAIN;
468 		wakeup((void *)&lkp->lk_flags);
469 	}
470 	mtx_unlock(lkp->lk_interlock);
471 	return (error);
472 }
473 
474 static int
475 acquiredrain(struct lock *lkp, int extflags) {
476 	int error;
477 
478 	if ((extflags & LK_NOWAIT) && (lkp->lk_flags & LK_ALL)) {
479 		return EBUSY;
480 	}
481 
482 	error = apause(lkp, LK_ALL);
483 	if (error == 0)
484 		return 0;
485 
486 	while (lkp->lk_flags & LK_ALL) {
487 		lkp->lk_flags |= LK_WAITDRAIN;
488 		error = msleep(&lkp->lk_flags, lkp->lk_interlock, lkp->lk_prio,
489 			lkp->lk_wmesg,
490 			((extflags & LK_TIMELOCK) ? lkp->lk_timo : 0));
491 		if (error)
492 			return error;
493 		if (extflags & LK_SLEEPFAIL) {
494 			return ENOLCK;
495 		}
496 	}
497 	return 0;
498 }
499 
500 /*
501  * Transfer any waiting processes from one lock to another.
502  */
503 void
504 transferlockers(from, to)
505 	struct lock *from;
506 	struct lock *to;
507 {
508 
509 	KASSERT(from != to, ("lock transfer to self"));
510 	KASSERT((from->lk_flags&LK_WAITDRAIN) == 0, ("transfer draining lock"));
511 	if (from->lk_waitcount == 0)
512 		return;
513 	from->lk_newlock = to;
514 	wakeup((void *)from);
515 	msleep(&from->lk_newlock, NULL, from->lk_prio, "lkxfer", 0);
516 	from->lk_newlock = NULL;
517 	from->lk_flags &= ~(LK_WANT_EXCL | LK_WANT_UPGRADE);
518 	KASSERT(from->lk_waitcount == 0, ("active lock"));
519 }
520 
521 
522 /*
523  * Initialize a lock; required before use.
524  */
525 void
526 lockinit(lkp, prio, wmesg, timo, flags)
527 	struct lock *lkp;
528 	int prio;
529 	const char *wmesg;
530 	int timo;
531 	int flags;
532 {
533 	CTR5(KTR_LOCK, "lockinit(): lkp == %p, prio == %d, wmesg == \"%s\", "
534 	    "timo == %d, flags = 0x%x\n", lkp, prio, wmesg, timo, flags);
535 
536 	lkp->lk_interlock = mtx_pool_alloc(mtxpool_lockbuilder);
537 	lkp->lk_flags = (flags & LK_EXTFLG_MASK);
538 	lkp->lk_sharecount = 0;
539 	lkp->lk_waitcount = 0;
540 	lkp->lk_exclusivecount = 0;
541 	lkp->lk_prio = prio;
542 	lkp->lk_wmesg = wmesg;
543 	lkp->lk_timo = timo;
544 	lkp->lk_lockholder = LK_NOPROC;
545 	lkp->lk_newlock = NULL;
546 #ifdef DEBUG_LOCKS
547 	lkp->lk_filename = "none";
548 	lkp->lk_lockername = "never exclusive locked";
549 	lkp->lk_lineno = 0;
550 	lkp->lk_slockholder = LK_NOPROC;
551 	lkp->lk_sfilename = "none";
552 	lkp->lk_slockername = "never share locked";
553 	lkp->lk_slineno = 0;
554 #endif
555 }
556 
557 /*
558  * Destroy a lock.
559  */
560 void
561 lockdestroy(lkp)
562 	struct lock *lkp;
563 {
564 	CTR2(KTR_LOCK, "lockdestroy(): lkp == %p (lk_wmesg == \"%s\")",
565 	    lkp, lkp->lk_wmesg);
566 }
567 
568 /*
569  * Determine the status of a lock.
570  */
571 int
572 lockstatus(lkp, td)
573 	struct lock *lkp;
574 	struct thread *td;
575 {
576 	int lock_type = 0;
577 
578 	mtx_lock(lkp->lk_interlock);
579 	if (lkp->lk_exclusivecount != 0) {
580 		if (td == NULL || lkp->lk_lockholder == td)
581 			lock_type = LK_EXCLUSIVE;
582 		else
583 			lock_type = LK_EXCLOTHER;
584 	} else if (lkp->lk_sharecount != 0)
585 		lock_type = LK_SHARED;
586 	mtx_unlock(lkp->lk_interlock);
587 	return (lock_type);
588 }
589 
590 /*
591  * Determine the number of holders of a lock.
592  */
593 int
594 lockcount(lkp)
595 	struct lock *lkp;
596 {
597 	int count;
598 
599 	mtx_lock(lkp->lk_interlock);
600 	count = lkp->lk_exclusivecount + lkp->lk_sharecount;
601 	mtx_unlock(lkp->lk_interlock);
602 	return (count);
603 }
604 
605 /*
606  * Print out information about state of a lock. Used by VOP_PRINT
607  * routines to display status about contained locks.
608  */
609 void
610 lockmgr_printinfo(lkp)
611 	struct lock *lkp;
612 {
613 
614 	if (lkp->lk_sharecount)
615 		printf(" lock type %s: SHARED (count %d)", lkp->lk_wmesg,
616 		    lkp->lk_sharecount);
617 	else if (lkp->lk_flags & LK_HAVE_EXCL)
618 		printf(" lock type %s: EXCL (count %d) by thread %p (pid %d)",
619 		    lkp->lk_wmesg, lkp->lk_exclusivecount,
620 		    lkp->lk_lockholder, lkp->lk_lockholder->td_proc->p_pid);
621 	if (lkp->lk_waitcount > 0)
622 		printf(" with %d pending", lkp->lk_waitcount);
623 }
624