]> Git Repo - qemu.git/commitdiff
raw-posix: fix bdrv_aio_ioctl
authorPaolo Bonzini <[email protected]>
Thu, 10 Jan 2013 14:28:35 +0000 (15:28 +0100)
committerKevin Wolf <[email protected]>
Mon, 14 Jan 2013 09:06:56 +0000 (10:06 +0100)
When the raw-posix aio=thread code was moved from posix-aio-compat.c
to block/raw-posix.c, there was an unintended change to the ioctl code.
The code used to return the ioctl command, which posix_aio_read()
would later morph into a zero.  This hack is not necessary anymore,
and in fact breaks scsi-generic (which expects a zero return code).
Remove it.

Cc: [email protected]
Signed-off-by: Paolo Bonzini <[email protected]>
Signed-off-by: Kevin Wolf <[email protected]>
block/raw-posix.c

index 87d888ed01a6555e984a8a923f8611157b9b51b1..0e705ba07d0920735d8a169463d720d60c5c8ce4 100644 (file)
@@ -455,15 +455,7 @@ static ssize_t handle_aiocb_ioctl(RawPosixAIOData *aiocb)
         return -errno;
     }
 
-    /*
-     * This looks weird, but the aio code only considers a request
-     * successful if it has written the full number of bytes.
-     *
-     * Now we overload aio_nbytes as aio_ioctl_cmd for the ioctl command,
-     * so in fact we return the ioctl command here to make posix_aio_read()
-     * happy..
-     */
-    return aiocb->aio_nbytes;
+    return 0;
 }
 
 static ssize_t handle_aiocb_flush(RawPosixAIOData *aiocb)
This page took 0.029541 seconds and 4 git commands to generate.