Postpone dropping fp till both kq_global and kqueue mutexes are
unlocked. fdrop() closes file descriptor when reference count goes to zero. Close method for vnodes locks the vnode, resulting in "sleepable after non-sleepable". For pipes, pipe mutex is before kqueue lock, causing LOR. Reported and tested by: pho MFC after: 2 weeks
This commit is contained in:
parent
45623593fb
commit
47d81c1b70
@ -1025,13 +1025,13 @@ kqueue_register(struct kqueue *kq, struct kevent *kev, struct thread *td, int wa
|
||||
|
||||
/* knote is in the process of changing, wait for it to stablize. */
|
||||
if (kn != NULL && (kn->kn_status & KN_INFLUX) == KN_INFLUX) {
|
||||
KQ_GLOBAL_UNLOCK(&kq_global, haskqglobal);
|
||||
kq->kq_state |= KQ_FLUXWAIT;
|
||||
msleep(kq, &kq->kq_lock, PSOCK | PDROP, "kqflxwt", 0);
|
||||
if (fp != NULL) {
|
||||
fdrop(fp, td);
|
||||
fp = NULL;
|
||||
}
|
||||
KQ_GLOBAL_UNLOCK(&kq_global, haskqglobal);
|
||||
kq->kq_state |= KQ_FLUXWAIT;
|
||||
msleep(kq, &kq->kq_lock, PSOCK | PDROP, "kqflxwt", 0);
|
||||
goto findkn;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user