]> git.proxmox.com Git - qemu.git/commit - block.c
block: Make find_image_format() return 'raw' BlockDriver for SG_IO devices
authorNicholas Bellinger <nab@linux-iscsi.org>
Mon, 17 May 2010 16:45:57 +0000 (09:45 -0700)
committerKevin Wolf <kwolf@redhat.com>
Fri, 21 May 2010 09:49:19 +0000 (11:49 +0200)
commitf8ea0b00e087380fa0c7309f843f67b7e2d0126a
treec8fe12eb7ae342a85a3e4a718af0e3665f68a70c
parent77be4366baface6613cfc312ba281f8e5860997c
block: Make find_image_format() return 'raw' BlockDriver for SG_IO devices

This patch adds a special BlockDriverState->sg check in block.c:find_image_format()
after bdrv_file_open() -> block/raw-posix.c:hdev_open() has been called to determine
if we are dealing with a Linux host scsi-generic device.

The patch then returns the BlockDriver * from bdrv_find_format("raw"), skipping the
subsequent bdrv_read() and rest of find_image_format().

Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block.c