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
/
subr_turnstile.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add mtx_ prefixes to the fields used for mutex profiling, and fix a bug
des
2002-07-03
1
-11
/
+12
*
Part 1 of KSE-III
julian
2002-06-29
1
-15
/
+16
*
Replace thread_runnable() with thread_running() as the latter is more
jhb
2002-06-04
1
-6
/
+5
*
Optimize the adaptive mutex spin a bit. Use a simple while loop with
jhb
2002-06-04
1
-1
/
+4
*
Add a private thread_runnable() macro to make the code more readable and
jhb
2002-06-04
1
-3
/
+5
*
Make the counters uintmax_ts, and use %ju rather than %llu.
des
2002-05-23
1
-2
/
+3
*
Rename pause() to ia32_pause() so it doesn't conflict with the pause()
jhb
2002-05-22
1
-5
/
+5
*
Rename cpu_pause() to pause(). Originally I was going to make this an
jhb
2002-05-22
1
-5
/
+5
*
Add appropriate IA32 "pause" instructions to improve performanec on
jhb
2002-05-21
1
-1
/
+17
*
Fix an old cut 'n' paste bug inherited from BSD/OS: don't increment 'i'
jhb
2002-05-21
1
-1
/
+1
*
Whitespace fixup, properly indent the body of an else clause.
jhb
2002-05-21
1
-2
/
+2
*
Add code to make default mutexes adaptive if the ADAPTIVE_MUTEXES kernel
jhb
2002-05-21
1
-0
/
+26
*
Optimize spin mutexes for UP kernels without debugging to just enter and
jhb
2002-05-21
1
-0
/
+8
*
Change mtx_init() to now take an extra argument. The third argument is
jhb
2002-04-04
1
-8
/
+11
*
Revert to open hashing. It makes the code simpler, and works farily well
des
2002-04-02
1
-16
/
+10
*
- Move the MI mutexes sched_lock and Giant from being declared in the
jhb
2002-04-02
1
-0
/
+27
*
Spelling police.
jhb
2002-04-02
1
-1
/
+1
*
- Add MTX_SYSINIT and SX_SYSINIT as macro glue for allowing sx and mtx
arr
2002-04-02
1
-0
/
+11
*
Instead of get_cyclecount(9), use nanotime(9) to record acquisition and
des
2002-04-02
1
-19
/
+28
*
Mutex profiling code, conditional on the MUTEX_PROFILING option. Adds the
des
2002-04-02
1
-2
/
+159
*
Add a new mtx_init option "MTX_DUPOK" which allows duplicate acquires of locks
jeff
2002-03-27
1
-1
/
+3
*
Remove __P.
alfred
2002-03-19
1
-1
/
+1
*
Tidy up some unused variables
peter
2002-02-20
1
-5
/
+0
*
Add kern_giant_ucred to instrument Giant around ucred related operations
dillon
2002-02-18
1
-0
/
+2
*
In a threaded world, differnt priorirites become properties of
julian
2002-02-11
1
-15
/
+13
*
Use the mtx_owner() macro in one spot in _mtx_lock_sleep() to make the
jhb
2002-02-09
1
-1
/
+1
*
Bump the limits for determining if we've held a spinlock too long as they
jhb
2002-01-15
1
-2
/
+2
*
Change the preemption code for software interrupt thread schedules and
jhb
2002-01-05
1
-11
/
+3
*
Modify the critical section API as follows:
jhb
2001-12-18
1
-5
/
+3
*
Remove definition of witness and comment stating that this file implements
jhb
2001-11-15
1
-22
/
+1
*
Add mtx_lock_giant() and mtx_unlock_giant() wrappers for sysctl management
dillon
2001-10-26
1
-0
/
+42
*
The mtx_init() and sx_init() functions bzero'd locks before handing them
jhb
2001-10-20
1
-1
/
+3
*
Remove superflous parens after de-macroizing.
jhb
2001-09-26
1
-2
/
+2
*
Since we no longer inline any debugging code in the mutex operations, move
jhb
2001-09-22
1
-4
/
+24
*
Fix a bug in propagate priority: the kse group pointer wasn't being
jhb
2001-09-19
1
-0
/
+1
*
KSE Milestone 2
julian
2001-09-12
1
-95
/
+103
*
Force a commit on kern_mutex.c to explain reason for last commit but while
bmilekic
2001-08-24
1
-0
/
+5
*
*** empty log message ***
bmilekic
2001-08-24
1
-2
/
+4
*
If we have already panic'd then don't bother enforcing mutex asserts as
jhb
2001-07-31
1
-0
/
+3
*
Count the context switch when blocking on a mutex as a voluntary context
jhb
2001-06-25
1
-0
/
+3
*
- Move state about lock objects out of struct lock_object and into a new
jhb
2001-05-04
1
-39
/
+4
*
Undo part of the tangle of having sys/lock.h and sys/mutex.h included in
markm
2001-05-01
1
-1
/
+1
*
Exit and re-enter the critical section while spinning for a spinlock so
jhb
2001-04-17
1
-0
/
+3
*
Handle a rare but fatal race invoked sometimes when SIGSTOP is
markm
2001-04-13
1
-1
/
+1
*
Rework the witness code to work with sx locks as well as mutexes.
jhb
2001-03-28
1
-1124
/
+118
*
- Switch from using save/disable/restore_intr to using critical_enter/exit
jhb
2001-03-28
1
-2
/
+34
*
Fix mtx_legal2block. The only time that it is bad to block on a mutex is
jhb
2001-03-09
1
-2
/
+8
*
- Add an extra check in priority_propagation() for UP systems to ensure we
jhb
2001-03-07
1
-1
/
+9
*
Shuffle netgraph mutexes a bit and hold a reference on a node
julian
2001-02-28
1
-2
/
+2
*
Sigh. Try to get priorities sorted out. Don't bother trying to
jake
2001-02-28
1
-2
/
+0
[next]