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>
This commit is contained in:
parent
f8ea0b00e0
commit
396759ad4a
4
block.c
4
block.c
@ -361,6 +361,10 @@ static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
|
|||||||
{
|
{
|
||||||
BlockDriver *drv = bs->drv;
|
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 */
|
/* query actual device if possible, otherwise just trust the hint */
|
||||||
if (drv->bdrv_getlength) {
|
if (drv->bdrv_getlength) {
|
||||||
int64_t length = drv->bdrv_getlength(bs);
|
int64_t length = drv->bdrv_getlength(bs);
|
||||||
|
Loading…
Reference in New Issue
Block a user