summaryrefslogtreecommitdiffstats
path: root/block.c
diff options
context:
space:
mode:
authorNicholas Bellinger2010-05-17 18:46:04 +0200
committerKevin Wolf2010-05-21 11:49:19 +0200
commit396759ad4ad5289623eb7e1993c433ad4e7b13a1 (patch)
tree7c82ef927eb2ef500837645aa7c780be1fc26cd0 /block.c
parentblock: Make find_image_format() return 'raw' BlockDriver for SG_IO devices (diff)
downloadqemu-396759ad4ad5289623eb7e1993c433ad4e7b13a1.tar.gz
qemu-396759ad4ad5289623eb7e1993c433ad4e7b13a1.tar.xz
qemu-396759ad4ad5289623eb7e1993c433ad4e7b13a1.zip
block: Add SG_IO device check in refresh_total_sectors()
This patch adds a special case check for scsi-generic devices in refresh_total_sectors() to skip the subsequent BlockDriver->bdrv_getlength() that will be returning -ESPIPE from block/raw-posic.c:raw_getlength() for BlockDriverState->sg=1 devices. Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r--block.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/block.c b/block.c
index 6a95768e81..0b0966c571 100644
--- a/block.c
+++ b/block.c
@@ -361,6 +361,10 @@ static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
{
BlockDriver *drv = bs->drv;
+ /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
+ if (bs->sg)
+ return 0;
+
/* query actual device if possible, otherwise just trust the hint */
if (drv->bdrv_getlength) {
int64_t length = drv->bdrv_getlength(bs);