qemu-block
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-block] [PATCH v6 18/25] block: Add sgfnt_runtime_opts to Block


From: Alberto Garcia
Subject: Re: [Qemu-block] [PATCH v6 18/25] block: Add sgfnt_runtime_opts to BlockDriver
Date: Thu, 02 Nov 2017 17:11:58 +0100
User-agent: Notmuch/0.18.2 (http://notmuchmail.org) Emacs/24.4.1 (i586-pc-linux-gnu)

On Fri 29 Sep 2017 06:53:40 PM CEST, Max Reitz wrote:
>      QLIST_ENTRY(BlockDriver) list;
> +
> +    /* Pointer to a NULL-terminated array of names of significant options 
> that
> +     * can be specified for bdrv_open(). A significant option is one that
> +     * changes the data of a BDS.
> +     * If this pointer is NULL, the array is considered empty.
> +     * "filename" and "driver" are always considered significant. */
> +    const char *const *sgfnt_runtime_opts;
>  };

Is sgfnt a common acronym? I actually had to look it up...

> +static const char *const iscsi_sgfnt_runtime_opts[] = {
> +    "transport",
> +    "portal",
> +    "target",
> +    "user",
> +    "password",
> +    "password-secret",
> +    "lun",
> +    "initiator-name",
> +    "header-digest",
> +
> +    NULL
> +};

Ideally it would be nice to have constants for all these options, but
this is a pre-existing problem.

Reviewed-by: Alberto Garcia <address@hidden>

Berto



reply via email to

[Prev in Thread] Current Thread [Next in Thread]