mirror of
https://github.com/mii443/qemu.git
synced 2025-12-04 03:28:31 +00:00
file-posix: handle EINTR during ioctl
Similar to other handle_aiocb_* functions, handle_aiocb_ioctl needs to cater for the possibility that ioctl is interrupted by a signal. Otherwise, the I/O is incorrectly reported as a failure to the guest. Reported-by: Gordon Watson <gwatson@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
@@ -1347,7 +1347,9 @@ static int handle_aiocb_ioctl(void *opaque)
|
|||||||
RawPosixAIOData *aiocb = opaque;
|
RawPosixAIOData *aiocb = opaque;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = ioctl(aiocb->aio_fildes, aiocb->ioctl.cmd, aiocb->ioctl.buf);
|
do {
|
||||||
|
ret = ioctl(aiocb->aio_fildes, aiocb->ioctl.cmd, aiocb->ioctl.buf);
|
||||||
|
} while (ret == -1 && errno == EINTR);
|
||||||
if (ret == -1) {
|
if (ret == -1) {
|
||||||
return -errno;
|
return -errno;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user