index
:
FreeBSD-src
RELENG_2_2
RELENG_2_3
RELENG_2_3_0
RELENG_2_3_1
RELENG_2_3_2
RELENG_2_3_3
RELENG_2_3_4
RELENG_2_4
RELENG_2_4_4
RELENG_2_4_OLD
devel
devel-11
releng/10.1
releng/10.3
releng/11.0
releng/11.1
stable/10
stable/11
Raptor Engineering's fork of pfsense FreeBSD src with pfSense changes
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
sys
/
kern
/
kern_rwlock.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Move lock_profile_object_{init,destroy}() into lock_{init,destroy}().
jhb
2007-05-18
1
-2
/
+0
*
Add destroyed cookie values for sx locks and rwlocks as well as extra
jhb
2007-05-08
1
-1
/
+17
*
- Drop memory barriers in rw_try_upgrade(). We don't need an 'acq' memory
jhb
2007-03-30
1
-4
/
+4
*
- Simplify the #ifdef's for adaptive mutexes and rwlocks by conditionally
jhb
2007-03-22
1
-23
/
+29
*
Rename the 'mtx_object', 'rw_object', and 'sx_object' members of mutexes,
jhb
2007-03-21
1
-72
/
+72
*
Print readers count as unsigned in ddb 'show lock'.
jhb
2007-03-13
1
-2
/
+2
*
Fix a typo.
jhb
2007-03-12
1
-1
/
+1
*
Add two new function pointers 'lc_lock' and 'lc_unlock' to lock classes.
jhb
2007-03-09
1
-0
/
+33
*
Use C99-style struct member initialization for lock classes.
jhb
2007-03-09
1
-3
/
+3
*
Fix some nits in lock profiling for rwlocks:
jhb
2007-03-07
1
-6
/
+9
*
Further improvements to LOCK_PROFILING:
kmacy
2007-02-27
1
-2
/
+2
*
Add rw_wowned() interface to rwlock(9), allowing a kernel thread to
rwatson
2007-02-26
1
-0
/
+7
*
general LOCK_PROFILING cleanup
kmacy
2007-02-26
1
-11
/
+3
*
track lock class name in a way that doesn't break WITNESS
kmacy
2006-11-13
1
-1
/
+1
*
MUTEX_PROFILING has been generalized to LOCK_PROFILING. We now profile
kmacy
2006-11-11
1
-2
/
+20
*
Adjust td_locks for non-spin mutexes, rwlocks, and sx locks so that it is
jhb
2006-07-27
1
-0
/
+4
*
Implement rw_try_upgrade() and rw_downgrade(). rw_try_upgrade() makes a
jhb
2006-04-19
1
-2
/
+133
*
'owner' is not used without SMP. Fix kernel build for such kernel
wkoszek
2006-04-18
1
-0
/
+4
*
Adaptively spin before blocking on the turnstile if an rwlock is write
jhb
2006-04-18
1
-7
/
+88
*
- Add a rw_wowner() macro that just returns the owner of a write lock and
jhb
2006-04-17
1
-26
/
+38
*
Fix another compile problem. If I find any more, this file is going in the
scottl
2006-02-01
1
-1
/
+1
*
Regroup order of operations to better reflect what was probably intended.
scottl
2006-01-30
1
-3
/
+3
*
Take a stab at making this compile when WITNESS is not defined. gcc can't
scottl
2006-01-29
1
-4
/
+4
*
Unbreak on archs where %d doesn't print uintptr_t arithmetic.
mlaier
2006-01-29
1
-1
/
+2
*
Add a basic reader/writer lock implementation to the kernel. This
jhb
2006-01-27
1
-0
/
+587