freebsd-dev/sys/conf
John Baldwin 192846463a Rework the witness code to work with sx locks as well as mutexes.
- Introduce lock classes and lock objects.  Each lock class specifies a
  name and set of flags (or properties) shared by all locks of a given
  type.  Currently there are three lock classes: spin mutexes, sleep
  mutexes, and sx locks.  A lock object specifies properties of an
  additional lock along with a lock name and all of the extra stuff needed
  to make witness work with a given lock.  This abstract lock stuff is
  defined in sys/lock.h.  The lockmgr constants, types, and prototypes have
  been moved to sys/lockmgr.h.  For temporary backwards compatability,
  sys/lock.h includes sys/lockmgr.h.
- Replace proc->p_spinlocks with a per-CPU list, PCPU(spinlocks), of spin
  locks held.  By making this per-cpu, we do not have to jump through
  magic hoops to deal with sched_lock changing ownership during context
  switches.
- Replace proc->p_heldmtx, formerly a list of held sleep mutexes, with
  proc->p_sleeplocks, which is a list of held sleep locks including sleep
  mutexes and sx locks.
- Add helper macros for logging lock events via the KTR_LOCK KTR logging
  level so that the log messages are consistent.
- Add some new flags that can be passed to mtx_init():
  - MTX_NOWITNESS - specifies that this lock should be ignored by witness.
    This is used for the mutex that blocks a sx lock for example.
  - MTX_QUIET - this is not new, but you can pass this to mtx_init() now
    and no events will be logged for this lock, so that one doesn't have
    to change all the individual mtx_lock/unlock() operations.
- All lock objects maintain an initialized flag.  Use this flag to export
  a mtx_initialized() macro that can be safely called from drivers.  Also,
  we on longer walk the all_mtx list if MUTEX_DEBUG is defined as witness
  performs the corresponding checks using the initialized flag.
- The lock order reversal messages have been improved to output slightly
  more accurate file and line numbers.
2001-03-28 09:03:24 +00:00
..
defines
files Rework the witness code to work with sx locks as well as mutexes. 2001-03-28 09:03:24 +00:00
files.alpha Add and document the LINPROCFS option, so that we can build linprocfs 2001-02-27 08:11:28 +00:00
files.i386 Add and document the LINPROCFS option, so that we can build linprocfs 2001-02-27 08:11:28 +00:00
files.ia64 Remove count for NSIO. The only places it was used it were incorrect. 2001-01-31 10:54:45 +00:00
files.pc98 Added another wd33c93 based SCSI card driver which replaces the bs driver. 2001-02-27 12:34:01 +00:00
kern.mk Add section for building ia64 kernels. 2000-10-16 20:04:52 +00:00
kmod.mk Reflect recent bsd.man.mk changes here, but do not assign the 2001-03-27 11:50:44 +00:00
ldscript.alpha Add $FreeBSD$ 2000-01-11 15:35:16 +00:00
ldscript.amd64 Add $FreeBSD$ 2000-01-11 15:35:16 +00:00
ldscript.i386 Add $FreeBSD$ 2000-01-11 15:35:16 +00:00
ldscript.ia64 Change the kernel layout to match Linux/ia64 more closely. This prevents 2001-03-09 13:47:25 +00:00
ldscript.powerpc Add $FreeBSD$ 2000-01-11 15:35:16 +00:00
majors Add the ata control device. 2001-03-15 15:26:38 +00:00
Makefile.alpha Restore the careful preservation of .depend (rev 1.78 of Makefile.i386) 2001-03-24 08:44:28 +00:00
Makefile.i386 Restore the careful preservation of .depend (rev 1.78 of Makefile.i386) 2001-03-24 08:44:28 +00:00
Makefile.ia64 Restore the careful preservation of .depend (rev 1.78 of Makefile.i386) 2001-03-24 08:44:28 +00:00
Makefile.pc98 Restore the careful preservation of .depend (rev 1.78 of Makefile.i386) 2001-03-24 08:44:28 +00:00
Makefile.powerpc Restore the careful preservation of .depend (rev 1.78 of Makefile.i386) 2001-03-24 08:44:28 +00:00
newvers.sh setlocale(3) has been fixed to match POSIX standard: 2001-03-02 16:52:14 +00:00
NOTES o Two changes made elsewhere relating to recent EA commits, but not 2001-03-19 23:27:37 +00:00
options Introduce support for POSIX.1e ACLs on UFS-based file systems. This 2001-03-26 17:53:19 +00:00
options.alpha Conditionalize the alpha interrupt preemption for now to buy us some 2001-02-03 03:26:39 +00:00
options.i386 Activate USER_LDT by default. The new thread libraries are going to 2001-02-23 01:25:02 +00:00
options.ia64 Add SKI_ROOT_FILESYSTEM option. 2001-03-09 13:46:03 +00:00
options.pc98 Activate USER_LDT by default. The new thread libraries are going to 2001-02-23 01:25:02 +00:00
param.c Remove unneeded <stddef.h> #includes. 2000-10-29 16:57:42 +00:00
systags.sh $Id$ -> $FreeBSD$ 1999-08-28 01:08:13 +00:00