Home | History | Annotate | Line # | Download | only in kern
kern_lock.c revision 1.99.2.1
      1  1.99.2.1        ad /*	$NetBSD: kern_lock.c,v 1.99.2.1 2006/09/11 00:04:40 ad Exp $	*/
      2      1.19   thorpej 
      3      1.19   thorpej /*-
      4      1.28   thorpej  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
      5      1.19   thorpej  * All rights reserved.
      6      1.19   thorpej  *
      7      1.19   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8      1.19   thorpej  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9      1.19   thorpej  * NASA Ames Research Center.
     10      1.19   thorpej  *
     11      1.19   thorpej  * This code is derived from software contributed to The NetBSD Foundation
     12      1.19   thorpej  * by Ross Harvey.
     13      1.19   thorpej  *
     14      1.19   thorpej  * Redistribution and use in source and binary forms, with or without
     15      1.19   thorpej  * modification, are permitted provided that the following conditions
     16      1.19   thorpej  * are met:
     17      1.19   thorpej  * 1. Redistributions of source code must retain the above copyright
     18      1.19   thorpej  *    notice, this list of conditions and the following disclaimer.
     19      1.19   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     20      1.19   thorpej  *    notice, this list of conditions and the following disclaimer in the
     21      1.19   thorpej  *    documentation and/or other materials provided with the distribution.
     22      1.19   thorpej  * 3. All advertising materials mentioning features or use of this software
     23      1.19   thorpej  *    must display the following acknowledgement:
     24      1.19   thorpej  *	This product includes software developed by the NetBSD
     25      1.19   thorpej  *	Foundation, Inc. and its contributors.
     26      1.19   thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     27      1.19   thorpej  *    contributors may be used to endorse or promote products derived
     28      1.19   thorpej  *    from this software without specific prior written permission.
     29      1.19   thorpej  *
     30      1.19   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     31      1.19   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     32      1.19   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     33      1.19   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     34      1.19   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     35      1.19   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     36      1.19   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     37      1.19   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     38      1.19   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     39      1.19   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     40      1.19   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     41      1.19   thorpej  */
     42       1.2      fvdl 
     43      1.86     perry /*
     44       1.1      fvdl  * Copyright (c) 1995
     45       1.1      fvdl  *	The Regents of the University of California.  All rights reserved.
     46       1.1      fvdl  *
     47       1.1      fvdl  * This code contains ideas from software contributed to Berkeley by
     48       1.1      fvdl  * Avadis Tevanian, Jr., Michael Wayne Young, and the Mach Operating
     49       1.1      fvdl  * System project at Carnegie-Mellon University.
     50       1.1      fvdl  *
     51       1.1      fvdl  * Redistribution and use in source and binary forms, with or without
     52       1.1      fvdl  * modification, are permitted provided that the following conditions
     53       1.1      fvdl  * are met:
     54       1.1      fvdl  * 1. Redistributions of source code must retain the above copyright
     55       1.1      fvdl  *    notice, this list of conditions and the following disclaimer.
     56       1.1      fvdl  * 2. Redistributions in binary form must reproduce the above copyright
     57       1.1      fvdl  *    notice, this list of conditions and the following disclaimer in the
     58       1.1      fvdl  *    documentation and/or other materials provided with the distribution.
     59      1.72       agc  * 3. Neither the name of the University nor the names of its contributors
     60       1.1      fvdl  *    may be used to endorse or promote products derived from this software
     61       1.1      fvdl  *    without specific prior written permission.
     62       1.1      fvdl  *
     63       1.1      fvdl  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     64       1.1      fvdl  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     65       1.1      fvdl  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     66       1.1      fvdl  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     67       1.1      fvdl  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     68       1.1      fvdl  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     69       1.1      fvdl  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     70       1.1      fvdl  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     71       1.1      fvdl  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     72       1.1      fvdl  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     73       1.1      fvdl  * SUCH DAMAGE.
     74       1.1      fvdl  *
     75       1.1      fvdl  *	@(#)kern_lock.c	8.18 (Berkeley) 5/21/95
     76       1.1      fvdl  */
     77      1.60     lukem 
     78      1.60     lukem #include <sys/cdefs.h>
     79  1.99.2.1        ad __KERNEL_RCSID(0, "$NetBSD: kern_lock.c,v 1.99.2.1 2006/09/11 00:04:40 ad Exp $");
     80       1.7   thorpej 
     81      1.21   thorpej #include "opt_multiprocessor.h"
     82       1.7   thorpej #include "opt_lockdebug.h"
     83      1.18       chs #include "opt_ddb.h"
     84       1.1      fvdl 
     85  1.99.2.1        ad #define	__MUTEX_PRIVATE
     86  1.99.2.1        ad 
     87       1.1      fvdl #include <sys/param.h>
     88       1.1      fvdl #include <sys/proc.h>
     89       1.1      fvdl #include <sys/lock.h>
     90       1.2      fvdl #include <sys/systm.h>
     91       1.1      fvdl #include <machine/cpu.h>
     92       1.1      fvdl 
     93      1.98        ad #include <dev/lockstat.h>
     94      1.98        ad 
     95      1.25   thorpej #if defined(LOCKDEBUG)
     96      1.25   thorpej #include <sys/syslog.h>
     97      1.25   thorpej /*
     98      1.25   thorpej  * note that stdarg.h and the ansi style va_start macro is used for both
     99      1.25   thorpej  * ansi and traditional c compiles.
    100      1.25   thorpej  * XXX: this requires that stdarg.h define: va_alist and va_dcl
    101      1.25   thorpej  */
    102      1.25   thorpej #include <machine/stdarg.h>
    103      1.25   thorpej 
    104      1.36   thorpej void	lock_printf(const char *fmt, ...)
    105      1.37       eeh     __attribute__((__format__(__printf__,1,2)));
    106      1.25   thorpej 
    107  1.99.2.1        ad static int acquire(volatile struct lock **, int *, int, int, int, uintptr_t);
    108      1.73      yamt 
    109      1.57  sommerfe int	lock_debug_syslog = 0;	/* defaults to printf, but can be patched */
    110      1.55   thorpej 
    111      1.55   thorpej #ifdef DDB
    112      1.55   thorpej #include <ddb/ddbvar.h>
    113      1.55   thorpej #include <machine/db_machdep.h>
    114      1.55   thorpej #include <ddb/db_command.h>
    115      1.55   thorpej #include <ddb/db_interface.h>
    116      1.55   thorpej #endif
    117      1.85      yamt #endif /* defined(LOCKDEBUG) */
    118      1.85      yamt 
    119      1.85      yamt #if defined(MULTIPROCESSOR)
    120  1.99.2.1        ad /*
    121  1.99.2.1        ad  * IPL_BIGLOCK: block IPLs which need to grab kernel_mutex.
    122  1.99.2.1        ad  * XXX IPL_VM or IPL_AUDIO should be enough.
    123  1.99.2.1        ad  */
    124  1.99.2.1        ad #if !defined(__HAVE_SPLBIGLOCK)
    125  1.99.2.1        ad #define	IPL_BIGLOCK	IPL_CLOCK
    126  1.99.2.1        ad #endif
    127  1.99.2.1        ad kmutex_t kernel_mutex;
    128      1.25   thorpej #endif
    129      1.25   thorpej 
    130       1.1      fvdl /*
    131       1.1      fvdl  * Locking primitives implementation.
    132      1.56       wiz  * Locks provide shared/exclusive synchronization.
    133       1.1      fvdl  */
    134       1.1      fvdl 
    135      1.21   thorpej #if defined(LOCKDEBUG) || defined(DIAGNOSTIC) /* { */
    136      1.21   thorpej #if defined(MULTIPROCESSOR) /* { */
    137      1.21   thorpej #define	COUNT_CPU(cpu_id, x)						\
    138      1.47  sommerfe 	curcpu()->ci_spin_locks += (x)
    139      1.21   thorpej #else
    140      1.21   thorpej u_long	spin_locks;
    141      1.21   thorpej #define	COUNT_CPU(cpu_id, x)	spin_locks += (x)
    142      1.21   thorpej #endif /* MULTIPROCESSOR */ /* } */
    143      1.21   thorpej 
    144      1.69   thorpej #define	COUNT(lkp, l, cpu_id, x)					\
    145      1.21   thorpej do {									\
    146      1.21   thorpej 	if ((lkp)->lk_flags & LK_SPIN)					\
    147      1.21   thorpej 		COUNT_CPU((cpu_id), (x));				\
    148      1.21   thorpej 	else								\
    149      1.69   thorpej 		(l)->l_locks += (x);					\
    150      1.30   thorpej } while (/*CONSTCOND*/0)
    151       1.1      fvdl #else
    152      1.22    mellon #define COUNT(lkp, p, cpu_id, x)
    153      1.48  sommerfe #define COUNT_CPU(cpu_id, x)
    154      1.21   thorpej #endif /* LOCKDEBUG || DIAGNOSTIC */ /* } */
    155       1.1      fvdl 
    156      1.43   thorpej #define	INTERLOCK_ACQUIRE(lkp, flags, s)				\
    157      1.40   thorpej do {									\
    158      1.43   thorpej 	if ((flags) & LK_SPIN)						\
    159      1.65      fvdl 		s = spllock();						\
    160      1.40   thorpej 	simple_lock(&(lkp)->lk_interlock);				\
    161      1.66     perry } while (/*CONSTCOND*/ 0)
    162      1.40   thorpej 
    163      1.43   thorpej #define	INTERLOCK_RELEASE(lkp, flags, s)				\
    164      1.40   thorpej do {									\
    165      1.40   thorpej 	simple_unlock(&(lkp)->lk_interlock);				\
    166      1.52   thorpej 	if ((flags) & LK_SPIN)						\
    167      1.40   thorpej 		splx(s);						\
    168      1.66     perry } while (/*CONSTCOND*/ 0)
    169      1.40   thorpej 
    170      1.63       chs #ifdef DDB /* { */
    171      1.89       chs #if defined(MULTIPROCESSOR) || defined(LOCKDEBUG)
    172      1.63       chs int simple_lock_debugger = 1;	/* more serious on MP */
    173      1.63       chs #else
    174      1.63       chs int simple_lock_debugger = 0;
    175      1.63       chs #endif
    176      1.93       erh #define	SLOCK_DEBUGGER()	if (simple_lock_debugger && db_onpanic) Debugger()
    177      1.63       chs #define	SLOCK_TRACE()							\
    178      1.63       chs 	db_stack_trace_print((db_expr_t)__builtin_frame_address(0),	\
    179      1.71        pk 	    TRUE, 65535, "", lock_printf);
    180      1.63       chs #else
    181      1.63       chs #define	SLOCK_DEBUGGER()	/* nothing */
    182      1.63       chs #define	SLOCK_TRACE()		/* nothing */
    183      1.63       chs #endif /* } */
    184      1.63       chs 
    185      1.50   thorpej #if defined(LOCKDEBUG)
    186      1.50   thorpej #if defined(DDB)
    187      1.93       erh #define	SPINLOCK_SPINCHECK_DEBUGGER	if (db_onpanic) Debugger()
    188      1.50   thorpej #else
    189      1.50   thorpej #define	SPINLOCK_SPINCHECK_DEBUGGER	/* nothing */
    190      1.50   thorpej #endif
    191      1.50   thorpej 
    192      1.50   thorpej #define	SPINLOCK_SPINCHECK_DECL						\
    193      1.50   thorpej 	/* 32-bits of count -- wrap constitutes a "spinout" */		\
    194      1.50   thorpej 	uint32_t __spinc = 0
    195      1.50   thorpej 
    196      1.50   thorpej #define	SPINLOCK_SPINCHECK						\
    197      1.50   thorpej do {									\
    198      1.50   thorpej 	if (++__spinc == 0) {						\
    199      1.71        pk 		lock_printf("LK_SPIN spinout, excl %d, share %d\n",	\
    200      1.50   thorpej 		    lkp->lk_exclusivecount, lkp->lk_sharecount);	\
    201      1.50   thorpej 		if (lkp->lk_exclusivecount)				\
    202      1.71        pk 			lock_printf("held by CPU %lu\n",		\
    203      1.50   thorpej 			    (u_long) lkp->lk_cpu);			\
    204      1.50   thorpej 		if (lkp->lk_lock_file)					\
    205      1.71        pk 			lock_printf("last locked at %s:%d\n",		\
    206      1.50   thorpej 			    lkp->lk_lock_file, lkp->lk_lock_line);	\
    207      1.50   thorpej 		if (lkp->lk_unlock_file)				\
    208      1.71        pk 			lock_printf("last unlocked at %s:%d\n",		\
    209      1.50   thorpej 			    lkp->lk_unlock_file, lkp->lk_unlock_line);	\
    210      1.63       chs 		SLOCK_TRACE();						\
    211      1.50   thorpej 		SPINLOCK_SPINCHECK_DEBUGGER;				\
    212      1.50   thorpej 	}								\
    213      1.66     perry } while (/*CONSTCOND*/ 0)
    214      1.50   thorpej #else
    215      1.50   thorpej #define	SPINLOCK_SPINCHECK_DECL			/* nothing */
    216      1.50   thorpej #define	SPINLOCK_SPINCHECK			/* nothing */
    217      1.50   thorpej #endif /* LOCKDEBUG && DDB */
    218      1.50   thorpej 
    219      1.98        ad #define	RETURN_ADDRESS		((uintptr_t)__builtin_return_address(0))
    220      1.98        ad 
    221       1.1      fvdl /*
    222       1.1      fvdl  * Acquire a resource.
    223       1.1      fvdl  */
    224      1.73      yamt static int
    225      1.91     perry acquire(volatile struct lock **lkpp, int *s, int extflags,
    226      1.98        ad     int drain, int wanted, uintptr_t ra)
    227      1.73      yamt {
    228      1.73      yamt 	int error;
    229      1.91     perry 	volatile struct lock *lkp = *lkpp;
    230      1.98        ad 	LOCKSTAT_TIMER(slptime);
    231      1.73      yamt 
    232      1.73      yamt 	KASSERT(drain || (wanted & LK_WAIT_NONZERO) == 0);
    233      1.73      yamt 
    234      1.73      yamt 	if (extflags & LK_SPIN) {
    235      1.73      yamt 		int interlocked;
    236      1.73      yamt 
    237      1.73      yamt 		SPINLOCK_SPINCHECK_DECL;
    238      1.73      yamt 
    239      1.73      yamt 		if (!drain) {
    240      1.73      yamt 			lkp->lk_waitcount++;
    241      1.73      yamt 			lkp->lk_flags |= LK_WAIT_NONZERO;
    242      1.73      yamt 		}
    243      1.73      yamt 		for (interlocked = 1;;) {
    244      1.73      yamt 			SPINLOCK_SPINCHECK;
    245      1.73      yamt 			if ((lkp->lk_flags & wanted) != 0) {
    246      1.73      yamt 				if (interlocked) {
    247      1.74   hannken 					INTERLOCK_RELEASE(lkp, LK_SPIN, *s);
    248      1.73      yamt 					interlocked = 0;
    249      1.73      yamt 				}
    250      1.73      yamt 				SPINLOCK_SPIN_HOOK;
    251      1.73      yamt 			} else if (interlocked) {
    252      1.73      yamt 				break;
    253      1.73      yamt 			} else {
    254      1.74   hannken 				INTERLOCK_ACQUIRE(lkp, LK_SPIN, *s);
    255      1.73      yamt 				interlocked = 1;
    256      1.73      yamt 			}
    257      1.73      yamt 		}
    258      1.73      yamt 		if (!drain) {
    259      1.73      yamt 			lkp->lk_waitcount--;
    260      1.73      yamt 			if (lkp->lk_waitcount == 0)
    261      1.73      yamt 				lkp->lk_flags &= ~LK_WAIT_NONZERO;
    262      1.73      yamt 		}
    263      1.73      yamt 		KASSERT((lkp->lk_flags & wanted) == 0);
    264      1.73      yamt 		error = 0;	/* sanity */
    265      1.73      yamt 	} else {
    266      1.73      yamt 		for (error = 0; (lkp->lk_flags & wanted) != 0; ) {
    267      1.73      yamt 			if (drain)
    268      1.73      yamt 				lkp->lk_flags |= LK_WAITDRAIN;
    269      1.73      yamt 			else {
    270      1.73      yamt 				lkp->lk_waitcount++;
    271      1.73      yamt 				lkp->lk_flags |= LK_WAIT_NONZERO;
    272      1.73      yamt 			}
    273      1.73      yamt 			/* XXX Cast away volatile. */
    274      1.98        ad 			LOCKSTAT_START_TIMER(slptime);
    275      1.73      yamt 			error = ltsleep(drain ?
    276      1.87  christos 			    (volatile const void *)&lkp->lk_flags :
    277      1.87  christos 			    (volatile const void *)lkp, lkp->lk_prio,
    278      1.73      yamt 			    lkp->lk_wmesg, lkp->lk_timo, &lkp->lk_interlock);
    279      1.98        ad 			LOCKSTAT_STOP_TIMER(slptime);
    280      1.98        ad 			LOCKSTAT_EVENT_RA((void *)(uintptr_t)lkp,
    281      1.98        ad 			    LB_LOCKMGR | LB_SLEEP, 1, slptime, ra);
    282      1.73      yamt 			if (!drain) {
    283      1.73      yamt 				lkp->lk_waitcount--;
    284      1.73      yamt 				if (lkp->lk_waitcount == 0)
    285      1.73      yamt 					lkp->lk_flags &= ~LK_WAIT_NONZERO;
    286      1.73      yamt 			}
    287      1.73      yamt 			if (error)
    288      1.73      yamt 				break;
    289      1.73      yamt 			if (extflags & LK_SLEEPFAIL) {
    290      1.73      yamt 				error = ENOLCK;
    291      1.73      yamt 				break;
    292      1.73      yamt 			}
    293      1.78   hannken 			if (lkp->lk_newlock != NULL) {
    294      1.78   hannken 				simple_lock(&lkp->lk_newlock->lk_interlock);
    295      1.78   hannken 				simple_unlock(&lkp->lk_interlock);
    296      1.78   hannken 				if (lkp->lk_waitcount == 0)
    297      1.87  christos 					wakeup(&lkp->lk_newlock);
    298      1.78   hannken 				*lkpp = lkp = lkp->lk_newlock;
    299      1.78   hannken 			}
    300      1.73      yamt 		}
    301       1.1      fvdl 	}
    302       1.1      fvdl 
    303      1.73      yamt 	return error;
    304      1.73      yamt }
    305      1.73      yamt 
    306      1.69   thorpej #define	SETHOLDER(lkp, pid, lid, cpu_id)				\
    307      1.19   thorpej do {									\
    308      1.19   thorpej 	if ((lkp)->lk_flags & LK_SPIN)					\
    309      1.19   thorpej 		(lkp)->lk_cpu = cpu_id;					\
    310      1.69   thorpej 	else {								\
    311      1.19   thorpej 		(lkp)->lk_lockholder = pid;				\
    312      1.69   thorpej 		(lkp)->lk_locklwp = lid;				\
    313      1.69   thorpej 	}								\
    314      1.30   thorpej } while (/*CONSTCOND*/0)
    315      1.19   thorpej 
    316      1.69   thorpej #define	WEHOLDIT(lkp, pid, lid, cpu_id)					\
    317      1.19   thorpej 	(((lkp)->lk_flags & LK_SPIN) != 0 ?				\
    318      1.69   thorpej 	 ((lkp)->lk_cpu == (cpu_id)) :					\
    319      1.69   thorpej 	 ((lkp)->lk_lockholder == (pid) && (lkp)->lk_locklwp == (lid)))
    320      1.19   thorpej 
    321      1.23   thorpej #define	WAKEUP_WAITER(lkp)						\
    322      1.23   thorpej do {									\
    323      1.73      yamt 	if (((lkp)->lk_flags & (LK_SPIN | LK_WAIT_NONZERO)) ==		\
    324      1.73      yamt 	    LK_WAIT_NONZERO) {						\
    325      1.87  christos 		wakeup((lkp));						\
    326      1.23   thorpej 	}								\
    327      1.30   thorpej } while (/*CONSTCOND*/0)
    328      1.23   thorpej 
    329      1.21   thorpej #if defined(LOCKDEBUG) /* { */
    330      1.21   thorpej #if defined(MULTIPROCESSOR) /* { */
    331      1.21   thorpej struct simplelock spinlock_list_slock = SIMPLELOCK_INITIALIZER;
    332      1.21   thorpej 
    333      1.27   thorpej #define	SPINLOCK_LIST_LOCK()						\
    334      1.29  sommerfe 	__cpu_simple_lock(&spinlock_list_slock.lock_data)
    335      1.21   thorpej 
    336      1.27   thorpej #define	SPINLOCK_LIST_UNLOCK()						\
    337      1.29  sommerfe 	__cpu_simple_unlock(&spinlock_list_slock.lock_data)
    338      1.21   thorpej #else
    339      1.21   thorpej #define	SPINLOCK_LIST_LOCK()	/* nothing */
    340      1.21   thorpej 
    341      1.21   thorpej #define	SPINLOCK_LIST_UNLOCK()	/* nothing */
    342      1.21   thorpej #endif /* MULTIPROCESSOR */ /* } */
    343      1.21   thorpej 
    344      1.91     perry _TAILQ_HEAD(, struct lock, volatile) spinlock_list =
    345      1.21   thorpej     TAILQ_HEAD_INITIALIZER(spinlock_list);
    346      1.21   thorpej 
    347      1.21   thorpej #define	HAVEIT(lkp)							\
    348      1.21   thorpej do {									\
    349      1.21   thorpej 	if ((lkp)->lk_flags & LK_SPIN) {				\
    350      1.87  christos 		int sp = spllock();					\
    351      1.21   thorpej 		SPINLOCK_LIST_LOCK();					\
    352      1.87  christos 		TAILQ_INSERT_TAIL(&spinlock_list, (lkp), lk_list);	\
    353      1.21   thorpej 		SPINLOCK_LIST_UNLOCK();					\
    354      1.87  christos 		splx(sp);						\
    355      1.21   thorpej 	}								\
    356      1.30   thorpej } while (/*CONSTCOND*/0)
    357      1.21   thorpej 
    358      1.21   thorpej #define	DONTHAVEIT(lkp)							\
    359      1.21   thorpej do {									\
    360      1.21   thorpej 	if ((lkp)->lk_flags & LK_SPIN) {				\
    361      1.87  christos 		int sp = spllock();					\
    362      1.21   thorpej 		SPINLOCK_LIST_LOCK();					\
    363      1.87  christos 		TAILQ_REMOVE(&spinlock_list, (lkp), lk_list);		\
    364      1.21   thorpej 		SPINLOCK_LIST_UNLOCK();					\
    365      1.87  christos 		splx(sp);						\
    366      1.21   thorpej 	}								\
    367      1.30   thorpej } while (/*CONSTCOND*/0)
    368      1.21   thorpej #else
    369      1.21   thorpej #define	HAVEIT(lkp)		/* nothing */
    370      1.21   thorpej 
    371      1.21   thorpej #define	DONTHAVEIT(lkp)		/* nothing */
    372      1.21   thorpej #endif /* LOCKDEBUG */ /* } */
    373      1.21   thorpej 
    374      1.25   thorpej #if defined(LOCKDEBUG)
    375      1.25   thorpej /*
    376      1.25   thorpej  * Lock debug printing routine; can be configured to print to console
    377      1.25   thorpej  * or log to syslog.
    378      1.25   thorpej  */
    379      1.25   thorpej void
    380      1.25   thorpej lock_printf(const char *fmt, ...)
    381      1.25   thorpej {
    382      1.68        pk 	char b[150];
    383      1.25   thorpej 	va_list ap;
    384      1.25   thorpej 
    385      1.25   thorpej 	va_start(ap, fmt);
    386      1.25   thorpej 	if (lock_debug_syslog)
    387      1.25   thorpej 		vlog(LOG_DEBUG, fmt, ap);
    388      1.68        pk 	else {
    389      1.68        pk 		vsnprintf(b, sizeof(b), fmt, ap);
    390      1.68        pk 		printf_nolog("%s", b);
    391      1.68        pk 	}
    392      1.25   thorpej 	va_end(ap);
    393      1.25   thorpej }
    394      1.25   thorpej #endif /* LOCKDEBUG */
    395      1.25   thorpej 
    396       1.1      fvdl /*
    397      1.78   hannken  * Transfer any waiting processes from one lock to another.
    398      1.78   hannken  */
    399      1.78   hannken void
    400      1.78   hannken transferlockers(struct lock *from, struct lock *to)
    401      1.78   hannken {
    402      1.78   hannken 
    403      1.78   hannken 	KASSERT(from != to);
    404      1.78   hannken 	KASSERT((from->lk_flags & LK_WAITDRAIN) == 0);
    405      1.78   hannken 	if (from->lk_waitcount == 0)
    406      1.78   hannken 		return;
    407      1.78   hannken 	from->lk_newlock = to;
    408      1.78   hannken 	wakeup((void *)from);
    409      1.78   hannken 	tsleep((void *)&from->lk_newlock, from->lk_prio, "lkxfer", 0);
    410      1.78   hannken 	from->lk_newlock = NULL;
    411      1.78   hannken 	from->lk_flags &= ~(LK_WANT_EXCL | LK_WANT_UPGRADE);
    412      1.78   hannken 	KASSERT(from->lk_waitcount == 0);
    413      1.78   hannken }
    414      1.78   hannken 
    415      1.78   hannken 
    416      1.78   hannken /*
    417       1.1      fvdl  * Initialize a lock; required before use.
    418       1.1      fvdl  */
    419       1.1      fvdl void
    420      1.33   thorpej lockinit(struct lock *lkp, int prio, const char *wmesg, int timo, int flags)
    421       1.1      fvdl {
    422       1.1      fvdl 
    423       1.8     perry 	memset(lkp, 0, sizeof(struct lock));
    424       1.1      fvdl 	simple_lock_init(&lkp->lk_interlock);
    425       1.1      fvdl 	lkp->lk_flags = flags & LK_EXTFLG_MASK;
    426      1.19   thorpej 	if (flags & LK_SPIN)
    427      1.19   thorpej 		lkp->lk_cpu = LK_NOCPU;
    428      1.19   thorpej 	else {
    429      1.19   thorpej 		lkp->lk_lockholder = LK_NOPROC;
    430      1.78   hannken 		lkp->lk_newlock = NULL;
    431      1.19   thorpej 		lkp->lk_prio = prio;
    432      1.19   thorpej 		lkp->lk_timo = timo;
    433      1.19   thorpej 	}
    434      1.19   thorpej 	lkp->lk_wmesg = wmesg;	/* just a name for spin locks */
    435      1.50   thorpej #if defined(LOCKDEBUG)
    436      1.50   thorpej 	lkp->lk_lock_file = NULL;
    437      1.50   thorpej 	lkp->lk_unlock_file = NULL;
    438      1.50   thorpej #endif
    439       1.1      fvdl }
    440       1.1      fvdl 
    441       1.1      fvdl /*
    442       1.1      fvdl  * Determine the status of a lock.
    443       1.1      fvdl  */
    444       1.1      fvdl int
    445      1.33   thorpej lockstatus(struct lock *lkp)
    446       1.1      fvdl {
    447      1.76      yamt 	int s = 0; /* XXX: gcc */
    448      1.76      yamt 	int lock_type = 0;
    449      1.76      yamt 	struct lwp *l = curlwp; /* XXX */
    450      1.76      yamt 	pid_t pid;
    451      1.76      yamt 	lwpid_t lid;
    452      1.88     blymn 	cpuid_t cpu_num;
    453      1.76      yamt 
    454      1.76      yamt 	if ((lkp->lk_flags & LK_SPIN) || l == NULL) {
    455      1.88     blymn 		cpu_num = cpu_number();
    456      1.76      yamt 		pid = LK_KERNPROC;
    457      1.76      yamt 		lid = 0;
    458      1.76      yamt 	} else {
    459      1.88     blymn 		cpu_num = LK_NOCPU;
    460      1.76      yamt 		pid = l->l_proc->p_pid;
    461      1.76      yamt 		lid = l->l_lid;
    462      1.76      yamt 	}
    463       1.1      fvdl 
    464      1.43   thorpej 	INTERLOCK_ACQUIRE(lkp, lkp->lk_flags, s);
    465      1.76      yamt 	if (lkp->lk_exclusivecount != 0) {
    466      1.88     blymn 		if (WEHOLDIT(lkp, pid, lid, cpu_num))
    467      1.76      yamt 			lock_type = LK_EXCLUSIVE;
    468      1.76      yamt 		else
    469      1.76      yamt 			lock_type = LK_EXCLOTHER;
    470      1.76      yamt 	} else if (lkp->lk_sharecount != 0)
    471       1.1      fvdl 		lock_type = LK_SHARED;
    472      1.43   thorpej 	INTERLOCK_RELEASE(lkp, lkp->lk_flags, s);
    473       1.1      fvdl 	return (lock_type);
    474       1.1      fvdl }
    475      1.35   thorpej 
    476      1.92       chs #if defined(LOCKDEBUG)
    477      1.35   thorpej /*
    478      1.35   thorpej  * Make sure no spin locks are held by a CPU that is about
    479      1.35   thorpej  * to context switch.
    480      1.35   thorpej  */
    481      1.35   thorpej void
    482      1.35   thorpej spinlock_switchcheck(void)
    483      1.35   thorpej {
    484      1.35   thorpej 	u_long cnt;
    485      1.35   thorpej 	int s;
    486      1.35   thorpej 
    487      1.44   thorpej 	s = spllock();
    488      1.35   thorpej #if defined(MULTIPROCESSOR)
    489      1.35   thorpej 	cnt = curcpu()->ci_spin_locks;
    490      1.35   thorpej #else
    491      1.35   thorpej 	cnt = spin_locks;
    492      1.35   thorpej #endif
    493      1.35   thorpej 	splx(s);
    494      1.35   thorpej 
    495      1.35   thorpej 	if (cnt != 0)
    496      1.35   thorpej 		panic("spinlock_switchcheck: CPU %lu has %lu spin locks",
    497      1.35   thorpej 		    (u_long) cpu_number(), cnt);
    498      1.35   thorpej }
    499      1.92       chs #endif /* LOCKDEBUG */
    500       1.1      fvdl 
    501       1.1      fvdl /*
    502      1.44   thorpej  * Locks and IPLs (interrupt priority levels):
    503      1.44   thorpej  *
    504      1.44   thorpej  * Locks which may be taken from interrupt context must be handled
    505      1.44   thorpej  * very carefully; you must spl to the highest IPL where the lock
    506      1.44   thorpej  * is needed before acquiring the lock.
    507      1.44   thorpej  *
    508      1.44   thorpej  * It is also important to avoid deadlock, since certain (very high
    509      1.44   thorpej  * priority) interrupts are often needed to keep the system as a whole
    510      1.44   thorpej  * from deadlocking, and must not be blocked while you are spinning
    511      1.44   thorpej  * waiting for a lower-priority lock.
    512      1.44   thorpej  *
    513      1.44   thorpej  * In addition, the lock-debugging hooks themselves need to use locks!
    514      1.44   thorpej  *
    515      1.44   thorpej  * A raw __cpu_simple_lock may be used from interrupts are long as it
    516      1.44   thorpej  * is acquired and held at a single IPL.
    517      1.44   thorpej  *
    518      1.44   thorpej  * A simple_lock (which is a __cpu_simple_lock wrapped with some
    519      1.44   thorpej  * debugging hooks) may be used at or below spllock(), which is
    520      1.44   thorpej  * typically at or just below splhigh() (i.e. blocks everything
    521      1.44   thorpej  * but certain machine-dependent extremely high priority interrupts).
    522      1.44   thorpej  *
    523      1.44   thorpej  * spinlockmgr spinlocks should be used at or below splsched().
    524      1.44   thorpej  *
    525      1.44   thorpej  * Some platforms may have interrupts of higher priority than splsched(),
    526      1.44   thorpej  * including hard serial interrupts, inter-processor interrupts, and
    527      1.44   thorpej  * kernel debugger traps.
    528      1.44   thorpej  */
    529      1.44   thorpej 
    530      1.44   thorpej /*
    531      1.32  sommerfe  * XXX XXX kludge around another kludge..
    532      1.32  sommerfe  *
    533      1.32  sommerfe  * vfs_shutdown() may be called from interrupt context, either as a result
    534      1.32  sommerfe  * of a panic, or from the debugger.   It proceeds to call
    535      1.32  sommerfe  * sys_sync(&proc0, ...), pretending its running on behalf of proc0
    536      1.32  sommerfe  *
    537      1.32  sommerfe  * We would like to make an attempt to sync the filesystems in this case, so
    538      1.32  sommerfe  * if this happens, we treat attempts to acquire locks specially.
    539      1.32  sommerfe  * All locks are acquired on behalf of proc0.
    540      1.32  sommerfe  *
    541      1.32  sommerfe  * If we've already paniced, we don't block waiting for locks, but
    542      1.32  sommerfe  * just barge right ahead since we're already going down in flames.
    543      1.32  sommerfe  */
    544      1.32  sommerfe 
    545      1.32  sommerfe /*
    546       1.1      fvdl  * Set, change, or release a lock.
    547       1.1      fvdl  *
    548       1.1      fvdl  * Shared requests increment the shared count. Exclusive requests set the
    549       1.1      fvdl  * LK_WANT_EXCL flag (preventing further shared locks), and wait for already
    550       1.1      fvdl  * accepted shared locks and shared-to-exclusive upgrades to go away.
    551       1.1      fvdl  */
    552       1.1      fvdl int
    553      1.50   thorpej #if defined(LOCKDEBUG)
    554      1.91     perry _lockmgr(volatile struct lock *lkp, u_int flags,
    555      1.50   thorpej     struct simplelock *interlkp, const char *file, int line)
    556      1.50   thorpej #else
    557      1.91     perry lockmgr(volatile struct lock *lkp, u_int flags,
    558      1.33   thorpej     struct simplelock *interlkp)
    559      1.50   thorpej #endif
    560       1.1      fvdl {
    561       1.1      fvdl 	int error;
    562       1.1      fvdl 	pid_t pid;
    563      1.69   thorpej 	lwpid_t lid;
    564       1.1      fvdl 	int extflags;
    565      1.88     blymn 	cpuid_t cpu_num;
    566      1.69   thorpej 	struct lwp *l = curlwp;
    567      1.32  sommerfe 	int lock_shutdown_noblock = 0;
    568      1.67       scw 	int s = 0;
    569       1.1      fvdl 
    570       1.1      fvdl 	error = 0;
    571      1.19   thorpej 
    572      1.80      yamt 	/* LK_RETRY is for vn_lock, not for lockmgr. */
    573      1.79      yamt 	KASSERT((flags & LK_RETRY) == 0);
    574      1.79      yamt 
    575      1.43   thorpej 	INTERLOCK_ACQUIRE(lkp, lkp->lk_flags, s);
    576       1.1      fvdl 	if (flags & LK_INTERLOCK)
    577       1.1      fvdl 		simple_unlock(interlkp);
    578       1.1      fvdl 	extflags = (flags | lkp->lk_flags) & LK_EXTFLG_MASK;
    579      1.19   thorpej 
    580      1.21   thorpej #ifdef DIAGNOSTIC /* { */
    581      1.19   thorpej 	/*
    582      1.19   thorpej 	 * Don't allow spins on sleep locks and don't allow sleeps
    583      1.19   thorpej 	 * on spin locks.
    584      1.19   thorpej 	 */
    585      1.19   thorpej 	if ((flags ^ lkp->lk_flags) & LK_SPIN)
    586      1.64    provos 		panic("lockmgr: sleep/spin mismatch");
    587      1.21   thorpej #endif /* } */
    588      1.19   thorpej 
    589      1.69   thorpej 	if (extflags & LK_SPIN) {
    590      1.19   thorpej 		pid = LK_KERNPROC;
    591      1.69   thorpej 		lid = 0;
    592      1.69   thorpej 	} else {
    593      1.69   thorpej 		if (l == NULL) {
    594      1.32  sommerfe 			if (!doing_shutdown) {
    595      1.32  sommerfe 				panic("lockmgr: no context");
    596      1.32  sommerfe 			} else {
    597      1.69   thorpej 				l = &lwp0;
    598      1.32  sommerfe 				if (panicstr && (!(flags & LK_NOWAIT))) {
    599      1.32  sommerfe 					flags |= LK_NOWAIT;
    600      1.32  sommerfe 					lock_shutdown_noblock = 1;
    601      1.32  sommerfe 				}
    602      1.32  sommerfe 			}
    603      1.32  sommerfe 		}
    604      1.69   thorpej 		lid = l->l_lid;
    605      1.69   thorpej 		pid = l->l_proc->p_pid;
    606      1.19   thorpej 	}
    607      1.88     blymn 	cpu_num = cpu_number();
    608      1.19   thorpej 
    609       1.1      fvdl 	/*
    610       1.1      fvdl 	 * Once a lock has drained, the LK_DRAINING flag is set and an
    611       1.1      fvdl 	 * exclusive lock is returned. The only valid operation thereafter
    612       1.1      fvdl 	 * is a single release of that exclusive lock. This final release
    613       1.1      fvdl 	 * clears the LK_DRAINING flag and sets the LK_DRAINED flag. Any
    614       1.1      fvdl 	 * further requests of any sort will result in a panic. The bits
    615       1.1      fvdl 	 * selected for these two flags are chosen so that they will be set
    616       1.1      fvdl 	 * in memory that is freed (freed memory is filled with 0xdeadbeef).
    617       1.1      fvdl 	 * The final release is permitted to give a new lease on life to
    618       1.1      fvdl 	 * the lock by specifying LK_REENABLE.
    619       1.1      fvdl 	 */
    620       1.1      fvdl 	if (lkp->lk_flags & (LK_DRAINING|LK_DRAINED)) {
    621      1.28   thorpej #ifdef DIAGNOSTIC /* { */
    622       1.1      fvdl 		if (lkp->lk_flags & LK_DRAINED)
    623       1.1      fvdl 			panic("lockmgr: using decommissioned lock");
    624       1.1      fvdl 		if ((flags & LK_TYPE_MASK) != LK_RELEASE ||
    625      1.88     blymn 		    WEHOLDIT(lkp, pid, lid, cpu_num) == 0)
    626      1.64    provos 			panic("lockmgr: non-release on draining lock: %d",
    627       1.1      fvdl 			    flags & LK_TYPE_MASK);
    628      1.28   thorpej #endif /* DIAGNOSTIC */ /* } */
    629       1.1      fvdl 		lkp->lk_flags &= ~LK_DRAINING;
    630       1.1      fvdl 		if ((flags & LK_REENABLE) == 0)
    631       1.1      fvdl 			lkp->lk_flags |= LK_DRAINED;
    632       1.1      fvdl 	}
    633       1.1      fvdl 
    634       1.1      fvdl 	switch (flags & LK_TYPE_MASK) {
    635       1.1      fvdl 
    636       1.1      fvdl 	case LK_SHARED:
    637      1.88     blymn 		if (WEHOLDIT(lkp, pid, lid, cpu_num) == 0) {
    638       1.1      fvdl 			/*
    639       1.1      fvdl 			 * If just polling, check to see if we will block.
    640       1.1      fvdl 			 */
    641       1.1      fvdl 			if ((extflags & LK_NOWAIT) && (lkp->lk_flags &
    642       1.1      fvdl 			    (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE))) {
    643       1.1      fvdl 				error = EBUSY;
    644       1.1      fvdl 				break;
    645       1.1      fvdl 			}
    646       1.1      fvdl 			/*
    647       1.1      fvdl 			 * Wait for exclusive locks and upgrades to clear.
    648       1.1      fvdl 			 */
    649      1.78   hannken 			error = acquire(&lkp, &s, extflags, 0,
    650      1.98        ad 			    LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE,
    651      1.98        ad 			    RETURN_ADDRESS);
    652       1.1      fvdl 			if (error)
    653       1.1      fvdl 				break;
    654       1.1      fvdl 			lkp->lk_sharecount++;
    655      1.73      yamt 			lkp->lk_flags |= LK_SHARE_NONZERO;
    656      1.88     blymn 			COUNT(lkp, l, cpu_num, 1);
    657       1.1      fvdl 			break;
    658       1.1      fvdl 		}
    659       1.1      fvdl 		/*
    660       1.1      fvdl 		 * We hold an exclusive lock, so downgrade it to shared.
    661       1.1      fvdl 		 * An alternative would be to fail with EDEADLK.
    662       1.1      fvdl 		 */
    663       1.1      fvdl 		lkp->lk_sharecount++;
    664      1.73      yamt 		lkp->lk_flags |= LK_SHARE_NONZERO;
    665      1.88     blymn 		COUNT(lkp, l, cpu_num, 1);
    666       1.1      fvdl 		/* fall into downgrade */
    667       1.1      fvdl 
    668       1.1      fvdl 	case LK_DOWNGRADE:
    669      1.88     blymn 		if (WEHOLDIT(lkp, pid, lid, cpu_num) == 0 ||
    670      1.19   thorpej 		    lkp->lk_exclusivecount == 0)
    671       1.1      fvdl 			panic("lockmgr: not holding exclusive lock");
    672       1.1      fvdl 		lkp->lk_sharecount += lkp->lk_exclusivecount;
    673      1.73      yamt 		lkp->lk_flags |= LK_SHARE_NONZERO;
    674       1.1      fvdl 		lkp->lk_exclusivecount = 0;
    675      1.15      fvdl 		lkp->lk_recurselevel = 0;
    676       1.1      fvdl 		lkp->lk_flags &= ~LK_HAVE_EXCL;
    677      1.69   thorpej 		SETHOLDER(lkp, LK_NOPROC, 0, LK_NOCPU);
    678      1.50   thorpej #if defined(LOCKDEBUG)
    679      1.50   thorpej 		lkp->lk_unlock_file = file;
    680      1.50   thorpej 		lkp->lk_unlock_line = line;
    681      1.50   thorpej #endif
    682      1.21   thorpej 		DONTHAVEIT(lkp);
    683      1.23   thorpej 		WAKEUP_WAITER(lkp);
    684       1.1      fvdl 		break;
    685       1.1      fvdl 
    686       1.1      fvdl 	case LK_EXCLUPGRADE:
    687       1.1      fvdl 		/*
    688       1.1      fvdl 		 * If another process is ahead of us to get an upgrade,
    689       1.1      fvdl 		 * then we want to fail rather than have an intervening
    690       1.1      fvdl 		 * exclusive access.
    691       1.1      fvdl 		 */
    692       1.1      fvdl 		if (lkp->lk_flags & LK_WANT_UPGRADE) {
    693       1.1      fvdl 			lkp->lk_sharecount--;
    694      1.73      yamt 			if (lkp->lk_sharecount == 0)
    695      1.73      yamt 				lkp->lk_flags &= ~LK_SHARE_NONZERO;
    696      1.88     blymn 			COUNT(lkp, l, cpu_num, -1);
    697       1.1      fvdl 			error = EBUSY;
    698       1.1      fvdl 			break;
    699       1.1      fvdl 		}
    700       1.1      fvdl 		/* fall into normal upgrade */
    701       1.1      fvdl 
    702       1.1      fvdl 	case LK_UPGRADE:
    703       1.1      fvdl 		/*
    704       1.1      fvdl 		 * Upgrade a shared lock to an exclusive one. If another
    705       1.1      fvdl 		 * shared lock has already requested an upgrade to an
    706       1.1      fvdl 		 * exclusive lock, our shared lock is released and an
    707       1.1      fvdl 		 * exclusive lock is requested (which will be granted
    708       1.1      fvdl 		 * after the upgrade). If we return an error, the file
    709       1.1      fvdl 		 * will always be unlocked.
    710       1.1      fvdl 		 */
    711      1.88     blymn 		if (WEHOLDIT(lkp, pid, lid, cpu_num) || lkp->lk_sharecount <= 0)
    712       1.1      fvdl 			panic("lockmgr: upgrade exclusive lock");
    713       1.1      fvdl 		lkp->lk_sharecount--;
    714      1.73      yamt 		if (lkp->lk_sharecount == 0)
    715      1.73      yamt 			lkp->lk_flags &= ~LK_SHARE_NONZERO;
    716      1.88     blymn 		COUNT(lkp, l, cpu_num, -1);
    717       1.1      fvdl 		/*
    718       1.1      fvdl 		 * If we are just polling, check to see if we will block.
    719       1.1      fvdl 		 */
    720       1.1      fvdl 		if ((extflags & LK_NOWAIT) &&
    721       1.1      fvdl 		    ((lkp->lk_flags & LK_WANT_UPGRADE) ||
    722       1.1      fvdl 		     lkp->lk_sharecount > 1)) {
    723       1.1      fvdl 			error = EBUSY;
    724       1.1      fvdl 			break;
    725       1.1      fvdl 		}
    726       1.1      fvdl 		if ((lkp->lk_flags & LK_WANT_UPGRADE) == 0) {
    727       1.1      fvdl 			/*
    728       1.1      fvdl 			 * We are first shared lock to request an upgrade, so
    729       1.1      fvdl 			 * request upgrade and wait for the shared count to
    730       1.1      fvdl 			 * drop to zero, then take exclusive lock.
    731       1.1      fvdl 			 */
    732       1.1      fvdl 			lkp->lk_flags |= LK_WANT_UPGRADE;
    733      1.98        ad 			error = acquire(&lkp, &s, extflags, 0, LK_SHARE_NONZERO,
    734      1.98        ad 			    RETURN_ADDRESS);
    735       1.1      fvdl 			lkp->lk_flags &= ~LK_WANT_UPGRADE;
    736      1.83      yamt 			if (error) {
    737      1.83      yamt 				WAKEUP_WAITER(lkp);
    738       1.1      fvdl 				break;
    739      1.83      yamt 			}
    740       1.1      fvdl 			lkp->lk_flags |= LK_HAVE_EXCL;
    741      1.88     blymn 			SETHOLDER(lkp, pid, lid, cpu_num);
    742      1.50   thorpej #if defined(LOCKDEBUG)
    743      1.50   thorpej 			lkp->lk_lock_file = file;
    744      1.50   thorpej 			lkp->lk_lock_line = line;
    745      1.50   thorpej #endif
    746      1.21   thorpej 			HAVEIT(lkp);
    747       1.1      fvdl 			if (lkp->lk_exclusivecount != 0)
    748       1.1      fvdl 				panic("lockmgr: non-zero exclusive count");
    749       1.1      fvdl 			lkp->lk_exclusivecount = 1;
    750      1.15      fvdl 			if (extflags & LK_SETRECURSE)
    751      1.15      fvdl 				lkp->lk_recurselevel = 1;
    752      1.88     blymn 			COUNT(lkp, l, cpu_num, 1);
    753       1.1      fvdl 			break;
    754       1.1      fvdl 		}
    755       1.1      fvdl 		/*
    756       1.1      fvdl 		 * Someone else has requested upgrade. Release our shared
    757       1.1      fvdl 		 * lock, awaken upgrade requestor if we are the last shared
    758       1.1      fvdl 		 * lock, then request an exclusive lock.
    759       1.1      fvdl 		 */
    760      1.23   thorpej 		if (lkp->lk_sharecount == 0)
    761      1.23   thorpej 			WAKEUP_WAITER(lkp);
    762       1.1      fvdl 		/* fall into exclusive request */
    763       1.1      fvdl 
    764       1.1      fvdl 	case LK_EXCLUSIVE:
    765      1.88     blymn 		if (WEHOLDIT(lkp, pid, lid, cpu_num)) {
    766       1.1      fvdl 			/*
    767      1.19   thorpej 			 * Recursive lock.
    768       1.1      fvdl 			 */
    769      1.15      fvdl 			if ((extflags & LK_CANRECURSE) == 0 &&
    770      1.16  sommerfe 			     lkp->lk_recurselevel == 0) {
    771      1.16  sommerfe 				if (extflags & LK_RECURSEFAIL) {
    772      1.16  sommerfe 					error = EDEADLK;
    773      1.16  sommerfe 					break;
    774      1.16  sommerfe 				} else
    775      1.16  sommerfe 					panic("lockmgr: locking against myself");
    776      1.16  sommerfe 			}
    777       1.1      fvdl 			lkp->lk_exclusivecount++;
    778      1.15      fvdl 			if (extflags & LK_SETRECURSE &&
    779      1.15      fvdl 			    lkp->lk_recurselevel == 0)
    780      1.15      fvdl 				lkp->lk_recurselevel = lkp->lk_exclusivecount;
    781      1.88     blymn 			COUNT(lkp, l, cpu_num, 1);
    782       1.1      fvdl 			break;
    783       1.1      fvdl 		}
    784       1.1      fvdl 		/*
    785       1.1      fvdl 		 * If we are just polling, check to see if we will sleep.
    786       1.1      fvdl 		 */
    787      1.73      yamt 		if ((extflags & LK_NOWAIT) && (lkp->lk_flags &
    788      1.73      yamt 		     (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE |
    789      1.73      yamt 		     LK_SHARE_NONZERO))) {
    790       1.1      fvdl 			error = EBUSY;
    791       1.1      fvdl 			break;
    792       1.1      fvdl 		}
    793       1.1      fvdl 		/*
    794       1.1      fvdl 		 * Try to acquire the want_exclusive flag.
    795       1.1      fvdl 		 */
    796      1.82      yamt 		error = acquire(&lkp, &s, extflags, 0,
    797      1.98        ad 		    LK_HAVE_EXCL | LK_WANT_EXCL, RETURN_ADDRESS);
    798       1.1      fvdl 		if (error)
    799       1.1      fvdl 			break;
    800       1.1      fvdl 		lkp->lk_flags |= LK_WANT_EXCL;
    801       1.1      fvdl 		/*
    802       1.1      fvdl 		 * Wait for shared locks and upgrades to finish.
    803       1.1      fvdl 		 */
    804      1.78   hannken 		error = acquire(&lkp, &s, extflags, 0,
    805      1.98        ad 		    LK_HAVE_EXCL | LK_WANT_UPGRADE | LK_SHARE_NONZERO,
    806      1.98        ad 		    RETURN_ADDRESS);
    807       1.1      fvdl 		lkp->lk_flags &= ~LK_WANT_EXCL;
    808      1.83      yamt 		if (error) {
    809      1.83      yamt 			WAKEUP_WAITER(lkp);
    810       1.1      fvdl 			break;
    811      1.83      yamt 		}
    812       1.1      fvdl 		lkp->lk_flags |= LK_HAVE_EXCL;
    813      1.88     blymn 		SETHOLDER(lkp, pid, lid, cpu_num);
    814      1.50   thorpej #if defined(LOCKDEBUG)
    815      1.50   thorpej 		lkp->lk_lock_file = file;
    816      1.50   thorpej 		lkp->lk_lock_line = line;
    817      1.50   thorpej #endif
    818      1.21   thorpej 		HAVEIT(lkp);
    819       1.1      fvdl 		if (lkp->lk_exclusivecount != 0)
    820       1.1      fvdl 			panic("lockmgr: non-zero exclusive count");
    821       1.1      fvdl 		lkp->lk_exclusivecount = 1;
    822      1.15      fvdl 		if (extflags & LK_SETRECURSE)
    823      1.15      fvdl 			lkp->lk_recurselevel = 1;
    824      1.88     blymn 		COUNT(lkp, l, cpu_num, 1);
    825       1.1      fvdl 		break;
    826       1.1      fvdl 
    827       1.1      fvdl 	case LK_RELEASE:
    828       1.1      fvdl 		if (lkp->lk_exclusivecount != 0) {
    829      1.88     blymn 			if (WEHOLDIT(lkp, pid, lid, cpu_num) == 0) {
    830      1.19   thorpej 				if (lkp->lk_flags & LK_SPIN) {
    831      1.19   thorpej 					panic("lockmgr: processor %lu, not "
    832      1.19   thorpej 					    "exclusive lock holder %lu "
    833      1.88     blymn 					    "unlocking", cpu_num, lkp->lk_cpu);
    834      1.19   thorpej 				} else {
    835      1.19   thorpej 					panic("lockmgr: pid %d, not "
    836      1.19   thorpej 					    "exclusive lock holder %d "
    837      1.19   thorpej 					    "unlocking", pid,
    838      1.19   thorpej 					    lkp->lk_lockholder);
    839      1.19   thorpej 				}
    840      1.19   thorpej 			}
    841      1.15      fvdl 			if (lkp->lk_exclusivecount == lkp->lk_recurselevel)
    842      1.15      fvdl 				lkp->lk_recurselevel = 0;
    843       1.1      fvdl 			lkp->lk_exclusivecount--;
    844      1.88     blymn 			COUNT(lkp, l, cpu_num, -1);
    845       1.1      fvdl 			if (lkp->lk_exclusivecount == 0) {
    846       1.1      fvdl 				lkp->lk_flags &= ~LK_HAVE_EXCL;
    847      1.69   thorpej 				SETHOLDER(lkp, LK_NOPROC, 0, LK_NOCPU);
    848      1.50   thorpej #if defined(LOCKDEBUG)
    849      1.50   thorpej 				lkp->lk_unlock_file = file;
    850      1.50   thorpej 				lkp->lk_unlock_line = line;
    851      1.50   thorpej #endif
    852      1.21   thorpej 				DONTHAVEIT(lkp);
    853       1.1      fvdl 			}
    854       1.1      fvdl 		} else if (lkp->lk_sharecount != 0) {
    855       1.1      fvdl 			lkp->lk_sharecount--;
    856      1.73      yamt 			if (lkp->lk_sharecount == 0)
    857      1.73      yamt 				lkp->lk_flags &= ~LK_SHARE_NONZERO;
    858      1.88     blymn 			COUNT(lkp, l, cpu_num, -1);
    859       1.1      fvdl 		}
    860      1.39   thorpej #ifdef DIAGNOSTIC
    861      1.39   thorpej 		else
    862      1.39   thorpej 			panic("lockmgr: release of unlocked lock!");
    863      1.39   thorpej #endif
    864      1.23   thorpej 		WAKEUP_WAITER(lkp);
    865       1.1      fvdl 		break;
    866       1.1      fvdl 
    867       1.1      fvdl 	case LK_DRAIN:
    868       1.1      fvdl 		/*
    869      1.86     perry 		 * Check that we do not already hold the lock, as it can
    870       1.1      fvdl 		 * never drain if we do. Unfortunately, we have no way to
    871       1.1      fvdl 		 * check for holding a shared lock, but at least we can
    872       1.1      fvdl 		 * check for an exclusive one.
    873       1.1      fvdl 		 */
    874      1.88     blymn 		if (WEHOLDIT(lkp, pid, lid, cpu_num))
    875       1.1      fvdl 			panic("lockmgr: draining against myself");
    876       1.1      fvdl 		/*
    877       1.1      fvdl 		 * If we are just polling, check to see if we will sleep.
    878       1.1      fvdl 		 */
    879      1.73      yamt 		if ((extflags & LK_NOWAIT) && (lkp->lk_flags &
    880      1.73      yamt 		     (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE |
    881      1.73      yamt 		     LK_SHARE_NONZERO | LK_WAIT_NONZERO))) {
    882       1.1      fvdl 			error = EBUSY;
    883       1.1      fvdl 			break;
    884       1.1      fvdl 		}
    885      1.78   hannken 		error = acquire(&lkp, &s, extflags, 1,
    886      1.73      yamt 		    LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE |
    887      1.98        ad 		    LK_SHARE_NONZERO | LK_WAIT_NONZERO,
    888      1.98        ad 		    RETURN_ADDRESS);
    889      1.23   thorpej 		if (error)
    890      1.23   thorpej 			break;
    891       1.1      fvdl 		lkp->lk_flags |= LK_DRAINING | LK_HAVE_EXCL;
    892      1.88     blymn 		SETHOLDER(lkp, pid, lid, cpu_num);
    893      1.50   thorpej #if defined(LOCKDEBUG)
    894      1.50   thorpej 		lkp->lk_lock_file = file;
    895      1.50   thorpej 		lkp->lk_lock_line = line;
    896      1.50   thorpej #endif
    897      1.21   thorpej 		HAVEIT(lkp);
    898       1.1      fvdl 		lkp->lk_exclusivecount = 1;
    899      1.15      fvdl 		/* XXX unlikely that we'd want this */
    900      1.15      fvdl 		if (extflags & LK_SETRECURSE)
    901      1.15      fvdl 			lkp->lk_recurselevel = 1;
    902      1.88     blymn 		COUNT(lkp, l, cpu_num, 1);
    903       1.1      fvdl 		break;
    904       1.1      fvdl 
    905       1.1      fvdl 	default:
    906      1.43   thorpej 		INTERLOCK_RELEASE(lkp, lkp->lk_flags, s);
    907       1.1      fvdl 		panic("lockmgr: unknown locktype request %d",
    908       1.1      fvdl 		    flags & LK_TYPE_MASK);
    909       1.1      fvdl 		/* NOTREACHED */
    910       1.1      fvdl 	}
    911      1.23   thorpej 	if ((lkp->lk_flags & (LK_WAITDRAIN|LK_SPIN)) == LK_WAITDRAIN &&
    912      1.23   thorpej 	    ((lkp->lk_flags &
    913      1.73      yamt 	      (LK_HAVE_EXCL | LK_WANT_EXCL | LK_WANT_UPGRADE |
    914      1.73      yamt 	      LK_SHARE_NONZERO | LK_WAIT_NONZERO)) == 0)) {
    915       1.1      fvdl 		lkp->lk_flags &= ~LK_WAITDRAIN;
    916      1.87  christos 		wakeup(&lkp->lk_flags);
    917       1.1      fvdl 	}
    918      1.32  sommerfe 	/*
    919      1.32  sommerfe 	 * Note that this panic will be a recursive panic, since
    920      1.32  sommerfe 	 * we only set lock_shutdown_noblock above if panicstr != NULL.
    921      1.32  sommerfe 	 */
    922      1.32  sommerfe 	if (error && lock_shutdown_noblock)
    923      1.32  sommerfe 		panic("lockmgr: deadlock (see previous panic)");
    924      1.86     perry 
    925      1.43   thorpej 	INTERLOCK_RELEASE(lkp, lkp->lk_flags, s);
    926       1.1      fvdl 	return (error);
    927       1.1      fvdl }
    928       1.1      fvdl 
    929       1.1      fvdl /*
    930      1.47  sommerfe  * For a recursive spinlock held one or more times by the current CPU,
    931      1.47  sommerfe  * release all N locks, and return N.
    932      1.47  sommerfe  * Intended for use in mi_switch() shortly before context switching.
    933      1.47  sommerfe  */
    934      1.47  sommerfe 
    935      1.47  sommerfe int
    936      1.50   thorpej #if defined(LOCKDEBUG)
    937      1.91     perry _spinlock_release_all(volatile struct lock *lkp, const char *file, int line)
    938      1.50   thorpej #else
    939      1.91     perry spinlock_release_all(volatile struct lock *lkp)
    940      1.50   thorpej #endif
    941      1.47  sommerfe {
    942      1.47  sommerfe 	int s, count;
    943      1.88     blymn 	cpuid_t cpu_num;
    944      1.86     perry 
    945      1.47  sommerfe 	KASSERT(lkp->lk_flags & LK_SPIN);
    946      1.86     perry 
    947      1.47  sommerfe 	INTERLOCK_ACQUIRE(lkp, LK_SPIN, s);
    948      1.47  sommerfe 
    949      1.88     blymn 	cpu_num = cpu_number();
    950      1.47  sommerfe 	count = lkp->lk_exclusivecount;
    951      1.86     perry 
    952      1.47  sommerfe 	if (count != 0) {
    953      1.86     perry #ifdef DIAGNOSTIC
    954      1.88     blymn 		if (WEHOLDIT(lkp, 0, 0, cpu_num) == 0) {
    955      1.47  sommerfe 			panic("spinlock_release_all: processor %lu, not "
    956      1.47  sommerfe 			    "exclusive lock holder %lu "
    957      1.88     blymn 			    "unlocking", (long)cpu_num, lkp->lk_cpu);
    958      1.47  sommerfe 		}
    959      1.47  sommerfe #endif
    960      1.47  sommerfe 		lkp->lk_recurselevel = 0;
    961      1.47  sommerfe 		lkp->lk_exclusivecount = 0;
    962      1.88     blymn 		COUNT_CPU(cpu_num, -count);
    963      1.47  sommerfe 		lkp->lk_flags &= ~LK_HAVE_EXCL;
    964      1.69   thorpej 		SETHOLDER(lkp, LK_NOPROC, 0, LK_NOCPU);
    965      1.50   thorpej #if defined(LOCKDEBUG)
    966      1.50   thorpej 		lkp->lk_unlock_file = file;
    967      1.50   thorpej 		lkp->lk_unlock_line = line;
    968      1.50   thorpej #endif
    969      1.47  sommerfe 		DONTHAVEIT(lkp);
    970      1.47  sommerfe 	}
    971      1.47  sommerfe #ifdef DIAGNOSTIC
    972      1.47  sommerfe 	else if (lkp->lk_sharecount != 0)
    973      1.47  sommerfe 		panic("spinlock_release_all: release of shared lock!");
    974      1.47  sommerfe 	else
    975      1.47  sommerfe 		panic("spinlock_release_all: release of unlocked lock!");
    976      1.47  sommerfe #endif
    977      1.86     perry 	INTERLOCK_RELEASE(lkp, LK_SPIN, s);
    978      1.47  sommerfe 
    979      1.47  sommerfe 	return (count);
    980      1.47  sommerfe }
    981      1.47  sommerfe 
    982      1.47  sommerfe /*
    983      1.47  sommerfe  * For a recursive spinlock held one or more times by the current CPU,
    984      1.47  sommerfe  * release all N locks, and return N.
    985      1.47  sommerfe  * Intended for use in mi_switch() right after resuming execution.
    986      1.47  sommerfe  */
    987      1.47  sommerfe 
    988      1.47  sommerfe void
    989      1.50   thorpej #if defined(LOCKDEBUG)
    990      1.91     perry _spinlock_acquire_count(volatile struct lock *lkp, int count,
    991      1.50   thorpej     const char *file, int line)
    992      1.50   thorpej #else
    993      1.91     perry spinlock_acquire_count(volatile struct lock *lkp, int count)
    994      1.50   thorpej #endif
    995      1.47  sommerfe {
    996      1.47  sommerfe 	int s, error;
    997      1.88     blymn 	cpuid_t cpu_num;
    998      1.86     perry 
    999      1.47  sommerfe 	KASSERT(lkp->lk_flags & LK_SPIN);
   1000      1.86     perry 
   1001      1.47  sommerfe 	INTERLOCK_ACQUIRE(lkp, LK_SPIN, s);
   1002      1.47  sommerfe 
   1003      1.88     blymn 	cpu_num = cpu_number();
   1004      1.47  sommerfe 
   1005      1.47  sommerfe #ifdef DIAGNOSTIC
   1006      1.88     blymn 	if (WEHOLDIT(lkp, LK_NOPROC, 0, cpu_num))
   1007      1.88     blymn 		panic("spinlock_acquire_count: processor %lu already holds lock", (long)cpu_num);
   1008      1.47  sommerfe #endif
   1009      1.47  sommerfe 	/*
   1010      1.47  sommerfe 	 * Try to acquire the want_exclusive flag.
   1011      1.47  sommerfe 	 */
   1012      1.98        ad 	error = acquire(&lkp, &s, LK_SPIN, 0, LK_HAVE_EXCL | LK_WANT_EXCL,
   1013      1.98        ad 	    RETURN_ADDRESS);
   1014      1.47  sommerfe 	lkp->lk_flags |= LK_WANT_EXCL;
   1015      1.47  sommerfe 	/*
   1016      1.47  sommerfe 	 * Wait for shared locks and upgrades to finish.
   1017      1.47  sommerfe 	 */
   1018      1.78   hannken 	error = acquire(&lkp, &s, LK_SPIN, 0,
   1019      1.98        ad 	    LK_HAVE_EXCL | LK_SHARE_NONZERO | LK_WANT_UPGRADE,
   1020      1.98        ad 	    RETURN_ADDRESS);
   1021      1.47  sommerfe 	lkp->lk_flags &= ~LK_WANT_EXCL;
   1022      1.47  sommerfe 	lkp->lk_flags |= LK_HAVE_EXCL;
   1023      1.88     blymn 	SETHOLDER(lkp, LK_NOPROC, 0, cpu_num);
   1024      1.50   thorpej #if defined(LOCKDEBUG)
   1025      1.50   thorpej 	lkp->lk_lock_file = file;
   1026      1.50   thorpej 	lkp->lk_lock_line = line;
   1027      1.50   thorpej #endif
   1028      1.47  sommerfe 	HAVEIT(lkp);
   1029      1.47  sommerfe 	if (lkp->lk_exclusivecount != 0)
   1030      1.47  sommerfe 		panic("lockmgr: non-zero exclusive count");
   1031      1.47  sommerfe 	lkp->lk_exclusivecount = count;
   1032      1.47  sommerfe 	lkp->lk_recurselevel = 1;
   1033      1.88     blymn 	COUNT_CPU(cpu_num, count);
   1034      1.47  sommerfe 
   1035      1.86     perry 	INTERLOCK_RELEASE(lkp, lkp->lk_flags, s);
   1036      1.47  sommerfe }
   1037      1.47  sommerfe 
   1038      1.47  sommerfe 
   1039      1.47  sommerfe 
   1040      1.47  sommerfe /*
   1041       1.1      fvdl  * Print out information about state of a lock. Used by VOP_PRINT
   1042       1.1      fvdl  * routines to display ststus about contained locks.
   1043       1.1      fvdl  */
   1044       1.2      fvdl void
   1045      1.91     perry lockmgr_printinfo(volatile struct lock *lkp)
   1046       1.1      fvdl {
   1047       1.1      fvdl 
   1048       1.1      fvdl 	if (lkp->lk_sharecount)
   1049       1.1      fvdl 		printf(" lock type %s: SHARED (count %d)", lkp->lk_wmesg,
   1050       1.1      fvdl 		    lkp->lk_sharecount);
   1051      1.19   thorpej 	else if (lkp->lk_flags & LK_HAVE_EXCL) {
   1052      1.19   thorpej 		printf(" lock type %s: EXCL (count %d) by ",
   1053      1.19   thorpej 		    lkp->lk_wmesg, lkp->lk_exclusivecount);
   1054      1.19   thorpej 		if (lkp->lk_flags & LK_SPIN)
   1055      1.19   thorpej 			printf("processor %lu", lkp->lk_cpu);
   1056      1.19   thorpej 		else
   1057      1.69   thorpej 			printf("pid %d.%d", lkp->lk_lockholder,
   1058      1.69   thorpej 			    lkp->lk_locklwp);
   1059      1.19   thorpej 	} else
   1060      1.19   thorpej 		printf(" not locked");
   1061      1.19   thorpej 	if ((lkp->lk_flags & LK_SPIN) == 0 && lkp->lk_waitcount > 0)
   1062       1.1      fvdl 		printf(" with %d pending", lkp->lk_waitcount);
   1063       1.1      fvdl }
   1064       1.1      fvdl 
   1065      1.21   thorpej #if defined(LOCKDEBUG) /* { */
   1066      1.91     perry _TAILQ_HEAD(, struct simplelock, volatile) simplelock_list =
   1067      1.21   thorpej     TAILQ_HEAD_INITIALIZER(simplelock_list);
   1068      1.21   thorpej 
   1069      1.21   thorpej #if defined(MULTIPROCESSOR) /* { */
   1070      1.21   thorpej struct simplelock simplelock_list_slock = SIMPLELOCK_INITIALIZER;
   1071      1.21   thorpej 
   1072      1.21   thorpej #define	SLOCK_LIST_LOCK()						\
   1073      1.29  sommerfe 	__cpu_simple_lock(&simplelock_list_slock.lock_data)
   1074      1.21   thorpej 
   1075      1.21   thorpej #define	SLOCK_LIST_UNLOCK()						\
   1076      1.29  sommerfe 	__cpu_simple_unlock(&simplelock_list_slock.lock_data)
   1077      1.21   thorpej 
   1078      1.21   thorpej #define	SLOCK_COUNT(x)							\
   1079      1.47  sommerfe 	curcpu()->ci_simple_locks += (x)
   1080      1.21   thorpej #else
   1081      1.21   thorpej u_long simple_locks;
   1082      1.21   thorpej 
   1083      1.21   thorpej #define	SLOCK_LIST_LOCK()	/* nothing */
   1084      1.21   thorpej 
   1085      1.21   thorpej #define	SLOCK_LIST_UNLOCK()	/* nothing */
   1086      1.21   thorpej 
   1087      1.21   thorpej #define	SLOCK_COUNT(x)		simple_locks += (x)
   1088      1.21   thorpej #endif /* MULTIPROCESSOR */ /* } */
   1089      1.21   thorpej 
   1090      1.26  sommerfe #ifdef MULTIPROCESSOR
   1091      1.75       wiz #define SLOCK_MP()		lock_printf("on CPU %ld\n", 		\
   1092      1.46   thorpej 				    (u_long) cpu_number())
   1093      1.26  sommerfe #else
   1094      1.26  sommerfe #define SLOCK_MP()		/* nothing */
   1095      1.26  sommerfe #endif
   1096      1.26  sommerfe 
   1097      1.21   thorpej #define	SLOCK_WHERE(str, alp, id, l)					\
   1098      1.21   thorpej do {									\
   1099      1.58       chs 	lock_printf("\n");						\
   1100      1.25   thorpej 	lock_printf(str);						\
   1101      1.33   thorpej 	lock_printf("lock: %p, currently at: %s:%d\n", (alp), (id), (l)); \
   1102      1.26  sommerfe 	SLOCK_MP();							\
   1103      1.21   thorpej 	if ((alp)->lock_file != NULL)					\
   1104      1.25   thorpej 		lock_printf("last locked: %s:%d\n", (alp)->lock_file,	\
   1105      1.21   thorpej 		    (alp)->lock_line);					\
   1106      1.21   thorpej 	if ((alp)->unlock_file != NULL)					\
   1107      1.25   thorpej 		lock_printf("last unlocked: %s:%d\n", (alp)->unlock_file, \
   1108      1.21   thorpej 		    (alp)->unlock_line);				\
   1109      1.58       chs 	SLOCK_TRACE()							\
   1110      1.21   thorpej 	SLOCK_DEBUGGER();						\
   1111      1.30   thorpej } while (/*CONSTCOND*/0)
   1112      1.12       chs 
   1113       1.1      fvdl /*
   1114       1.1      fvdl  * Simple lock functions so that the debugger can see from whence
   1115       1.1      fvdl  * they are being called.
   1116       1.1      fvdl  */
   1117       1.1      fvdl void
   1118      1.91     perry simple_lock_init(volatile struct simplelock *alp)
   1119       1.1      fvdl {
   1120      1.21   thorpej 
   1121      1.21   thorpej #if defined(MULTIPROCESSOR) /* { */
   1122      1.27   thorpej 	__cpu_simple_lock_init(&alp->lock_data);
   1123      1.21   thorpej #else
   1124      1.27   thorpej 	alp->lock_data = __SIMPLELOCK_UNLOCKED;
   1125      1.21   thorpej #endif /* } */
   1126       1.5       chs 	alp->lock_file = NULL;
   1127       1.5       chs 	alp->lock_line = 0;
   1128       1.5       chs 	alp->unlock_file = NULL;
   1129       1.5       chs 	alp->unlock_line = 0;
   1130      1.41   thorpej 	alp->lock_holder = LK_NOCPU;
   1131       1.1      fvdl }
   1132       1.1      fvdl 
   1133       1.1      fvdl void
   1134      1.91     perry _simple_lock(volatile struct simplelock *alp, const char *id, int l)
   1135       1.1      fvdl {
   1136      1.88     blymn 	cpuid_t cpu_num = cpu_number();
   1137      1.12       chs 	int s;
   1138      1.12       chs 
   1139      1.44   thorpej 	s = spllock();
   1140      1.21   thorpej 
   1141      1.21   thorpej 	/*
   1142      1.21   thorpej 	 * MULTIPROCESSOR case: This is `safe' since if it's not us, we
   1143      1.21   thorpej 	 * don't take any action, and just fall into the normal spin case.
   1144      1.21   thorpej 	 */
   1145      1.27   thorpej 	if (alp->lock_data == __SIMPLELOCK_LOCKED) {
   1146      1.21   thorpej #if defined(MULTIPROCESSOR) /* { */
   1147      1.88     blymn 		if (alp->lock_holder == cpu_num) {
   1148      1.21   thorpej 			SLOCK_WHERE("simple_lock: locking against myself\n",
   1149      1.21   thorpej 			    alp, id, l);
   1150      1.21   thorpej 			goto out;
   1151       1.1      fvdl 		}
   1152      1.21   thorpej #else
   1153      1.21   thorpej 		SLOCK_WHERE("simple_lock: lock held\n", alp, id, l);
   1154      1.21   thorpej 		goto out;
   1155      1.21   thorpej #endif /* MULTIPROCESSOR */ /* } */
   1156       1.1      fvdl 	}
   1157      1.21   thorpej 
   1158      1.21   thorpej #if defined(MULTIPROCESSOR) /* { */
   1159      1.21   thorpej 	/* Acquire the lock before modifying any fields. */
   1160      1.70        pk 	splx(s);
   1161      1.27   thorpej 	__cpu_simple_lock(&alp->lock_data);
   1162      1.70        pk 	s = spllock();
   1163      1.21   thorpej #else
   1164      1.27   thorpej 	alp->lock_data = __SIMPLELOCK_LOCKED;
   1165      1.21   thorpej #endif /* } */
   1166      1.21   thorpej 
   1167      1.45  sommerfe 	if (alp->lock_holder != LK_NOCPU) {
   1168      1.45  sommerfe 		SLOCK_WHERE("simple_lock: uninitialized lock\n",
   1169      1.45  sommerfe 		    alp, id, l);
   1170      1.45  sommerfe 	}
   1171       1.5       chs 	alp->lock_file = id;
   1172       1.5       chs 	alp->lock_line = l;
   1173      1.88     blymn 	alp->lock_holder = cpu_num;
   1174      1.21   thorpej 
   1175      1.21   thorpej 	SLOCK_LIST_LOCK();
   1176      1.87  christos 	TAILQ_INSERT_TAIL(&simplelock_list, alp, list);
   1177      1.21   thorpej 	SLOCK_LIST_UNLOCK();
   1178      1.21   thorpej 
   1179      1.21   thorpej 	SLOCK_COUNT(1);
   1180      1.21   thorpej 
   1181      1.21   thorpej  out:
   1182      1.18       chs 	splx(s);
   1183      1.38   thorpej }
   1184      1.38   thorpej 
   1185      1.38   thorpej int
   1186      1.91     perry _simple_lock_held(volatile struct simplelock *alp)
   1187      1.38   thorpej {
   1188      1.54     enami #if defined(MULTIPROCESSOR) || defined(DIAGNOSTIC)
   1189      1.88     blymn 	cpuid_t cpu_num = cpu_number();
   1190      1.54     enami #endif
   1191      1.38   thorpej 	int s, locked = 0;
   1192      1.38   thorpej 
   1193      1.44   thorpej 	s = spllock();
   1194      1.42   thorpej 
   1195      1.42   thorpej #if defined(MULTIPROCESSOR)
   1196      1.38   thorpej 	if (__cpu_simple_lock_try(&alp->lock_data) == 0)
   1197      1.88     blymn 		locked = (alp->lock_holder == cpu_num);
   1198      1.38   thorpej 	else
   1199      1.38   thorpej 		__cpu_simple_unlock(&alp->lock_data);
   1200      1.38   thorpej #else
   1201      1.42   thorpej 	if (alp->lock_data == __SIMPLELOCK_LOCKED) {
   1202      1.42   thorpej 		locked = 1;
   1203      1.88     blymn 		KASSERT(alp->lock_holder == cpu_num);
   1204      1.42   thorpej 	}
   1205      1.42   thorpej #endif
   1206      1.38   thorpej 
   1207      1.38   thorpej 	splx(s);
   1208      1.42   thorpej 
   1209      1.38   thorpej 	return (locked);
   1210       1.1      fvdl }
   1211       1.1      fvdl 
   1212       1.1      fvdl int
   1213      1.91     perry _simple_lock_try(volatile struct simplelock *alp, const char *id, int l)
   1214       1.1      fvdl {
   1215      1.88     blymn 	cpuid_t cpu_num = cpu_number();
   1216      1.21   thorpej 	int s, rv = 0;
   1217       1.1      fvdl 
   1218      1.44   thorpej 	s = spllock();
   1219      1.21   thorpej 
   1220      1.21   thorpej 	/*
   1221      1.21   thorpej 	 * MULTIPROCESSOR case: This is `safe' since if it's not us, we
   1222      1.21   thorpej 	 * don't take any action.
   1223      1.21   thorpej 	 */
   1224      1.21   thorpej #if defined(MULTIPROCESSOR) /* { */
   1225      1.27   thorpej 	if ((rv = __cpu_simple_lock_try(&alp->lock_data)) == 0) {
   1226      1.88     blymn 		if (alp->lock_holder == cpu_num)
   1227      1.21   thorpej 			SLOCK_WHERE("simple_lock_try: locking against myself\n",
   1228      1.26  sommerfe 			    alp, id, l);
   1229      1.21   thorpej 		goto out;
   1230      1.21   thorpej 	}
   1231      1.21   thorpej #else
   1232      1.27   thorpej 	if (alp->lock_data == __SIMPLELOCK_LOCKED) {
   1233      1.21   thorpej 		SLOCK_WHERE("simple_lock_try: lock held\n", alp, id, l);
   1234      1.21   thorpej 		goto out;
   1235      1.18       chs 	}
   1236      1.27   thorpej 	alp->lock_data = __SIMPLELOCK_LOCKED;
   1237      1.21   thorpej #endif /* MULTIPROCESSOR */ /* } */
   1238      1.21   thorpej 
   1239      1.21   thorpej 	/*
   1240      1.21   thorpej 	 * At this point, we have acquired the lock.
   1241      1.21   thorpej 	 */
   1242      1.21   thorpej 
   1243      1.21   thorpej 	rv = 1;
   1244      1.18       chs 
   1245       1.5       chs 	alp->lock_file = id;
   1246       1.5       chs 	alp->lock_line = l;
   1247      1.88     blymn 	alp->lock_holder = cpu_num;
   1248      1.21   thorpej 
   1249      1.21   thorpej 	SLOCK_LIST_LOCK();
   1250      1.87  christos 	TAILQ_INSERT_TAIL(&simplelock_list, alp, list);
   1251      1.21   thorpej 	SLOCK_LIST_UNLOCK();
   1252      1.21   thorpej 
   1253      1.21   thorpej 	SLOCK_COUNT(1);
   1254      1.21   thorpej 
   1255      1.21   thorpej  out:
   1256      1.12       chs 	splx(s);
   1257      1.21   thorpej 	return (rv);
   1258       1.1      fvdl }
   1259       1.1      fvdl 
   1260       1.1      fvdl void
   1261      1.91     perry _simple_unlock(volatile struct simplelock *alp, const char *id, int l)
   1262       1.1      fvdl {
   1263      1.12       chs 	int s;
   1264       1.1      fvdl 
   1265      1.44   thorpej 	s = spllock();
   1266      1.21   thorpej 
   1267      1.21   thorpej 	/*
   1268      1.21   thorpej 	 * MULTIPROCESSOR case: This is `safe' because we think we hold
   1269      1.21   thorpej 	 * the lock, and if we don't, we don't take any action.
   1270      1.21   thorpej 	 */
   1271      1.27   thorpej 	if (alp->lock_data == __SIMPLELOCK_UNLOCKED) {
   1272      1.21   thorpej 		SLOCK_WHERE("simple_unlock: lock not held\n",
   1273      1.21   thorpej 		    alp, id, l);
   1274      1.21   thorpej 		goto out;
   1275      1.21   thorpej 	}
   1276      1.21   thorpej 
   1277      1.21   thorpej 	SLOCK_LIST_LOCK();
   1278      1.21   thorpej 	TAILQ_REMOVE(&simplelock_list, alp, list);
   1279      1.21   thorpej 	SLOCK_LIST_UNLOCK();
   1280      1.21   thorpej 
   1281      1.21   thorpej 	SLOCK_COUNT(-1);
   1282      1.21   thorpej 
   1283      1.21   thorpej 	alp->list.tqe_next = NULL;	/* sanity */
   1284      1.21   thorpej 	alp->list.tqe_prev = NULL;	/* sanity */
   1285      1.21   thorpej 
   1286       1.5       chs 	alp->unlock_file = id;
   1287       1.5       chs 	alp->unlock_line = l;
   1288      1.21   thorpej 
   1289      1.21   thorpej #if defined(MULTIPROCESSOR) /* { */
   1290      1.26  sommerfe 	alp->lock_holder = LK_NOCPU;
   1291      1.21   thorpej 	/* Now that we've modified all fields, release the lock. */
   1292      1.27   thorpej 	__cpu_simple_unlock(&alp->lock_data);
   1293      1.21   thorpej #else
   1294      1.27   thorpej 	alp->lock_data = __SIMPLELOCK_UNLOCKED;
   1295      1.41   thorpej 	KASSERT(alp->lock_holder == cpu_number());
   1296      1.41   thorpej 	alp->lock_holder = LK_NOCPU;
   1297      1.21   thorpej #endif /* } */
   1298      1.21   thorpej 
   1299      1.21   thorpej  out:
   1300      1.18       chs 	splx(s);
   1301      1.12       chs }
   1302      1.12       chs 
   1303      1.12       chs void
   1304      1.33   thorpej simple_lock_dump(void)
   1305      1.12       chs {
   1306      1.91     perry 	volatile struct simplelock *alp;
   1307      1.12       chs 	int s;
   1308      1.12       chs 
   1309      1.44   thorpej 	s = spllock();
   1310      1.21   thorpej 	SLOCK_LIST_LOCK();
   1311      1.25   thorpej 	lock_printf("all simple locks:\n");
   1312      1.58       chs 	TAILQ_FOREACH(alp, &simplelock_list, list) {
   1313      1.25   thorpej 		lock_printf("%p CPU %lu %s:%d\n", alp, alp->lock_holder,
   1314      1.21   thorpej 		    alp->lock_file, alp->lock_line);
   1315      1.12       chs 	}
   1316      1.21   thorpej 	SLOCK_LIST_UNLOCK();
   1317      1.12       chs 	splx(s);
   1318      1.12       chs }
   1319      1.12       chs 
   1320      1.12       chs void
   1321      1.33   thorpej simple_lock_freecheck(void *start, void *end)
   1322      1.12       chs {
   1323      1.91     perry 	volatile struct simplelock *alp;
   1324      1.12       chs 	int s;
   1325      1.12       chs 
   1326      1.44   thorpej 	s = spllock();
   1327      1.21   thorpej 	SLOCK_LIST_LOCK();
   1328      1.58       chs 	TAILQ_FOREACH(alp, &simplelock_list, list) {
   1329      1.91     perry 		if ((volatile void *)alp >= start &&
   1330      1.91     perry 		    (volatile void *)alp < end) {
   1331      1.25   thorpej 			lock_printf("freeing simple_lock %p CPU %lu %s:%d\n",
   1332      1.34   thorpej 			    alp, alp->lock_holder, alp->lock_file,
   1333      1.34   thorpej 			    alp->lock_line);
   1334      1.34   thorpej 			SLOCK_DEBUGGER();
   1335      1.34   thorpej 		}
   1336      1.34   thorpej 	}
   1337      1.34   thorpej 	SLOCK_LIST_UNLOCK();
   1338      1.34   thorpej 	splx(s);
   1339      1.34   thorpej }
   1340      1.34   thorpej 
   1341      1.55   thorpej /*
   1342      1.55   thorpej  * We must be holding exactly one lock: the sched_lock.
   1343      1.55   thorpej  */
   1344      1.55   thorpej 
   1345      1.34   thorpej void
   1346      1.34   thorpej simple_lock_switchcheck(void)
   1347      1.34   thorpej {
   1348      1.55   thorpej 
   1349      1.55   thorpej 	simple_lock_only_held(&sched_lock, "switching");
   1350      1.55   thorpej }
   1351      1.55   thorpej 
   1352      1.93       erh /*
   1353      1.93       erh  * Drop into the debugger if lp isn't the only lock held.
   1354      1.93       erh  * lp may be NULL.
   1355      1.93       erh  */
   1356      1.55   thorpej void
   1357      1.55   thorpej simple_lock_only_held(volatile struct simplelock *lp, const char *where)
   1358      1.55   thorpej {
   1359      1.91     perry 	volatile struct simplelock *alp;
   1360      1.88     blymn 	cpuid_t cpu_num = cpu_number();
   1361      1.34   thorpej 	int s;
   1362      1.34   thorpej 
   1363      1.55   thorpej 	if (lp) {
   1364      1.55   thorpej 		LOCK_ASSERT(simple_lock_held(lp));
   1365      1.55   thorpej 	}
   1366      1.44   thorpej 	s = spllock();
   1367      1.34   thorpej 	SLOCK_LIST_LOCK();
   1368      1.58       chs 	TAILQ_FOREACH(alp, &simplelock_list, list) {
   1369      1.55   thorpej 		if (alp == lp)
   1370      1.42   thorpej 			continue;
   1371      1.88     blymn 		if (alp->lock_holder == cpu_num)
   1372      1.55   thorpej 			break;
   1373      1.12       chs 	}
   1374      1.21   thorpej 	SLOCK_LIST_UNLOCK();
   1375      1.12       chs 	splx(s);
   1376      1.55   thorpej 
   1377      1.55   thorpej 	if (alp != NULL) {
   1378      1.58       chs 		lock_printf("\n%s with held simple_lock %p "
   1379      1.55   thorpej 		    "CPU %lu %s:%d\n",
   1380      1.55   thorpej 		    where, alp, alp->lock_holder, alp->lock_file,
   1381      1.55   thorpej 		    alp->lock_line);
   1382      1.58       chs 		SLOCK_TRACE();
   1383      1.55   thorpej 		SLOCK_DEBUGGER();
   1384      1.55   thorpej 	}
   1385       1.1      fvdl }
   1386      1.94       erh 
   1387      1.94       erh /*
   1388      1.94       erh  * Set to 1 by simple_lock_assert_*().
   1389      1.94       erh  * Can be cleared from ddb to avoid a panic.
   1390      1.94       erh  */
   1391      1.94       erh int slock_assert_will_panic;
   1392      1.94       erh 
   1393      1.94       erh /*
   1394      1.94       erh  * If the lock isn't held, print a traceback, optionally drop into the
   1395      1.94       erh  *  debugger, then panic.
   1396      1.94       erh  * The panic can be avoided by clearing slock_assert_with_panic from the
   1397      1.94       erh  *  debugger.
   1398      1.94       erh  */
   1399      1.94       erh void
   1400      1.94       erh _simple_lock_assert_locked(volatile struct simplelock *alp,
   1401      1.94       erh     const char *lockname, const char *id, int l)
   1402      1.94       erh {
   1403      1.94       erh 	if (simple_lock_held(alp) == 0) {
   1404      1.94       erh 		slock_assert_will_panic = 1;
   1405      1.94       erh 		lock_printf("%s lock not held\n", lockname);
   1406      1.94       erh 		SLOCK_WHERE("lock not held", alp, id, l);
   1407      1.94       erh 		if (slock_assert_will_panic)
   1408      1.94       erh 			panic("%s: not locked", lockname);
   1409      1.94       erh 	}
   1410      1.94       erh }
   1411      1.94       erh 
   1412      1.94       erh void
   1413      1.94       erh _simple_lock_assert_unlocked(volatile struct simplelock *alp,
   1414      1.94       erh     const char *lockname, const char *id, int l)
   1415      1.94       erh {
   1416      1.94       erh 	if (simple_lock_held(alp)) {
   1417      1.94       erh 		slock_assert_will_panic = 1;
   1418      1.94       erh 		lock_printf("%s lock held\n", lockname);
   1419      1.94       erh 		SLOCK_WHERE("lock held", alp, id, l);
   1420      1.94       erh 		if (slock_assert_will_panic)
   1421      1.94       erh 			panic("%s: locked", lockname);
   1422      1.94       erh 	}
   1423      1.94       erh }
   1424      1.94       erh 
   1425      1.96      yamt void
   1426      1.96      yamt assert_sleepable(struct simplelock *interlock, const char *msg)
   1427      1.96      yamt {
   1428      1.96      yamt 
   1429      1.97      yamt 	if (curlwp == NULL) {
   1430      1.97      yamt 		panic("assert_sleepable: NULL curlwp");
   1431      1.97      yamt 	}
   1432      1.96      yamt 	simple_lock_only_held(interlock, msg);
   1433      1.96      yamt }
   1434      1.96      yamt 
   1435      1.21   thorpej #endif /* LOCKDEBUG */ /* } */
   1436      1.62   thorpej 
   1437      1.62   thorpej #if defined(MULTIPROCESSOR)
   1438      1.62   thorpej /*
   1439      1.62   thorpej  * Functions for manipulating the kernel_lock.  We put them here
   1440      1.62   thorpej  * so that they show up in profiles.
   1441      1.62   thorpej  */
   1442      1.62   thorpej 
   1443      1.62   thorpej 
   1444      1.62   thorpej void
   1445      1.62   thorpej _kernel_lock_init(void)
   1446      1.62   thorpej {
   1447      1.62   thorpej 
   1448  1.99.2.1        ad 	mutex_init(&kernel_mutex, MUTEX_SPIN, IPL_BIGLOCK);
   1449      1.62   thorpej }
   1450      1.62   thorpej 
   1451      1.62   thorpej /*
   1452      1.62   thorpej  * Acquire/release the kernel lock.  Intended for use in the scheduler
   1453      1.62   thorpej  * and the lower half of the kernel.
   1454      1.62   thorpej  */
   1455      1.62   thorpej void
   1456      1.62   thorpej _kernel_lock(int flag)
   1457      1.62   thorpej {
   1458      1.85      yamt 	struct cpu_info *ci = curcpu();
   1459      1.62   thorpej 
   1460      1.62   thorpej 	SCHED_ASSERT_UNLOCKED();
   1461      1.85      yamt 
   1462      1.85      yamt 	if (ci->ci_data.cpu_biglock_count > 0) {
   1463  1.99.2.1        ad 		LOCK_ASSERT(mutex_owned(&kernel_mutex));
   1464      1.85      yamt 		ci->ci_data.cpu_biglock_count++;
   1465      1.85      yamt 	} else {
   1466  1.99.2.1        ad 		mutex_enter(&kernel_mutex);
   1467      1.85      yamt 		ci->ci_data.cpu_biglock_count++;
   1468  1.99.2.1        ad 		splx(kernel_mutex.mtx_oldspl);
   1469      1.85      yamt 	}
   1470      1.62   thorpej }
   1471      1.62   thorpej 
   1472      1.62   thorpej void
   1473      1.62   thorpej _kernel_unlock(void)
   1474      1.62   thorpej {
   1475      1.85      yamt 	struct cpu_info *ci = curcpu();
   1476      1.85      yamt 	int s;
   1477      1.85      yamt 
   1478      1.85      yamt 	KASSERT(ci->ci_data.cpu_biglock_count > 0);
   1479      1.62   thorpej 
   1480  1.99.2.1        ad 	s = splraiseipl(kernel_mutex.mtx_minspl);
   1481  1.99.2.1        ad 	if ((--ci->ci_data.cpu_biglock_count) == 0) {
   1482  1.99.2.1        ad 		kernel_mutex.mtx_oldspl = s;
   1483  1.99.2.1        ad 		mutex_exit(&kernel_mutex);
   1484  1.99.2.1        ad 	} else
   1485  1.99.2.1        ad 		splx(s);
   1486      1.62   thorpej }
   1487      1.62   thorpej 
   1488      1.62   thorpej /*
   1489      1.62   thorpej  * Acquire/release the kernel_lock on behalf of a process.  Intended for
   1490      1.62   thorpej  * use in the top half of the kernel.
   1491      1.62   thorpej  */
   1492      1.62   thorpej void
   1493      1.69   thorpej _kernel_proc_lock(struct lwp *l)
   1494      1.62   thorpej {
   1495      1.62   thorpej 
   1496      1.62   thorpej 	SCHED_ASSERT_UNLOCKED();
   1497      1.85      yamt 	_kernel_lock(0);
   1498      1.62   thorpej }
   1499      1.62   thorpej 
   1500      1.62   thorpej void
   1501      1.69   thorpej _kernel_proc_unlock(struct lwp *l)
   1502      1.62   thorpej {
   1503      1.62   thorpej 
   1504      1.85      yamt 	_kernel_unlock();
   1505      1.62   thorpej }
   1506      1.77      yamt 
   1507      1.77      yamt int
   1508      1.77      yamt _kernel_lock_release_all()
   1509      1.77      yamt {
   1510      1.85      yamt 	struct cpu_info *ci = curcpu();
   1511      1.77      yamt 	int hold_count;
   1512      1.77      yamt 
   1513      1.85      yamt 	hold_count = ci->ci_data.cpu_biglock_count;
   1514      1.85      yamt 
   1515      1.85      yamt 	if (hold_count) {
   1516  1.99.2.1        ad 		kernel_mutex.mtx_oldspl = splraiseipl(kernel_mutex.mtx_minspl);
   1517      1.85      yamt 		ci->ci_data.cpu_biglock_count = 0;
   1518  1.99.2.1        ad 		mutex_exit(&kernel_mutex);
   1519      1.85      yamt 	}
   1520      1.77      yamt 
   1521      1.77      yamt 	return hold_count;
   1522      1.77      yamt }
   1523      1.77      yamt 
   1524      1.77      yamt void
   1525      1.77      yamt _kernel_lock_acquire_count(int hold_count)
   1526      1.77      yamt {
   1527      1.77      yamt 
   1528      1.85      yamt 	KASSERT(curcpu()->ci_data.cpu_biglock_count == 0);
   1529      1.85      yamt 
   1530      1.85      yamt 	if (hold_count != 0) {
   1531      1.85      yamt 		struct cpu_info *ci = curcpu();
   1532      1.85      yamt 
   1533  1.99.2.1        ad 		mutex_enter(&kernel_mutex);
   1534      1.85      yamt 		ci->ci_data.cpu_biglock_count = hold_count;
   1535  1.99.2.1        ad 		splx(kernel_mutex.mtx_oldspl);
   1536      1.85      yamt 	}
   1537      1.77      yamt }
   1538      1.84      yamt #if defined(DEBUG)
   1539      1.84      yamt void
   1540      1.84      yamt _kernel_lock_assert_locked()
   1541      1.84      yamt {
   1542  1.99.2.1        ad 
   1543  1.99.2.1        ad 	LOCK_ASSERT(mutex_owned(&kernel_mutex));
   1544      1.84      yamt }
   1545      1.84      yamt #endif
   1546      1.94       erh 
   1547      1.99        ad int
   1548      1.99        ad lock_owner_onproc(uintptr_t owner)
   1549      1.99        ad {
   1550      1.99        ad 	CPU_INFO_ITERATOR cii;
   1551      1.99        ad 	struct cpu_info *ci;
   1552      1.99        ad 
   1553      1.99        ad 	for (CPU_INFO_FOREACH(cii, ci))
   1554      1.99        ad 		if (owner == (uintptr_t)ci || owner == (uintptr_t)ci->ci_curlwp)
   1555      1.99        ad 			return (1);
   1556      1.99        ad 
   1557      1.99        ad 	return (0);
   1558      1.99        ad }
   1559      1.99        ad 
   1560      1.99        ad #else	/* MULTIPROCESSOR */
   1561      1.99        ad 
   1562      1.99        ad int
   1563      1.99        ad lock_owner_onproc(uintptr_t owner)
   1564      1.99        ad {
   1565      1.99        ad 
   1566      1.99        ad 	return 0;
   1567      1.99        ad }
   1568      1.99        ad 
   1569      1.62   thorpej #endif /* MULTIPROCESSOR */
   1570