diff options
author | Daniel Verkamp <daniel.verkamp@intel.com> | 2017-08-30 15:18:19 -0700 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2017-09-01 09:48:01 +0200 |
commit | 40a5fce495715c48c2e02668144e68a507ac5a30 (patch) | |
tree | db42a174db1561055307f33fd89fab88d169a1e5 /drivers/nvme/host/fabrics.c | |
parent | 28dd5cf70aaac2a12a16847ae0a978f0b0575194 (diff) | |
download | linux-40a5fce495715c48c2e02668144e68a507ac5a30.tar.bz2 |
nvme-fabrics: generate spec-compliant UUID NQNs
The default host NQN, which is generated based on the host's UUID,
does not follow the UUID-based NQN format laid out in the NVMe 1.3
specification. Remove the "NVMf:" portion of the NQN to match the spec.
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-by: Max Gurtovoy <maxg@mellanox.com>
Cc: stable@vger.kernel.org
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/nvme/host/fabrics.c')
-rw-r--r-- | drivers/nvme/host/fabrics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/fabrics.c b/drivers/nvme/host/fabrics.c index 53a9598e3aee..47307752dc65 100644 --- a/drivers/nvme/host/fabrics.c +++ b/drivers/nvme/host/fabrics.c @@ -75,7 +75,7 @@ static struct nvmf_host *nvmf_host_default(void) kref_init(&host->ref); snprintf(host->nqn, NVMF_NQN_SIZE, - "nqn.2014-08.org.nvmexpress:NVMf:uuid:%pUb", &host->id); + "nqn.2014-08.org.nvmexpress:uuid:%pUb", &host->id); mutex_lock(&nvmf_hosts_mutex); list_add_tail(&host->list, &nvmf_hosts); |