From: Jay Freyensee Date: Wed, 7 Sep 2016 20:51:13 +0000 (-0700) Subject: nvme-cli: match treq value names to spec X-Git-Tag: v1.0~64^2~2 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c74e7d48956fc935b6e3cff6da6fca9bc36e41f5;p=users%2Fsagi%2Fnvme-cli.git nvme-cli: match treq value names to spec spec uses "not specified" as one of the values for treq, just like other discovery parameters (like rdma_prtype). Signed-off-by: Jay Freyensee Reviewed-by: Sagi Grimberg --- diff --git a/fabrics.c b/fabrics.c index 18e961ce..e7e3c565 100644 --- a/fabrics.c +++ b/fabrics.c @@ -116,7 +116,7 @@ static inline const char *nqntype_str(__u8 nqntype) } static const char * const treqs[] = { - [NVMF_TREQ_NOT_SPECIFIED] = "unspecified transport requirements", + [NVMF_TREQ_NOT_SPECIFIED] = "not specified", [NVMF_TREQ_REQUIRED] = "required", [NVMF_TREQ_NOT_REQUIRED] = "not required", };