Don't tsleep() while at splbio().
Correctly return EINPROGRESS from aio_error() even when an aio request is still in the socket queue. Submitted by: Adrian Chadd <adrian@bofh.co.uk>
This commit is contained in:
parent
1b67001469
commit
60ffb01993
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56306
@ -1543,12 +1543,12 @@ aio_suspend(struct proc *p, struct aio_suspend_args *uap)
|
||||
}
|
||||
}
|
||||
}
|
||||
splx(s);
|
||||
|
||||
ki->kaio_flags |= KAIO_WAKEUP;
|
||||
error = tsleep(p, PRIBIO | PCATCH, "aiospn", timo);
|
||||
splx(s);
|
||||
|
||||
if (error == EINTR) {
|
||||
if (error == ERESTART || error == EINTR) {
|
||||
zfree(aiol_zone, ijoblist);
|
||||
zfree(aiol_zone, ujoblist);
|
||||
return EINTR;
|
||||
@ -1614,6 +1614,16 @@ aio_error(struct proc *p, struct aio_error_args *uap)
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
for (cb = TAILQ_FIRST(&ki->kaio_sockqueue); cb; cb = TAILQ_NEXT(cb,
|
||||
plist)) {
|
||||
if (((intptr_t)cb->uaiocb._aiocb_private.kernelinfo) ==
|
||||
jobref) {
|
||||
p->p_retval[0] = EINPROGRESS;
|
||||
splx(s);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
splx(s);
|
||||
|
||||
s = splbio();
|
||||
|
Loading…
Reference in New Issue
Block a user