]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/subr_lock.c
This commit was generated by cvs2svn to compensate for changes in r157191,
[FreeBSD/FreeBSD.git] / sys / kern / subr_lock.c
1 /*-
2  * Copyright (c) 2006 John Baldwin <jhb@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the author nor the names of any co-contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 /*
31  * This module holds the global variables and functions used to maintain
32  * lock_object structures.
33  */
34
35 #include <sys/cdefs.h>
36 __FBSDID("$FreeBSD$");
37
38 #include "opt_ddb.h"
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/ktr.h>
43 #include <sys/linker_set.h>
44 #include <sys/lock.h>
45
46 #ifdef DDB
47 #include <ddb/ddb.h>
48 #endif
49
50 CTASSERT(LOCK_CLASS_MAX == 15);
51
52 struct lock_class *lock_classes[LOCK_CLASS_MAX + 1] = {
53         &lock_class_mtx_spin,
54         &lock_class_mtx_sleep,
55         &lock_class_sx,
56         &lock_class_rw,
57 };
58
59 void
60 lock_init(struct lock_object *lock, struct lock_class *class, const char *name,
61     const char *type, int flags)
62 {
63         int i;
64
65         /* Check for double-init and zero object. */
66         KASSERT(!lock_initalized(lock), ("lock \"%s\" %p already initialized",
67             name, lock));
68
69         /* Look up lock class to find its index. */
70         for (i = 0; i < LOCK_CLASS_MAX; i++)
71                 if (lock_classes[i] == class) {
72                         lock->lo_flags = i << LO_CLASSSHIFT;
73                         break;
74                 }
75         KASSERT(i < LOCK_CLASS_MAX, ("unknown lock class %p", class));
76
77         /* Initialize the lock object. */
78         lock->lo_name = name;
79         lock->lo_type = type != NULL ? type : name;
80         lock->lo_flags |= flags | LO_INITIALIZED;
81         LOCK_LOG_INIT(lock, 0);
82         WITNESS_INIT(lock);
83 }
84
85 void
86 lock_destroy(struct lock_object *lock)
87 {
88
89         KASSERT(lock_initalized(lock), ("lock %p is not initialized", lock));
90         WITNESS_DESTROY(lock);
91         LOCK_LOG_DESTROY(lock, 0);
92         lock->lo_flags &= ~LO_INITIALIZED;
93 }
94
95 #ifdef DDB
96 DB_SHOW_COMMAND(lock, db_show_lock)
97 {
98         struct lock_object *lock;
99         struct lock_class *class;
100
101         if (!have_addr)
102                 return;
103         lock = (struct lock_object *)addr;
104         if (LO_CLASSINDEX(lock) > LOCK_CLASS_MAX) {
105                 db_printf("Unknown lock class: %d\n", LO_CLASSINDEX(lock));
106                 return;
107         }
108         class = LOCK_CLASS(lock);
109         db_printf(" class: %s\n", class->lc_name);
110         db_printf(" name: %s\n", lock->lo_name);
111         if (lock->lo_type && lock->lo_type != lock->lo_name)
112                 db_printf(" type: %s\n", lock->lo_type);
113         class->lc_ddb_show(lock);
114 }
115 #endif