[libvirt] [PATCH 1/1] add support for iSER block type.

Peter Krempa pkrempa at redhat.com
Wed Dec 13 09:08:38 UTC 2017


On Wed, Dec 13, 2017 at 13:52:55 +0800, lichstor at gmail.com wrote:
> From: zhangshengyu <zhangshengyu at fusionstack.cn>
> 
> ---
>  src/conf/domain_conf.c        |  8 ++++-
>  src/qemu/qemu_block.c         |  3 +-
>  src/qemu/qemu_command.c       |  3 +-
>  src/qemu/qemu_domain.c        |  2 +-
>  src/qemu/qemu_driver.c        |  3 ++
>  src/qemu/qemu_parse_command.c |  7 ++++
>  src/util/virstoragefile.c     | 75 +++++++++++++++++++++++++++++++++++++++++++
>  src/util/virstoragefile.h     |  1 +
>  8 files changed, 98 insertions(+), 4 deletions(-)

[...]

> @@ -3295,6 +3368,7 @@ static const struct virStorageSourceJSONDriverParser jsonParsers[] = {
>      {"tftp", virStorageSourceParseBackingJSONUri, VIR_STORAGE_NET_PROTOCOL_TFTP},
>      {"gluster", virStorageSourceParseBackingJSONGluster, 0},
>      {"iscsi", virStorageSourceParseBackingJSONiSCSI, 0},
> +    {"iser", virStorageSourceParseBackingJSONiSER, 0},

As I've said in my last reply: This is wrong. there's no 'iser' driver
in qemu. It's a type of transport for ISCSI.

>      {"nbd", virStorageSourceParseBackingJSONNbd, 0},
>      {"sheepdog", virStorageSourceParseBackingJSONSheepdog, 0},
>      {"ssh", virStorageSourceParseBackingJSONSSH, 0},
> diff --git a/src/util/virstoragefile.h b/src/util/virstoragefile.h
> index 24382a0a6..33771ddaf 100644
> --- a/src/util/virstoragefile.h
> +++ b/src/util/virstoragefile.h
> @@ -129,6 +129,7 @@ typedef enum {
>      VIR_STORAGE_NET_PROTOCOL_SHEEPDOG,
>      VIR_STORAGE_NET_PROTOCOL_GLUSTER,
>      VIR_STORAGE_NET_PROTOCOL_ISCSI,
> +    VIR_STORAGE_NET_PROTOCOL_ISER,

... and thus this is wrong too. You need to add a new transport protocol
type, not a new storage protocol type.

Plus it's still missing tests.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20171213/16bcb6a3/attachment-0001.sig>


More information about the libvir-list mailing list