diff options
| author | John Baldwin <jhb@FreeBSD.org> | 2006-01-31 22:56:44 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2006-01-31 22:56:44 +0000 |
| commit | 1a5d9b15d6d5fe898d8954bfb8310d812e5da492 (patch) | |
| tree | 732c007fb038ef12342d7e00494a4f3a3e321dfa | |
| parent | a4070931a6d06cb9ec670c7bb97a719fe4047730 (diff) | |
Notes
| -rw-r--r-- | sys/conf/NOTES | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index ee0c4a12de96..4a7d021a576d 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -191,7 +191,7 @@ options ADAPTIVE_GIANT # MUTEX_NOINLINE forces mutex operations to call functions to perform each # operation rather than inlining the simple cases. This can be used to # shrink the size of the kernel text segment. Note that this behavior is -# already implied by the INVARIANT_SUPPORT, INVARIANTS, MUTEX_PROFILING, +# already implied by the INVARIANT_SUPPORT, INVARIANTS, KTR, MUTEX_PROFILING, # and WITNESS options. options MUTEX_NOINLINE @@ -200,6 +200,13 @@ options MUTEX_NOINLINE # priority waiter. options MUTEX_WAKE_ALL +# RWLOCK_NOINLINE forces rwlock operations to call functions to perform each +# operation rather than inlining the simple cases. This can be used to +# shrink the size of the kernel text segment. Note that this behavior is +# already implied by the INVARIANT_SUPPORT, INVARIANTS, KTR, MUTEX_PROFILING, +# and WITNESS options. +options RWLOCK_NOINLINE + # SMP Debugging Options: # # PREEMPTION allows the threads that are in the kernel to be preempted |
