? sys/kern/cscope.out Index: sys/kern/kern_sleepq.c =================================================================== RCS file: /cvsroot/src/sys/kern/kern_sleepq.c,v retrieving revision 1.50 diff -u -p -w -b -r1.50 kern_sleepq.c --- sys/kern/kern_sleepq.c 5 Sep 2014 05:57:21 -0000 1.50 +++ sys/kern/kern_sleepq.c 19 Feb 2016 20:15:15 -0000 @@ -411,11 +411,11 @@ sleepq_sigtoerror(lwp_t *l, int sig) int sleepq_abort(kmutex_t *mtx, int unlock) { - int s; + const ipl_cookie_t high = makeiplcookie(IPL_HIGH); - s = splhigh(); + splraiseipl(high); splx(IPL_SAFEPRI); - splx(s); + splraiseipl(high); if (mtx != NULL && unlock != 0) mutex_exit(mtx);