aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_witness.c
Commit message (Expand)AuthorAgeFilesLines
* Correct an assertion in the code to traverse the list of locks to find anJohn Baldwin2002-11-111-1/+1
* Catch up with the removal of the vm page buckets spin mutex.Alan Cox2002-11-021-1/+0
* #unifdef the code for checking blessed lock collisions until we need it.Poul-Henning Kamp2002-10-201-0/+13
* Register the machine check private state spinlock on ia64.Peter Wemm2002-10-121-0/+3
* Be consistent about "static" functions: if the function is markedPoul-Henning Kamp2002-09-281-1/+1
* - Tell witness about ALQ's spin lock.Jeff Roberson2002-09-221-0/+1
* Make this driver work a whole lot better.Jake Burkholder2002-09-081-0/+1
* Add WITNESS_FILE() and WITNESS_LINE(), which allow users of witnessIan Dowse2002-08-261-0/+22
* Silence compiler warnings when DDB is not defined.Mark Peek2002-07-151-3/+7
* Revive backed out pmap related changes from Feb 2002. The highlights are:Peter Wemm2002-07-121-0/+3
* o Resurrect vm_page_lock_queues(), vm_page_unlock_queues(), and the freeAlan Cox2002-07-041-0/+1
* Part 1 of KSE-IIIJulian Elischer2002-06-291-0/+1
* Change the all locks list from a STAILQ to a TAILQ. This bloats structJohn Baldwin2002-06-061-6/+6
* Handle "dead" witnesses better in the situation of several short term locksJohn Baldwin2002-06-061-13/+11
* In witness_unlock(), when updating a lock list entry bucket, decrement theJohn Baldwin2002-05-201-2/+2
* - Allow witness_sleep() to be called when witness hasn't been initializedJohn Baldwin2002-05-201-16/+8
* Make funsetown() take a 'struct sigio **' so that the locking canAlfred Perlstein2002-05-061-0/+1
* o Convert the vm_page buckets mutex to a spin lock. (This resolvesAlan Cox2002-04-301-0/+1
* Whitespace bogon.John Baldwin2002-04-271-1/+1
* Insert a semi-colon between label 'skip:' and the closing braceMarcel Moolenaar2002-04-271-0/+1
* Add the mutex profiling lock to the witness list. This hopefully unbreaksDag-Erling Smørgrav2002-04-251-0/+1
* - Merge the pgrpsess_lock and proctree_lock sx locks into one proctree_lockJohn Baldwin2002-04-161-1/+0
* Display the recursion count in the lock_instance in the show locksJohn Baldwin2002-04-101-1/+2
* Cosmetic fixup in output of lock types in show locks output.John Baldwin2002-04-101-1/+1
* Add a new char * pointer lo_type to struct lock_object that is used toJohn Baldwin2002-04-041-19/+28
* Enforce an implicit lock order of sleepable locks before non-sleepableJohn Baldwin2002-04-021-1/+12
* Explicitly document how we implicitly enforce the lock order of sleepJohn Baldwin2002-04-021-0/+5
* Add a new mtx_init option "MTX_DUPOK" which allows duplicate acquires of locksJeff Roberson2002-03-271-19/+1
* Remove last two abuses of cpu_critical_{enter,exit} in the MI code.Warner Losh2002-03-211-3/+3
* - Use a MI critical section in witness_sleep() and witness_list() as theyJohn Baldwin2002-03-081-6/+9
* Back out all the pmap related stuff I've touched over the last few days.Peter Wemm2002-02-271-3/+0
* Work-in-progress commit syncing up pmap cleanups that I have been workingPeter Wemm2002-02-251-0/+3
* Lock struct pgrp, session and sigio.Seigo Tanimura2002-02-231-0/+4
* Pre-KSE/M3 commit.Julian Elischer2002-02-071-2/+4
* Fixes for alpha pmap on SMP machines:John Baldwin2002-02-061-0/+1
* Change the preemption code for software interrupt thread schedules andJohn Baldwin2002-01-051-14/+2
* Remove brain damaged code in witness_lock(). We could have easilyJohn Baldwin2002-01-051-16/+3
* Introduce a standard name for the lock protecting an interrupt controllerJohn Baldwin2001-12-201-3/+1
* Modify the critical section API as follows:John Baldwin2001-12-181-7/+6
* Repeat after me -- "Use of ANSI string concatenation can be bad."David E. O'Brien2001-12-101-13/+13
* Add a couple of returns to making recovering from a failed witness_assert()John Baldwin2001-11-151-2/+6
* Replace 'curproc' with 'td->td_proc'.John Baldwin2001-10-081-7/+8
* Move the ap boot spin lock earlier in the lock order before the sio(4)John Baldwin2001-10-011-2/+4
* Remove unneeded proc variables and fix comments.John Baldwin2001-09-211-11/+6
* KSE Milestone 2Julian Elischer2001-09-121-25/+34
* Style nits:John Baldwin2001-08-241-35/+11
* Add witness_upgrade() and witness_downgrade() for handling upgrades andJohn Baldwin2001-08-231-0/+71
* Convert some KASSERT()'s into if (foo) panic() because they are testingJohn Baldwin2001-08-231-10/+12
* Make witness compile w/o DDB.John Baldwin2001-08-101-1/+7
* - Fix panicstr checks to explicitly check against NULL.John Baldwin2001-07-311-8/+8