Linux Device Mapper development
 help / color / mirror / Atom feed
From: Xose Vazquez Perez <xose.vazquez@gmail.com>
To: Christophe Varoqui <christophe.varoqui@opensvc.com>
Cc: device-mapper development <dm-devel@redhat.com>
Subject: Re: [PATCH] multipath-tools: replace multipath configuration output
Date: Fri, 14 Apr 2017 01:56:09 +0200	[thread overview]
Message-ID: <1b9e3811-796a-7d5b-b217-2224fffe3a36@gmail.com> (raw)
In-Reply-To: <CABr-Gnee6+q-wco7662ptvYuUKWHgdQbEC=zFYQCi_cUHGQ+EQ@mail.gmail.com>

On 04/12/2017 09:35 AM, Christophe Varoqui wrote:

> Merged,

No, it's missing.

> On Sat, Apr 8, 2017 at 3:30 PM, Xose Vazquez Perez <xose.vazquez@gmail.com <mailto:xose.vazquez@gmail.com>> wrote:
> 
>     Cc: Christophe Varoqui <christophe.varoqui@opensvc.com <mailto:christophe.varoqui@opensvc.com>>
>     Cc: device-mapper development <dm-devel@redhat.com <mailto:dm-devel@redhat.com>>
>     Signed-off-by: Xose Vazquez Perez <xose.vazquez@gmail.com <mailto:xose.vazquez@gmail.com>>
>     ---
>      libmultipath/propsel.c | 12 ++++++------
>      1 file changed, 6 insertions(+), 6 deletions(-)
> 
>     diff --git a/libmultipath/propsel.c b/libmultipath/propsel.c
>     index dd10ceb..5f70d86 100644
>     --- a/libmultipath/propsel.c
>     +++ b/libmultipath/propsel.c
>     @@ -162,7 +162,7 @@ int select_pgpolicy(struct config *conf, struct multipath * mp)
> 
>             if (conf->pgpolicy_flag > 0) {
>                     mp->pgpolicy = conf->pgpolicy_flag;
>     -               origin = "(cmd line flag)";
>     +               origin = "(setting: multipath command line [-p] flag)";
>                     goto out;
>             }
>             mp_set_mpe(pgpolicy);
>     @@ -251,18 +251,18 @@ int select_alias(struct config *conf, struct multipath * mp)
>                                     mp->alias_old, mp->alias_prefix,
>                                     conf->bindings_read_only);
>                     memset (mp->alias_old, 0, WWID_SIZE);
>     -               origin = "(using existing alias)";
>     +               origin = "(setting: using existing alias)";
>             }
> 
>             if (mp->alias == NULL) {
>                     mp->alias = get_user_friendly_alias(mp->wwid,
>                                     conf->bindings_file, mp->alias_prefix, conf->bindings_read_only);
>     -               origin = "(user_friendly_name)";
>     +               origin = "(setting: user_friendly_name)";
>             }
>      out:
>             if (mp->alias == NULL) {
>                     mp->alias = STRDUP(mp->wwid);
>     -               origin = "(default to wwid)";
>     +               origin = "(setting: default to WWID)";
>             }
>             if (mp->alias)
>                     condlog(3, "%s: alias = %s %s", mp->wwid, mp->alias, origin);
>     @@ -565,7 +565,7 @@ int select_retain_hwhandler(struct config *conf, struct multipath *mp)
> 
>             if (!VERSION_GE(conf->version, minv_dm_retain)) {
>                     mp->retain_hwhandler = RETAIN_HWHANDLER_OFF;
>     -               origin = "(requires kernel version >= 1.5.0)";
>     +               origin = "(setting: WARNING, requires kernel version >= 1.5.0)";
>                     goto out;
>             }
>             mp_set_ovr(retain_hwhandler);
>     @@ -614,7 +614,7 @@ int select_deferred_remove(struct config *conf, struct multipath *mp)
> 
>      #ifndef LIBDM_API_DEFERRED
>             mp->deferred_remove = DEFERRED_REMOVE_OFF;
>     -       origin = "(not compiled with support)";
>     +       origin = "(setting: WARNING, not compiled with support)";
>             goto out;
>      #endif
>             if (mp->deferred_remove == DEFERRED_REMOVE_IN_PROGRESS) {
>     --
>     2.12.2
> 
> 

  reply	other threads:[~2017-04-13 23:56 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-08 13:30 [PATCH] multipath-tools: replace multipath configuration output Xose Vazquez Perez
2017-04-12  7:35 ` Christophe Varoqui
2017-04-13 23:56   ` Xose Vazquez Perez [this message]
2017-04-14  8:29     ` Christophe Varoqui
  -- strict thread matches above, loose matches on Subject: below --
2017-04-18  0:07 [PATCH] multipath-tools: Replace " Xose Vazquez Perez
2017-05-18  0:06 ` Xose Vazquez Perez
2017-06-21 10:33   ` Christophe Varoqui
2016-11-24 22:44 [PATCH] multipath-tools: replace " Xose Vazquez Perez
2016-11-25  9:00 ` Martin Wilck
2016-11-26  9:21   ` Christophe Varoqui
2016-12-02  3:52     ` Benjamin Marzinski
2016-12-07 22:48       ` Xose Vazquez Perez
2016-12-14 18:29         ` Christophe Varoqui
2016-12-07 15:44   ` Xose Vazquez Perez
2016-12-07 16:17     ` Martin Wilck
     [not found]       ` <c78854cd-f7f2-77ef-2d19-a5ff236e9a37@gmail.com>
2017-08-20  0:47         ` Xose Vazquez Perez

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1b9e3811-796a-7d5b-b217-2224fffe3a36@gmail.com \
    --to=xose.vazquez@gmail.com \
    --cc=christophe.varoqui@opensvc.com \
    --cc=dm-devel@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox