Deleted Added
full compact
subr_witness.c (99072) subr_witness.c (99416)
1/*-
2 * Copyright (c) 1998 Berkeley Software Design, Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 13 unchanged lines hidden (view full) ---

22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * from BSDI $Id: mutex_witness.c,v 1.1.2.20 2000/04/27 03:10:27 cp Exp $
29 * and BSDI $Id: synch_machdep.c,v 2.3.2.39 2000/04/27 03:10:25 cp Exp $
1/*-
2 * Copyright (c) 1998 Berkeley Software Design, Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

--- 13 unchanged lines hidden (view full) ---

22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * from BSDI $Id: mutex_witness.c,v 1.1.2.20 2000/04/27 03:10:27 cp Exp $
29 * and BSDI $Id: synch_machdep.c,v 2.3.2.39 2000/04/27 03:10:25 cp Exp $
30 * $FreeBSD: head/sys/kern/subr_witness.c 99072 2002-06-29 17:26:22Z julian $
30 * $FreeBSD: head/sys/kern/subr_witness.c 99416 2002-07-04 22:07:37Z alc $
31 */
32
33/*
34 * Implementation of the `witness' lock verifier. Originally implemented for
35 * mutexes in BSD/OS. Extended to handle generic lock objects and lock
36 * classes in FreeBSD.
37 */
38

--- 175 unchanged lines hidden (view full) ---

214 { "ithread table lock", &lock_class_mtx_spin },
215 { "sched lock", &lock_class_mtx_spin },
216 { "callout", &lock_class_mtx_spin },
217 /*
218 * leaf locks
219 */
220 { "allpmaps", &lock_class_mtx_spin },
221 { "vm page buckets mutex", &lock_class_mtx_spin },
31 */
32
33/*
34 * Implementation of the `witness' lock verifier. Originally implemented for
35 * mutexes in BSD/OS. Extended to handle generic lock objects and lock
36 * classes in FreeBSD.
37 */
38

--- 175 unchanged lines hidden (view full) ---

214 { "ithread table lock", &lock_class_mtx_spin },
215 { "sched lock", &lock_class_mtx_spin },
216 { "callout", &lock_class_mtx_spin },
217 /*
218 * leaf locks
219 */
220 { "allpmaps", &lock_class_mtx_spin },
221 { "vm page buckets mutex", &lock_class_mtx_spin },
222 { "vm page queue free mutex", &lock_class_mtx_spin },
222 { "icu", &lock_class_mtx_spin },
223#ifdef SMP
224 { "smp rendezvous", &lock_class_mtx_spin },
225#endif
226 { "clk", &lock_class_mtx_spin },
227 { "mutex profiling lock", &lock_class_mtx_spin },
228 { "zombie_thread_lock", &lock_class_mtx_spin },
229 { NULL, NULL },

--- 1260 unchanged lines hidden ---
223 { "icu", &lock_class_mtx_spin },
224#ifdef SMP
225 { "smp rendezvous", &lock_class_mtx_spin },
226#endif
227 { "clk", &lock_class_mtx_spin },
228 { "mutex profiling lock", &lock_class_mtx_spin },
229 { "zombie_thread_lock", &lock_class_mtx_spin },
230 { NULL, NULL },

--- 1260 unchanged lines hidden ---