qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 1/2] [block]: Fix scsi-generic breakage in find_image_format()
@ 2010-05-15 13:30 Nicholas A. Bellinger
  2010-05-16 13:29 ` [Qemu-devel] " Christoph Hellwig
  0 siblings, 1 reply; 3+ messages in thread
From: Nicholas A. Bellinger @ 2010-05-15 13:30 UTC (permalink / raw)
  To: Kevin Wolf, Christoph Hellwig, Gerd Hoffmann, Hannes Reinecke,
	kvm-devel, qemu-devel
  Cc: Nicholas Bellinger

From: Nicholas Bellinger <nab@linux-iscsi.org>

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 or not.

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

Signed-off-by: Nicholas A. Bellinger <nab@linux-iscsi.org>
---
 block.c |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/block.c b/block.c
index 48305b7..02a22f6 100644
--- a/block.c
+++ b/block.c
@@ -332,6 +332,13 @@ static BlockDriver *find_image_format(const char *filename)
     ret = bdrv_file_open(&bs, filename, 0);
     if (ret < 0)
         return NULL;
+    /*
+     * For scsi-generic we skip the read and return *drv from
+     * find_protocol().
+     */
+    if (bs->sg)
+	return drv;
+
     ret = bdrv_pread(bs, 0, buf, sizeof(buf));
     bdrv_delete(bs);
     if (ret < 0) {
-- 
1.5.6.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Qemu-devel] Re: [PATCH 1/2] [block]: Fix scsi-generic breakage in find_image_format()
  2010-05-15 13:30 [Qemu-devel] [PATCH 1/2] [block]: Fix scsi-generic breakage in find_image_format() Nicholas A. Bellinger
@ 2010-05-16 13:29 ` Christoph Hellwig
  2010-05-17  1:50   ` Nicholas A. Bellinger
  0 siblings, 1 reply; 3+ messages in thread
From: Christoph Hellwig @ 2010-05-16 13:29 UTC (permalink / raw)
  To: Nicholas A. Bellinger
  Cc: Kevin Wolf, kvm-devel, qemu-devel, Hannes Reinecke,
	Christoph Hellwig, Gerd Hoffmann

On Sat, May 15, 2010 at 06:30:52AM -0700, Nicholas A. Bellinger wrote:
> From: Nicholas Bellinger <nab@linux-iscsi.org>
> 
> 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 or not.
> 
> The patch then returns the BlockDriver * from find_protocol(), skipping the subsequent
> bdrv_read() and rest of find_image_format().

That's not quite correct as we don't want to expose formats directly.
Returning

	bdrv_find_format("raw");

should fix it for now, although I really hate having these special
cases in block.c.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Qemu-devel] Re: [PATCH 1/2] [block]: Fix scsi-generic breakage in find_image_format()
  2010-05-16 13:29 ` [Qemu-devel] " Christoph Hellwig
@ 2010-05-17  1:50   ` Nicholas A. Bellinger
  0 siblings, 0 replies; 3+ messages in thread
From: Nicholas A. Bellinger @ 2010-05-17  1:50 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Kevin Wolf, qemu-devel, Gerd Hoffmann, kvm-devel, Hannes Reinecke

[-- Attachment #1: Type: text/plain, Size: 1159 bytes --]

On Sun, 2010-05-16 at 15:29 +0200, Christoph Hellwig wrote:
> On Sat, May 15, 2010 at 06:30:52AM -0700, Nicholas A. Bellinger wrote:
> > From: Nicholas Bellinger <nab@linux-iscsi.org>
> > 
> > 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 or not.
> > 
> > The patch then returns the BlockDriver * from find_protocol(), skipping the subsequent
> > bdrv_read() and rest of find_image_format().
> 
> That's not quite correct as we don't want to expose formats directly.
> Returning
> 
> 	bdrv_find_format("raw");
> 
> should fix it for now,

Ahh, that makes more sense..  Attached is updated patch #1:

[PATCH 1/2] [block]: Make find_image_format() return 'raw' BlockDriver for SG_IO devices

>  although I really hate having these special
> cases in block.c.

Indeed having BlockDriverState->sg kinda feels kinda like a hack to
begin with, but it appears this is currently QEMU's way of telling block
code to disable internal SCSI CDB emulation for devices.

Best,

--nab



[-- Attachment #2: 0001--block-Make-find_image_format-return-raw-Block.patch --]
[-- Type: application/mbox, Size: 1244 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-05-17  1:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-15 13:30 [Qemu-devel] [PATCH 1/2] [block]: Fix scsi-generic breakage in find_image_format() Nicholas A. Bellinger
2010-05-16 13:29 ` [Qemu-devel] " Christoph Hellwig
2010-05-17  1:50   ` Nicholas A. Bellinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).