[Qemu-devel] [Patch 0/14] builtin iscsi support

2010-12-03 Thread ronniesahlberg
This series of pathces adds built in iscsi support to qemu. The first 12 patches 14 adds a general purpose iscsi client library in a separate subdirectory ./block/iscsi that is aimed at being useful not only for kvm/qemu but for all scsi relates applications. Patch 13 adds the block driver

Re: [Qemu-devel] [Patch 0/14] builtin iscsi support

2010-12-03 Thread Stefan Hajnoczi
On Fri, Dec 3, 2010 at 11:09 AM, ronniesahlb...@gmail.com wrote: This series of pathces adds built in iscsi support to qemu. Christoph asked why block/iscsi.c exists and we don't have something like hw/iscsi-disk.c. Any thoughts on pass-through SCSI support so CDBs from guest SCSI can be

Re: [Qemu-devel] [Patch 0/14] builtin iscsi support

2010-12-03 Thread ronnie sahlberg
On Fri, Dec 3, 2010 at 10:42 PM, Stefan Hajnoczi stefa...@gmail.com wrote: On Fri, Dec 3, 2010 at 11:09 AM,  ronniesahlb...@gmail.com wrote: This series of pathces adds built in iscsi support to qemu. Christoph asked why block/iscsi.c exists and we don't have something like hw/iscsi-disk.c.  

Re: [Qemu-devel] [Patch 0/14] builtin iscsi support

2010-12-03 Thread Anthony Liguori
On 12/03/2010 05:09 AM, ronniesahlb...@gmail.com wrote: This series of pathces adds built in iscsi support to qemu. The first 12 patches 14 adds a general purpose iscsi client library in a separate subdirectory ./block/iscsi that is aimed at being useful not only for kvm/qemu but for all scsi

Re: [Qemu-devel] [Patch 0/14] builtin iscsi support

2010-12-03 Thread ronnie sahlberg
On Sat, Dec 4, 2010 at 2:05 AM, Anthony Liguori anth...@codemonkey.ws wrote: On 12/03/2010 05:09 AM, ronniesahlb...@gmail.com wrote: Note that ./block/iscsi/* is aimed at being re-used outisde of qemu/kvm in other applications why qemu/kvm specific calkls are not used there. So should the

Re: [Qemu-devel] [Patch 0/14] builtin iscsi support

2010-12-03 Thread Anthony Liguori
On 12/03/2010 01:57 PM, ronnie sahlberg wrote: On Sat, Dec 4, 2010 at 2:05 AM, Anthony Liguorianth...@codemonkey.ws wrote: On 12/03/2010 05:09 AM, ronniesahlb...@gmail.com wrote: Note that ./block/iscsi/* is aimed at being re-used outisde of qemu/kvm in other applications why