On Sat, Nov 26, 2016 at 10:21:09AM +0100, Christophe Varoqui wrote:
>    I also like the more structured wording you propose, and I can see how
>    greping "setting:" can help.
>    I'll wait a little longer to receive ack (not receive nack?) from
>    distributors, as they face the annoyed users whose scripts break when we
>    change our log strings format.

I don't really see the need for this change. But we wouldn't be pulling
it in until the next major RHEL release, and if the debug messages
change on a major relese, I'm not too worried about that. I can also see
the benefit of the "setting:" prefix, but in truth, I don't think anyone
looks at these except when something goes wrong, and in that case, they
are probably grepping for the option name anyway.

So, I'm not NACKing this, but I'm not pushing for it either. I really
don't care, one way or ther other.

-Ben

>    Thanks.
>    On Fri, Nov 25, 2016 at 10:00 AM, Martin Wilck <[1]mwi...@suse.com> wrote:
> 
>      I am not sure I see the merit of these changes. If it's really
>      necessary to change the wording of the log messages which people have
>      got used to, the new ones should be really more self-explanatory than
>      the old ones.
> 
>      The common "setting: " formatting is nice but IMHO this alone doesn't
>      really justify overthrowing old habits.
>      On Thu, 2016-11-24 at 23:44 +0100, Xose Vazquez Perez wrote:
>      > sysfs setting           -> setting: kernel sysfs
>      >
>      > detected setting        -> setting: array autodetected
>      >
>      > controller setting      -> setting: array configuration
> 
>      Is "array" really more understandable to users than "controller"?
>      These settings come from hwentries, so in reality they're either part
>      of the built-in hwtable or of the multipath.conf "devices" section, or
>      am I wrong here?
>      > internal default        -> setting: multipath internal
>      >
>      > overrides setting       -> setting: multipath.conf overrides section
>      >
>      > LUN setting             -> setting: multipath.conf multipaths section
>      >
>      > config file default
>      > config file setting     -> setting: multipath.conf defaults/devices
>      > section
> 
>      Have you double-checked if this is correct for all options? It would be
>      helpful for users to be able to distinguish which config file section
>      the option was taken from (defaults/devices/multipaths/overrides). The
>      same argument applies to the hardware enries - being able to
>      distinguish built in hardware defaults from config file "devices"
>      settings would be really helpful, but this patch doesn't provide that
>      functionality.
> 
>      Regards
>      Martin
> 
>      >
>      >
>      > Cc: Benjamin Marzinski <[2]bmarz...@redhat.com>
>      > Cc: Hannes Reinecke <[3]h...@suse.de>
>      > Cc: Christophe Varoqui <[4]christophe.varo...@opensvc.com>
>      > Cc: device-mapper development <[5]dm-devel@redhat.com>
>      > Signed-off-by: Xose Vazquez Perez <[6]xose.vazq...@gmail.com>
>      > ---
>      >  libmultipath/propsel.c | 66 +++++++++++++++++++++++++---------------
>      > ----------
>      >  1 file changed, 33 insertions(+), 33 deletions(-)
>      >
>      > diff --git a/libmultipath/propsel.c b/libmultipath/propsel.c
>      > index d1db7c3..c0bc616 100644
>      > --- a/libmultipath/propsel.c
>      > +++ b/libmultipath/propsel.c
>      > @@ -41,28 +41,28 @@ do {
>      >                       \
>      >  #define do_default(dest, value)
>      >       \
>      >  do {
>      > \
>      >       dest = value;
>      >       \
>      > -     origin = "(internal default)";
>      >       \
>      > +     origin = "(setting: multipath internal)";
>      > \
>      >  } while(0)
>      >  
>      >  #define mp_set_mpe(var)
>      >       \
>      > -do_set(var, mp->mpe, mp->var, "(LUN setting)")
>      > +do_set(var, mp->mpe, mp->var, "(setting: multipath.conf multipaths
>      > section)")
>      >  #define mp_set_hwe(var)
>      >       \
>      > -do_set(var, mp->hwe, mp->var, "(controller setting)")
>      > +do_set(var, mp->hwe, mp->var, "(setting: array configuration)")
>      >  #define mp_set_ovr(var)
>      >       \
>      > -do_set(var, conf->overrides, mp->var, "(overrides setting)")
>      > +do_set(var, conf->overrides, mp->var, "(setting: multipath.conf
>      > overrides section)")
>      >  #define mp_set_conf(var)
>      > \
>      > -do_set(var, conf, mp->var, "(config file default)")
>      > +do_set(var, conf, mp->var, "(setting: multipath.conf
>      > defaults/devices section)")
>      >  #define mp_set_default(var, value)
>      > \
>      >  do_default(mp->var, value)
>      >  
>      >  #define pp_set_mpe(var)
>      >       \
>      > -do_set(var, mpe, pp->var, "(LUN setting)")
>      > +do_set(var, mpe, pp->var, "(setting: multipath.conf multipaths
>      > section)")
>      >  #define pp_set_hwe(var)
>      >       \
>      > -do_set(var, pp->hwe, pp->var, "(controller setting)")
>      > +do_set(var, pp->hwe, pp->var, "(setting: array configuration)")
>      >  #define pp_set_conf(var)
>      > \
>      > -do_set(var, conf, pp->var, "(config file default)")
>      > +do_set(var, conf, pp->var, "(setting: multipath.conf
>      > defaults/devices section)")
>      >  #define pp_set_ovr(var)
>      >       \
>      > -do_set(var, conf->overrides, pp->var, "(overrides setting)")
>      > +do_set(var, conf->overrides, pp->var, "(setting: multipath.conf
>      > overrides section)")
>      >  #define pp_set_default(var, value)
>      > \
>      >  do_default(pp->var, value)
>      >  
>      > @@ -77,9 +77,9 @@ do {
>      >                       \
>      >  } while(0)
>      >  
>      >  #define set_attr_mpe(var, shift)
>      > \
>      > -do_attr_set(var, mp->mpe, shift, "(LUN setting)")
>      > +do_attr_set(var, mp->mpe, shift, "(setting: multipath.conf
>      > multipaths section)")
>      >  #define set_attr_conf(var, shift)
>      > \
>      > -do_attr_set(var, conf, shift, "(config file default)")
>      > +do_attr_set(var, conf, shift, "(setting: multipath.conf
>      > defaults/devices section)")
>      >  
>      >  int select_mode(struct config *conf, struct multipath *mp)
>      >  {
>      > @@ -214,13 +214,13 @@ want_user_friendly_names(struct config *conf,
>      > struct multipath * mp)
>      >       int user_friendly_names;
>      >  
>      >       do_set(user_friendly_names, mp->mpe, user_friendly_names,
>      > -            "(LUN setting)");
>      > +            "(setting: multipath.conf multipaths section)");
>      >       do_set(user_friendly_names, conf->overrides,
>      > user_friendly_names,
>      > -            "(overrides setting)");
>      > +            "(setting: multipath.conf overrides section)");
>      >       do_set(user_friendly_names, mp->hwe, user_friendly_names,
>      > -            "(controller setting)");
>      > +            "(setting: array configuration)");
>      >       do_set(user_friendly_names, conf, user_friendly_names,
>      > -            "(config file setting)");
>      > +            "(setting: multipath.conf defaults/devices
>      > section)");
>      >       do_default(user_friendly_names,
>      > DEFAULT_USER_FRIENDLY_NAMES);
>      >  out:
>      >       condlog(3, "%s: user_friendly_names = %s %s", mp->wwid,
>      > @@ -235,7 +235,7 @@ int select_alias(struct config *conf, struct
>      > multipath * mp)
>      >  
>      >       if (mp->mpe && mp->mpe->alias) {
>      >               mp->alias = STRDUP(mp->mpe->alias);
>      > -             origin = "(LUN setting)";
>      > +             origin = "(setting: multipath.conf multipaths
>      > section)";
>      >               goto out;
>      >       }
>      >  
>      > @@ -312,24 +312,24 @@ int select_checker(struct config *conf, struct
>      > path *pp)
>      >       char *origin, *checker_name;
>      >       struct checker * c = &pp->checker;
>      >  
>      > -     do_set(checker_name, conf->overrides, checker_name,
>      > "(overrides setting)");
>      > -     do_set(checker_name, pp->hwe, checker_name, "(controller
>      > setting)");
>      > -     do_set(checker_name, conf, checker_name, "(config file
>      > setting)");
>      > +     do_set(checker_name, conf->overrides, checker_name,
>      > "(setting: multipath.conf overrides section)");
>      > +     do_set(checker_name, pp->hwe, checker_name, "(setting: array
>      > configuration)");
>      > +     do_set(checker_name, conf, checker_name, "(setting:
>      > multipath.conf defaults/devices section)");
>      >       do_default(checker_name, DEFAULT_CHECKER);
>      >  out:
>      >       checker_get(conf->multipath_dir, c, checker_name);
>      >       condlog(3, "%s: path_checker = %s %s", pp->dev, c->name,
>      > origin);
>      >       if (conf->checker_timeout) {
>      >               c->timeout = conf->checker_timeout;
>      > -             condlog(3, "%s: checker timeout = %u s (config file
>      > default)",
>      > +             condlog(3, "%s: checker timeout = %u s (setting:
>      > multipath.conf defaults/devices section)",
>      >                               pp->dev, c->timeout);
>      >       }
>      >       else if (sysfs_get_timeout(pp, &c->timeout) > 0)
>      > -             condlog(3, "%s: checker timeout = %u ms (sysfs
>      > setting)",
>      > +             condlog(3, "%s: checker timeout = %u ms (setting:
>      > kernel sysfs)",
>      >                               pp->dev, c->timeout);
>      >       else {
>      >               c->timeout = DEF_TIMEOUT;
>      > -             condlog(3, "%s: checker timeout = %u ms (internal
>      > default)",
>      > +             condlog(3, "%s: checker timeout = %u ms (setting:
>      > multipath internal)",
>      >                               pp->dev, c->timeout);
>      >       }
>      >       return 0;
>      > @@ -397,17 +397,17 @@ int select_prio(struct config *conf, struct
>      > path *pp)
>      >       if (pp->detect_prio == DETECT_PRIO_ON) {
>      >               detect_prio(conf, pp);
>      >               if (prio_selected(p)) {
>      > -                     origin = "(detected setting)";
>      > +                     origin = "(setting: array autodetected)";
>      >                       goto out;
>      >               }
>      >       }
>      >       mpe = find_mpe(conf->mptable, pp->wwid);
>      > -     set_prio(conf->multipath_dir, mpe, "(LUN setting)");
>      > -     set_prio(conf->multipath_dir, conf->overrides, "(overrides
>      > setting)");
>      > -     set_prio(conf->multipath_dir, pp->hwe, "controller
>      > setting)");
>      > -     set_prio(conf->multipath_dir, conf, "(config file
>      > default)");
>      > +     set_prio(conf->multipath_dir, mpe, "(setting: multipath.conf
>      > multipaths section)");
>      > +     set_prio(conf->multipath_dir, conf->overrides, "(setting:
>      > multipath.conf overrides section)");
>      > +     set_prio(conf->multipath_dir, pp->hwe, "(setting: array
>      > configuration)");
>      > +     set_prio(conf->multipath_dir, conf, "(setting:
>      > multipath.conf defaults/devices section)");
>      >       prio_get(conf->multipath_dir, p, DEFAULT_PRIO,
>      > DEFAULT_PRIO_ARGS);
>      > -     origin = "(internal default)";
>      > +     origin = "(setting: multipath internal)";
>      >  out:
>      >       /*
>      >        * fetch tpgs mode for alua, if its not already obtained
>      > @@ -448,7 +448,7 @@ out:
>      >               condlog(3, "%s: no_path_retry = %s (inherited
>      > setting)",
>      >                       mp->alias, buff);
>      >       else
>      > -             condlog(3, "%s: no_path_retry = undef (internal
>      > default)",
>      > +             condlog(3, "%s: no_path_retry = undef (setting:
>      > multipath internal)",
>      >                       mp->alias);
>      >       return 0;
>      >  }
>      > @@ -458,10 +458,10 @@ select_minio_rq (struct config *conf, struct
>      > multipath * mp)
>      >  {
>      >       char *origin;
>      >  
>      > -     do_set(minio_rq, mp->mpe, mp->minio, "(LUN setting)");
>      > -     do_set(minio_rq, conf->overrides, mp->minio, "(overrides
>      > setting)");
>      > -     do_set(minio_rq, mp->hwe, mp->minio, "(controller
>      > setting)");
>      > -     do_set(minio_rq, conf, mp->minio, "(config file setting)");
>      > +     do_set(minio_rq, mp->mpe, mp->minio, "(setting:
>      > multipath.conf multipaths section)");
>      > +     do_set(minio_rq, conf->overrides, mp->minio, "(setting:
>      > multipath.conf overrides section)");
>      > +     do_set(minio_rq, mp->hwe, mp->minio, "(setting: array
>      > configuration)");
>      > +     do_set(minio_rq, conf, mp->minio, "(setting: multipath.conf
>      > defaults/devices section)");
>      >       do_default(mp->minio, DEFAULT_MINIO_RQ);
>      >  out:
>      >       condlog(3, "%s: minio = %i %s", mp->alias, mp->minio,
>      > origin);
> 
>      --
>      Dr. Martin Wilck <[7]mwi...@suse.com>, Tel. [8]+49 (0)911 74053 2107
>      SUSE Linux GmbH, GF: Felix Imendörffer, Jane Smithard, Graham Norton
>      HRB 21284 (AG Nürnberg)
> 
>      --
>      dm-devel mailing list
>      [9]dm-devel@redhat.com
>      [10]https://www.redhat.com/mailman/listinfo/dm-devel
> 
> References
> 
>    Visible links
>    1. mailto:mwi...@suse.com
>    2. mailto:bmarz...@redhat.com
>    3. mailto:h...@suse.de
>    4. mailto:christophe.varo...@opensvc.com
>    5. mailto:dm-devel@redhat.com
>    6. mailto:xose.vazq...@gmail.com
>    7. mailto:mwi...@suse.com
>    8. file:///tmp/tel:%2B49%20%280%29911%2074053%202107
>    9. mailto:dm-devel@redhat.com
>   10. https://www.redhat.com/mailman/listinfo/dm-devel

> --
> dm-devel mailing list
> dm-devel@redhat.com
> https://www.redhat.com/mailman/listinfo/dm-devel

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel

Reply via email to