From: "Verma, Vishal L" <vishal.l.verma@intel.com>
To: "linux-nvdimm@lists.01.org" <linux-nvdimm@lists.01.org>,
"qi.fuli@jp.fujitsu.com" <qi.fuli@jp.fujitsu.com>
Subject: Re: [PATCH] ndctl, monitor: fix monitor can be started though no dimm event to monitor
Date: Thu, 19 Jul 2018 18:07:25 +0000 [thread overview]
Message-ID: <1532023643.7574.164.camel@intel.com> (raw)
In-Reply-To: <20180719085427.17836-1-qi.fuli@jp.fujitsu.com>
On Thu, 2018-07-19 at 17:54 +0900, QI Fuli wrote:
> Currently, the monitor still can be started though there is no dimm event
> to be monitored, which is caused by the typo of uses. In this case,
> no smart event message can be logged.
> This patch is used to fix this bug. When user starts the monitor with
> invalid dimm event in [--dimm-event] option, the monitor will stop and
> output error message.
>
> Signed-off-by: QI Fuli <qi.fuli@jp.fujitsu.com>
> ---
> ndctl/monitor.c | 16 ++++++++++------
> 1 file changed, 10 insertions(+), 6 deletions(-)
Looks good, applied.
>
> diff --git a/ndctl/monitor.c b/ndctl/monitor.c
> index 8300250..abab45f 100644
> --- a/ndctl/monitor.c
> +++ b/ndctl/monitor.c
> @@ -413,7 +413,7 @@ static int monitor_event(struct ndctl_ctx *ctx,
> return 0;
> }
>
> -static int parse_monitor_event(struct monitor *_monitor)
> +static int parse_monitor_event(struct monitor *_monitor, struct ndctl_ctx *ctx)
> {
> char *dimm_event, *save;
> const char *event;
> @@ -432,14 +432,18 @@ static int parse_monitor_event(struct monitor *_monitor)
> }
> if (strcmp(event, "dimm-spares-remaining") == 0)
> _monitor->event_flags |= ND_EVENT_SPARES_REMAINING;
> - if (strcmp(event, "dimm-media-temperature") == 0)
> + else if (strcmp(event, "dimm-media-temperature") == 0)
> _monitor->event_flags |= ND_EVENT_MEDIA_TEMPERATURE;
> - if (strcmp(event, "dimm-controller-temperature") == 0)
> + else if (strcmp(event, "dimm-controller-temperature") == 0)
> _monitor->event_flags |= ND_EVENT_CTRL_TEMPERATURE;
> - if (strcmp(event, "dimm-health-state") == 0)
> + else if (strcmp(event, "dimm-health-state") == 0)
> _monitor->event_flags |= ND_EVENT_HEALTH_STATE;
> - if (strcmp(event, "dimm-unclean-shutdown") == 0)
> + else if (strcmp(event, "dimm-unclean-shutdown") == 0)
> _monitor->event_flags |= ND_EVENT_UNCLEAN_SHUTDOWN;
> + else {
> + err(ctx, "no dimm-event named %s\n", event);
> + return 1;
> + }
> }
>
> free(dimm_event);
> @@ -620,7 +624,7 @@ int cmd_monitor(int argc, const char **argv, void *ctx)
> notice((struct ndctl_ctx *)ctx, "ndctl monitor daemon started\n");
> }
>
> - if (parse_monitor_event(&monitor))
> + if (parse_monitor_event(&monitor, (struct ndctl_ctx *)ctx))
> goto out;
>
> fctx.filter_bus = filter_bus;
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
prev parent reply other threads:[~2018-07-19 18:08 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-19 8:54 [PATCH] ndctl, monitor: fix monitor can be started though no dimm event to monitor QI Fuli
2018-07-19 18:07 ` Verma, Vishal L [this message]
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=1532023643.7574.164.camel@intel.com \
--to=vishal.l.verma@intel.com \
--cc=linux-nvdimm@lists.01.org \
--cc=qi.fuli@jp.fujitsu.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.