mtx_savecrit is a pil level, not a pstate value, thus mtx_intr_enable

was not doing its thing.
This commit is contained in:
jake 2001-09-03 22:19:04 +00:00
parent 511df0c9cd
commit 64bd7a7631

View File

@ -33,7 +33,7 @@ static __inline void
mtx_intr_enable(struct mtx *mtx)
{
mtx->mtx_savecrit |= PSTATE_IE;
mtx->mtx_savecrit = 0;
}
#endif /* !_MACHINE_MUTEX_H_ */