- Comment out NULL, NULL barrier for Unix domain sockets section as the

double NULL entries signal Witness to stop processing the array of
  order entries meaning none of the spin locks are added resulting in
  panics on boot.
- Add a missing NULL, NULL terminator to the Slip locks list to keep them
  separate from the spin locks.
This commit is contained in:
John Baldwin 2004-06-03 20:07:44 +00:00
parent e404f75180
commit ba8b26f960
1 changed files with 2 additions and 1 deletions

View File

@ -283,8 +283,8 @@ static struct witness_order_list_entry order_lists[] = {
{ NULL, NULL },
/*
* UNIX Domain Sockets
*/
{ NULL, NULL },
*/
/*
* UDP/IP
*/
@ -302,6 +302,7 @@ static struct witness_order_list_entry order_lists[] = {
*/
{ "slip_mtx", &lock_class_mtx_sleep },
{ "slip sc_mtx", &lock_class_mtx_sleep },
{ NULL, NULL },
/*
* spin locks
*/