Re: [Qemu-devel] [PATCH] iscsi: add support for iovectors

2012-12-12 Thread Paolo Bonzini
Il 12/12/2012 16:23, Peter Lieven ha scritto: >>> >> +#if defined(LIBISCSI_FEATURE_IOVECTOR) >>> >> +if (iscsi_scsi_command_async(iscsi, iscsilun->lun, acb->task, >>> >> + iscsi_aio_write16_cb, >>> >> + NULL, >>> >> +

Re: [Qemu-devel] [PATCH] iscsi: add support for iovectors

2012-12-12 Thread Peter Lieven
Am 12.12.2012 14:57, schrieb Paolo Bonzini: > Il 03/12/2012 20:35, Peter Lieven ha scritto: >> This patch adds support for directly passing the iovec >> array from QEMUIOVector if libiscsi supports it. > > Thanks, one question below. > >> Signed-off-by: Peter Lieven >> --- >> block/iscsi.c |

Re: [Qemu-devel] [PATCH] iscsi: add support for iovectors

2012-12-12 Thread Paolo Bonzini
Il 03/12/2012 20:35, Peter Lieven ha scritto: > This patch adds support for directly passing the iovec > array from QEMUIOVector if libiscsi supports it. Thanks, one question below. > Signed-off-by: Peter Lieven > --- > block/iscsi.c | 31 +++ > 1 file changed, 31

[Qemu-devel] [PATCH] iscsi: add support for iovectors

2012-12-03 Thread Peter Lieven
This patch adds support for directly passing the iovec array from QEMUIOVector if libiscsi supports it. Signed-off-by: Peter Lieven --- block/iscsi.c | 31 +++ 1 file changed, 31 insertions(+) diff --git a/block/iscsi.c b/block/iscsi.c index c0b70b3..6f3ee4a 100644