diff --git a/plugins/fdp/fdp.c b/plugins/fdp/fdp.c index cac0b2bd72..c61706ac47 100644 --- a/plugins/fdp/fdp.c +++ b/plugins/fdp/fdp.c @@ -215,6 +215,12 @@ static int fdp_stats(int argc, char **argv, struct command *cmd, struct plugin * if (cfg.raw_binary) flags = BINARY; + if (!cfg.egid) { + fprintf(stderr, "endurance group identifier required\n"); + err = -EINVAL; + goto out; + } + memset(&stats, 0x0, sizeof(stats)); err = nvme_get_log_fdp_stats(dev->direct.fd, cfg.egid, 0, sizeof(stats), &stats); @@ -276,6 +282,12 @@ static int fdp_events(int argc, char **argv, struct command *cmd, struct plugin if (cfg.raw_binary) flags = BINARY; + if (!cfg.egid) { + fprintf(stderr, "endurance group identifier required\n"); + err = -EINVAL; + goto out; + } + memset(&events, 0x0, sizeof(events)); err = nvme_get_log_fdp_events(dev->direct.fd, cfg.egid,