- The td_locks check is currently broken with snapshots and possibly

some case in unmount.  Disable the KASSERT until these problems can
   be diagnosed.

Sponsored by:	Isilon Systems, Inc.
This commit is contained in:
jeff 2005-03-25 09:56:56 +00:00
parent ecb5e1650a
commit 759d7ddf04

View File

@ -133,8 +133,11 @@ userret(td, frame, oticks)
* Let the scheduler adjust our priority etc.
*/
sched_userret(td);
#if 0
/* This is not presently working. */
KASSERT(td->td_locks == 0,
("userret: Returning with %d locks held.", td->td_locks));
#endif
}
/*