diff options
author | Kevin Wolf <kwolf@redhat.com> | 2010-04-06 18:24:06 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-04-10 00:39:33 +0200 |
commit | 0f0b604b00851f2c7160b4195136c1fd27418088 (patch) | |
tree | 01bd3f0d8bfb61106c5864191bbf5c146e4c49e5 | |
parent | cb6d3ca07b8f62b47ef30c6a92caa3e8bd71248b (diff) | |
download | qemu-0f0b604b00851f2c7160b4195136c1fd27418088.zip |
block: Fix error code in multiwrite for immediate failures
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
-rw-r--r-- | block.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1881,10 +1881,10 @@ int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs) // submitted yet. Otherwise we'll wait for the submitted AIOs to // complete and report the error in the callback. if (mcb->num_requests == 0) { - reqs[i].error = EIO; + reqs[i].error = -EIO; goto fail; } else { - mcb->error = EIO; + mcb->error = -EIO; break; } } else { |