John Baldwin 2d96f0b145 - Move state about lock objects out of struct lock_object and into a new
struct lock_instance that is stored in the per-process and per-CPU lock
  lists.  Previously, the lock lists just kept a pointer to each lock held.
  That pointer is now replaced by a lock instance which contains a pointer
  to the lock object, the file and line of the last acquisition of a lock,
  and various flags about a lock including its recursion count.
- If we sleep while holding a sleepable lock, then mark that lock instance
  as having slept and ignore any lock order violations that occur while
  acquiring Giant when we wake up with slept locks.  This is ok because of
  Giant's special nature.
- Allow witness to differentiate between shared and exclusive locks and
  unlocks of a lock.  Witness will now detect the case when a lock is
  acquired first in one mode and then in another.  Mutexes are always
  locked and unlocked exclusively.  Witness will also now detect the case
  where a process attempts to unlock a shared lock while holding an
  exclusive lock and vice versa.
- Fix a bug in the lock list implementation where we used the wrong
  constant to detect the case where a lock list entry was full.
2001-05-04 17:15:16 +00:00
..
2000-10-09 12:34:51 +00:00
1999-08-28 01:08:13 +00:00
2001-04-19 23:15:06 +00:00
2000-01-16 09:25:10 +00:00
2000-05-01 20:32:07 +00:00
2001-05-02 01:08:09 +00:00
1999-08-28 01:08:13 +00:00
1999-08-28 01:08:13 +00:00
1999-08-28 01:08:13 +00:00
1999-08-28 01:08:13 +00:00
2000-07-18 19:31:52 +00:00
2001-02-15 16:34:11 +00:00
1999-08-28 01:08:13 +00:00
1999-08-28 01:08:13 +00:00
2000-10-31 14:30:29 +00:00
1999-08-28 01:08:13 +00:00
2000-12-01 08:57:47 +00:00
2001-03-11 22:51:05 +00:00
2001-02-08 20:28:57 +00:00
2001-01-21 01:34:14 +00:00
1999-08-27 23:45:13 +00:00
1999-08-28 01:08:13 +00:00
2001-01-09 04:33:49 +00:00
1999-08-28 01:08:13 +00:00
1999-08-28 01:08:13 +00:00
1999-08-28 01:08:13 +00:00
2001-03-27 05:45:52 +00:00
2000-12-01 08:57:47 +00:00
1999-08-28 01:08:13 +00:00
2001-03-04 06:04:50 +00:00
1999-08-28 01:08:13 +00:00
1999-08-28 01:08:13 +00:00
1999-08-28 01:08:13 +00:00
1999-08-28 01:08:13 +00:00
2001-03-24 15:17:27 +00:00
1999-08-28 01:08:13 +00:00