[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-stable] [PATCH 3/7] scsi-generic: check the return value of bdrv_a
From: |
Paolo Bonzini |
Subject: |
[Qemu-stable] [PATCH 3/7] scsi-generic: check the return value of bdrv_aio_ioctl in execute_command |
Date: |
Tue, 18 Jun 2013 16:16:52 +0200 |
From: Pavel Hrdina <address@hidden>
This fixes the bug introduced by this commit ad54ae80c73f.
The bdrv_aio_ioctl() still could return null and we should return an error
in that case.
Cc: address@hidden
Signed-off-by: Pavel Hrdina <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
---
hw/scsi/scsi-generic.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/hw/scsi/scsi-generic.c b/hw/scsi/scsi-generic.c
index 19bd36c..8f195be 100644
--- a/hw/scsi/scsi-generic.c
+++ b/hw/scsi/scsi-generic.c
@@ -174,6 +174,9 @@ static int execute_command(BlockDriverState *bdrv,
r->io_header.flags |= SG_FLAG_DIRECT_IO;
r->req.aiocb = bdrv_aio_ioctl(bdrv, SG_IO, &r->io_header, complete, r);
+ if (r->req.aiocb == NULL) {
+ return -EIO;
+ }
return 0;
}
--
1.8.1.4
- [Qemu-stable] [PULL 0/7] SCSI patches for 2013-06-18 (including 1.5.1 patches), Paolo Bonzini, 2013/06/18
- [Qemu-stable] [PATCH 1/7] scsi: reset cdrom tray statuses on scsi_disk_reset, Paolo Bonzini, 2013/06/18
- [Qemu-stable] [PATCH 2/7] scsi-generic: fix sign extension of READ CAPACITY(10) data, Paolo Bonzini, 2013/06/18
- [Qemu-stable] [PATCH 3/7] scsi-generic: check the return value of bdrv_aio_ioctl in execute_command,
Paolo Bonzini <=
- [Qemu-stable] [PATCH 7/7] iscsi: reorganize iscsi_readcapacity_sync, Paolo Bonzini, 2013/06/18
- [Qemu-stable] [PATCH 6/7] iscsi: simplify freeing of tasks, Paolo Bonzini, 2013/06/18
- [Qemu-stable] [PATCH 5/7] vhost-scsi: fix k->set_guest_notifiers() NULL dereference, Paolo Bonzini, 2013/06/18
- [Qemu-stable] [PATCH 4/7] scsi-disk: scsi-block device for scsi pass-through should not be removable, Paolo Bonzini, 2013/06/18