Re: [Qemu-devel] [PATCH] block: add .bdrv_reopen_prepare() stub for iscsi

2014-01-15 Thread Stefan Hajnoczi
On Tue, Jan 14, 2014 at 01:10:24PM -0500, Jeff Cody wrote: > To suppport reopen(), the .bdrv_reopen_prepare() stub must exist. > iSCSI does not have anything that needs to be done to support reopen, > so we can just implement the _prepare() stub. > > Signed-off-by: Jeff Cody > --- > block/iscsi.

Re: [Qemu-devel] [PATCH] block: add .bdrv_reopen_prepare() stub for iscsi

2014-01-15 Thread Paolo Bonzini
Il 14/01/2014 19:10, Jeff Cody ha scritto: > To suppport reopen(), the .bdrv_reopen_prepare() stub must exist. > iSCSI does not have anything that needs to be done to support reopen, > so we can just implement the _prepare() stub. > > Signed-off-by: Jeff Cody > --- > block/iscsi.c | 9 +

[Qemu-devel] [PATCH] block: add .bdrv_reopen_prepare() stub for iscsi

2014-01-14 Thread Jeff Cody
To suppport reopen(), the .bdrv_reopen_prepare() stub must exist. iSCSI does not have anything that needs to be done to support reopen, so we can just implement the _prepare() stub. Signed-off-by: Jeff Cody --- block/iscsi.c | 9 + 1 file changed, 9 insertions(+) diff --git a/block/iscs