- 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 Roberson 2005-03-25 09:56:56 +00:00
parent 9245facb49
commit eb8d0e01c0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=144101

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
}
/*