| Commit message (Expand) | Author | Age | Files | Lines |
* | Fixup r240424: On entering KDB backends, the hijacked thread to run | Attilio Rao | 2012-12-22 | 1 | -4/+5 |
* | Merge r242395,242483 from mutex implementation: | Attilio Rao | 2012-11-03 | 1 | -23/+74 |
* | Remove all the checks on curthread != NULL with the exception of some MD | Attilio Rao | 2012-09-13 | 1 | -2/+0 |
* | Improve check coverage about idle threads. | Attilio Rao | 2012-09-12 | 1 | -0/+13 |
* | Add software PMC support. | Fabien Thomas | 2012-03-28 | 1 | -0/+12 |
* | panic: add a switch and infrastructure for stopping other CPUs in SMP case | Andriy Gapon | 2011-12-11 | 1 | -0/+28 |
* | Constify arguments for locking KPIs where possible. | Pawel Jakub Dawidek | 2011-11-16 | 1 | -12/+12 |
* | Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs. | Ed Schouten | 2011-11-07 | 1 | -1/+2 |
* | Print the pointer to the lock with the panic message. The previous | Bjoern A. Zeeb | 2010-03-24 | 1 | -2/+2 |
* | When releasing a read/shared lock we need to use a write memory barrier | Attilio Rao | 2009-09-30 | 1 | -3/+4 |
* | * Change the scope of the ASSERT_ATOMIC_LOAD() from a generic check to | Attilio Rao | 2009-08-17 | 1 | -2/+3 |
* | Add a new macro to test that a variable could be loaded atomically. | Bjoern A. Zeeb | 2009-08-14 | 1 | -0/+2 |
* | Handle lock recursion differenty by always checking against LO_RECURSABLE | Attilio Rao | 2009-06-02 | 1 | -6/+6 |
* | Remove extra cpu_spinwait() invocations. This should really only be used | John Baldwin | 2009-05-29 | 1 | -8/+0 |
* | Tweak a few comments on adaptive spinning. | John Baldwin | 2009-05-29 | 1 | -4/+10 |
* | Add the OpenSolaris dtrace lockstat provider. The lockstat provider | Stacey Son | 2009-05-26 | 1 | -7/+90 |
* | - Wrap lock profiling state variables in #ifdef LOCK_PROFILING blocks. | Jeff Roberson | 2009-03-15 | 1 | -1/+5 |
* | Remove even more unneeded variable assignments. | Ed Schouten | 2009-02-26 | 1 | -1/+0 |
* | add RW_SYSINIT_FLAGS macro and rw_sysinit_flags initialization function | Kip Macy | 2008-12-08 | 1 | -0/+8 |
* | Teach WITNESS about the interlocks used with lockmgr. This removes a bunch | John Baldwin | 2008-09-10 | 1 | -2/+2 |
* | Various whitespace fixes. | John Baldwin | 2008-09-10 | 1 | -1/+0 |
* | Improve a comment which, in the actual CVS stock, doesn't completely | Attilio Rao | 2008-05-27 | 1 | -2/+5 |
* | - Add sysctls at debug.rwlock to control the behavior of the speculative | Jeff Roberson | 2008-04-04 | 1 | -3/+26 |
* | Add rw_try_rlock() and rw_try_wlock() to rwlocks. | Attilio Rao | 2008-04-01 | 1 | -0/+49 |
* | - In rw_wunlock_hard prefer to wakeup writers if there are both readers | Jeff Roberson | 2008-02-07 | 1 | -4/+4 |
* | Adaptive spinning in write path with readers and writer starvation avoidance. | Jeff Roberson | 2008-02-06 | 1 | -154/+170 |
* | Remove a conditional that is always true. | John Baldwin | 2008-01-17 | 1 | -1/+1 |
* | - Re-implement lock profiling in such a way that it no longer breaks | Jeff Roberson | 2007-12-15 | 1 | -24/+7 |
* | Simplify the adaptive spinning algorithm in rwlock and mutex: | Attilio Rao | 2007-11-26 | 1 | -112/+72 |
* | Expand lock class with the "virtual" function lc_assert which will offer | Attilio Rao | 2007-11-18 | 1 | -0/+9 |
* | Remove a bogus KASSERT which will prevent rwlock to be acquired | Attilio Rao | 2007-11-14 | 1 | -3/+0 |
* | generally we are interested in what thread did something as | Julian Elischer | 2007-11-14 | 1 | -1/+1 |
* | Fix some problems with lock profiling in rw locks: | Attilio Rao | 2007-07-20 | 1 | -8/+28 |
* | Introduce a new rwlocks initialization function: rw_init_flags. | Attilio Rao | 2007-06-26 | 1 | -9/+85 |
* | Commit 3/14 of sched_lock decomposition. | Jeff Roberson | 2007-06-04 | 1 | -26/+28 |
* | Move lock_profile_object_{init,destroy}() into lock_{init,destroy}(). | John Baldwin | 2007-05-18 | 1 | -2/+0 |
* | Add destroyed cookie values for sx locks and rwlocks as well as extra | John Baldwin | 2007-05-08 | 1 | -1/+17 |
* | - Drop memory barriers in rw_try_upgrade(). We don't need an 'acq' memory | John Baldwin | 2007-03-30 | 1 | -4/+4 |
* | - Simplify the #ifdef's for adaptive mutexes and rwlocks by conditionally | John Baldwin | 2007-03-22 | 1 | -23/+29 |
* | Rename the 'mtx_object', 'rw_object', and 'sx_object' members of mutexes, | John Baldwin | 2007-03-21 | 1 | -72/+72 |
* | Print readers count as unsigned in ddb 'show lock'. | John Baldwin | 2007-03-13 | 1 | -2/+2 |
* | Fix a typo. | John Baldwin | 2007-03-12 | 1 | -1/+1 |
* | Add two new function pointers 'lc_lock' and 'lc_unlock' to lock classes. | John Baldwin | 2007-03-09 | 1 | -0/+33 |
* | Use C99-style struct member initialization for lock classes. | John Baldwin | 2007-03-09 | 1 | -3/+3 |
* | Fix some nits in lock profiling for rwlocks: | John Baldwin | 2007-03-07 | 1 | -6/+9 |
* | Further improvements to LOCK_PROFILING: | Kip Macy | 2007-02-27 | 1 | -2/+2 |
* | Add rw_wowned() interface to rwlock(9), allowing a kernel thread to | Robert Watson | 2007-02-26 | 1 | -0/+7 |
* | general LOCK_PROFILING cleanup | Kip Macy | 2007-02-26 | 1 | -11/+3 |
* | track lock class name in a way that doesn't break WITNESS | Kip Macy | 2006-11-13 | 1 | -1/+1 |
* | MUTEX_PROFILING has been generalized to LOCK_PROFILING. We now profile | Kip Macy | 2006-11-11 | 1 | -2/+20 |