2015-09-21 15:52:41 +00:00
|
|
|
/*-
|
|
|
|
* BSD LICENSE
|
|
|
|
*
|
2020-01-13 15:03:51 +00:00
|
|
|
* Copyright (c) Intel Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2020 Mellanox Technologies LTD. All rights reserved.
|
2015-09-21 15:52:41 +00:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* * Neither the name of Intel Corporation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nvme_internal.h"
|
|
|
|
|
2016-02-09 18:06:48 +00:00
|
|
|
static inline struct spdk_nvme_ns_data *
|
2016-02-10 18:26:12 +00:00
|
|
|
_nvme_ns_get_data(struct spdk_nvme_ns *ns)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
|
|
|
return &ns->ctrlr->nsdata[ns->id - 1];
|
|
|
|
}
|
|
|
|
|
2018-09-14 06:20:55 +00:00
|
|
|
/**
|
|
|
|
* Update Namespace flags based on Identify Controller
|
|
|
|
* and Identify Namespace. This can be also used for
|
|
|
|
* Namespace Attribute Notice events and Namespace
|
|
|
|
* operations such as Attach/Detach.
|
|
|
|
*/
|
|
|
|
void
|
2018-09-13 07:05:47 +00:00
|
|
|
nvme_ns_set_identify_data(struct spdk_nvme_ns *ns)
|
2016-03-08 06:00:07 +00:00
|
|
|
{
|
2018-09-13 07:05:47 +00:00
|
|
|
struct spdk_nvme_ns_data *nsdata;
|
2016-03-08 06:00:07 +00:00
|
|
|
|
|
|
|
nsdata = _nvme_ns_get_data(ns);
|
|
|
|
|
2017-03-11 04:40:17 +00:00
|
|
|
ns->flags = 0x0000;
|
|
|
|
|
2016-03-08 06:00:07 +00:00
|
|
|
ns->sector_size = 1 << nsdata->lbaf[nsdata->flbas.format].lbads;
|
2017-01-23 22:32:46 +00:00
|
|
|
ns->extended_lba_size = ns->sector_size;
|
2016-03-08 06:00:07 +00:00
|
|
|
|
2017-01-23 22:32:46 +00:00
|
|
|
ns->md_size = nsdata->lbaf[nsdata->flbas.format].ms;
|
|
|
|
if (nsdata->flbas.extended) {
|
|
|
|
ns->flags |= SPDK_NVME_NS_EXTENDED_LBA_SUPPORTED;
|
|
|
|
ns->extended_lba_size += ns->md_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
ns->sectors_per_max_io = spdk_nvme_ns_get_max_io_xfer_size(ns) / ns->extended_lba_size;
|
2017-08-07 17:17:29 +00:00
|
|
|
|
|
|
|
if (nsdata->noiob) {
|
|
|
|
ns->sectors_per_stripe = nsdata->noiob;
|
2020-09-04 11:27:29 +00:00
|
|
|
SPDK_DEBUGLOG(nvme, "ns %u optimal IO boundary %" PRIu32 " blocks\n",
|
2017-08-07 17:17:29 +00:00
|
|
|
ns->id, ns->sectors_per_stripe);
|
|
|
|
} else if (ns->ctrlr->quirks & NVME_INTEL_QUIRK_STRIPING &&
|
|
|
|
ns->ctrlr->cdata.vs[3] != 0) {
|
|
|
|
ns->sectors_per_stripe = (1ULL << ns->ctrlr->cdata.vs[3]) * ns->ctrlr->min_page_size /
|
|
|
|
ns->sector_size;
|
2020-09-04 11:27:29 +00:00
|
|
|
SPDK_DEBUGLOG(nvme, "ns %u stripe size quirk %" PRIu32 " blocks\n",
|
2017-08-07 17:17:29 +00:00
|
|
|
ns->id, ns->sectors_per_stripe);
|
|
|
|
} else {
|
|
|
|
ns->sectors_per_stripe = 0;
|
|
|
|
}
|
2016-03-08 06:00:07 +00:00
|
|
|
|
|
|
|
if (ns->ctrlr->cdata.oncs.dsm) {
|
|
|
|
ns->flags |= SPDK_NVME_NS_DEALLOCATE_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
2019-12-13 11:31:19 +00:00
|
|
|
if (ns->ctrlr->cdata.oncs.compare) {
|
|
|
|
ns->flags |= SPDK_NVME_NS_COMPARE_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
2016-03-08 06:00:07 +00:00
|
|
|
if (ns->ctrlr->cdata.vwc.present) {
|
|
|
|
ns->flags |= SPDK_NVME_NS_FLUSH_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ns->ctrlr->cdata.oncs.write_zeroes) {
|
|
|
|
ns->flags |= SPDK_NVME_NS_WRITE_ZEROES_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
2019-09-06 00:01:58 +00:00
|
|
|
if (ns->ctrlr->cdata.oncs.write_unc) {
|
|
|
|
ns->flags |= SPDK_NVME_NS_WRITE_UNCORRECTABLE_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
2016-03-08 06:00:07 +00:00
|
|
|
if (nsdata->nsrescap.raw) {
|
|
|
|
ns->flags |= SPDK_NVME_NS_RESERVATION_SUPPORTED;
|
|
|
|
}
|
2016-04-07 06:52:43 +00:00
|
|
|
|
|
|
|
ns->pi_type = SPDK_NVME_FMT_NVM_PROTECTION_DISABLE;
|
|
|
|
if (nsdata->lbaf[nsdata->flbas.format].ms && nsdata->dps.pit) {
|
|
|
|
ns->flags |= SPDK_NVME_NS_DPS_PI_SUPPORTED;
|
|
|
|
ns->pi_type = nsdata->dps.pit;
|
|
|
|
}
|
2018-09-13 07:05:47 +00:00
|
|
|
}
|
|
|
|
|
2018-09-14 06:20:55 +00:00
|
|
|
static int
|
2018-09-13 07:05:47 +00:00
|
|
|
nvme_ctrlr_identify_ns(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
2020-01-13 15:03:51 +00:00
|
|
|
struct nvme_completion_poll_status *status;
|
2018-09-13 07:05:47 +00:00
|
|
|
struct spdk_nvme_ns_data *nsdata;
|
|
|
|
int rc;
|
|
|
|
|
2020-03-19 09:55:55 +00:00
|
|
|
status = calloc(1, sizeof(*status));
|
2020-01-13 15:03:51 +00:00
|
|
|
if (!status) {
|
|
|
|
SPDK_ERRLOG("Failed to allocate status tracker\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2018-09-13 07:05:47 +00:00
|
|
|
nsdata = _nvme_ns_get_data(ns);
|
nvme: add a csi parameter to nvme_ctrlr_cmd_identify()
With the introduction of namespace types, the identify command has
gained an additional parameter: Command Set Identifier (CSI).
This parameter is similar to the existing parameters NSID and CNTID,
and is not used by all CNS values.
Most notably, the CSI parameter is not used for the existing CNS
values 00h (ID NS) and 01h (ID CTRL).
There are new CNS values, e.g. 05h (ID IOCS specific NS), and
06h (ID IOCS specific CTRL), which do take the new CSI parameter.
The new CNS values instead return Command Set Specific data structures,
which is basically an additional data structure. Therefore, the CNS
values 00h and 01h are very much still in use.
(Even the NVM Command Set has a Command Set Specific data structure,
even though all fields in that data structure are currently reserved.)
Since the CSI parameter is unused by all the existing calls to
nvme_ctrlr_cmd_identify() (since none of the calls send in a CNS value
that uses CSI), simply send in 0 for all existing calls.
No functional change intended.
Signed-off-by: Niklas Cassel <niklas.cassel@wdc.com>
Change-Id: Ia2b2324393a0707152b2f8511f0a22ad4a12bd46
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4309
Community-CI: Broadcom CI
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
2020-09-17 13:00:33 +00:00
|
|
|
rc = nvme_ctrlr_cmd_identify(ns->ctrlr, SPDK_NVME_IDENTIFY_NS, 0, ns->id, 0,
|
2018-09-13 07:05:47 +00:00
|
|
|
nsdata, sizeof(*nsdata),
|
2020-01-13 15:03:51 +00:00
|
|
|
nvme_completion_poll_cb, status);
|
2018-09-13 07:05:47 +00:00
|
|
|
if (rc != 0) {
|
2020-01-13 15:03:51 +00:00
|
|
|
free(status);
|
2018-09-13 07:05:47 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2020-05-15 03:50:18 +00:00
|
|
|
if (nvme_wait_for_completion_robust_lock(ns->ctrlr->adminq, status,
|
2018-09-13 07:05:47 +00:00
|
|
|
&ns->ctrlr->ctrlr_lock)) {
|
2020-01-13 15:03:51 +00:00
|
|
|
if (!status->timed_out) {
|
|
|
|
free(status);
|
|
|
|
}
|
2018-09-13 07:05:47 +00:00
|
|
|
/* This can occur if the namespace is not active. Simply zero the
|
|
|
|
* namespace data and continue. */
|
|
|
|
nvme_ns_destruct(ns);
|
|
|
|
return 0;
|
|
|
|
}
|
2020-01-13 15:03:51 +00:00
|
|
|
free(status);
|
2018-09-13 07:05:47 +00:00
|
|
|
|
|
|
|
nvme_ns_set_identify_data(ns);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-09-17 15:27:31 +00:00
|
|
|
static int
|
|
|
|
nvme_ctrlr_identify_ns_iocs_specific(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
struct nvme_completion_poll_status *status;
|
|
|
|
struct spdk_nvme_ctrlr *ctrlr = ns->ctrlr;
|
|
|
|
struct spdk_nvme_zns_ns_data **nsdata_zns;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
switch (ns->csi) {
|
|
|
|
case SPDK_NVME_CSI_ZNS:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* This switch must handle all cases for which
|
|
|
|
* nvme_ns_has_supported_iocs_specific_data() returns true,
|
|
|
|
* other cases should never happen.
|
|
|
|
*/
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(ctrlr->nsdata_zns);
|
|
|
|
nsdata_zns = &ctrlr->nsdata_zns[ns->id - 1];
|
|
|
|
assert(!*nsdata_zns);
|
|
|
|
*nsdata_zns = spdk_zmalloc(sizeof(**nsdata_zns), 64, NULL, SPDK_ENV_SOCKET_ID_ANY,
|
|
|
|
SPDK_MALLOC_SHARE | SPDK_MALLOC_DMA);
|
|
|
|
if (!*nsdata_zns) {
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = calloc(1, sizeof(*status));
|
|
|
|
if (!status) {
|
|
|
|
SPDK_ERRLOG("Failed to allocate status tracker\n");
|
|
|
|
nvme_ns_free_zns_specific_data(ns);
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = nvme_ctrlr_cmd_identify(ctrlr, SPDK_NVME_IDENTIFY_NS_IOCS, 0, ns->id, ns->csi,
|
|
|
|
*nsdata_zns, sizeof(**nsdata_zns),
|
|
|
|
nvme_completion_poll_cb, status);
|
|
|
|
if (rc != 0) {
|
|
|
|
nvme_ns_free_zns_specific_data(ns);
|
|
|
|
free(status);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nvme_wait_for_completion_robust_lock(ctrlr->adminq, status, &ctrlr->ctrlr_lock)) {
|
|
|
|
SPDK_ERRLOG("Failed to retrieve Identify IOCS Specific Namespace Data Structure\n");
|
|
|
|
nvme_ns_free_zns_specific_data(ns);
|
|
|
|
if (!status->timed_out) {
|
|
|
|
free(status);
|
|
|
|
}
|
|
|
|
return -ENXIO;
|
|
|
|
}
|
|
|
|
free(status);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-10-10 02:17:46 +00:00
|
|
|
static int
|
2018-09-13 07:05:47 +00:00
|
|
|
nvme_ctrlr_identify_id_desc(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
2020-01-13 15:03:51 +00:00
|
|
|
struct nvme_completion_poll_status *status;
|
2018-09-13 07:05:47 +00:00
|
|
|
int rc;
|
2018-03-22 00:36:06 +00:00
|
|
|
|
|
|
|
memset(ns->id_desc_list, 0, sizeof(ns->id_desc_list));
|
|
|
|
|
2020-09-07 11:59:35 +00:00
|
|
|
if ((ns->ctrlr->vs.raw < SPDK_NVME_VERSION(1, 3, 0) &&
|
|
|
|
!(ns->ctrlr->cap.bits.css & SPDK_NVME_CAP_CSS_IOCS)) ||
|
2018-09-13 07:05:47 +00:00
|
|
|
(ns->ctrlr->quirks & NVME_QUIRK_IDENTIFY_CNS)) {
|
2020-09-04 11:27:29 +00:00
|
|
|
SPDK_DEBUGLOG(nvme, "Version < 1.3; not attempting to retrieve NS ID Descriptor List\n");
|
2018-09-13 07:05:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-19 09:55:55 +00:00
|
|
|
status = calloc(1, sizeof(*status));
|
2020-01-13 15:03:51 +00:00
|
|
|
if (!status) {
|
|
|
|
SPDK_ERRLOG("Failed to allocate status tracker\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2020-09-04 11:27:29 +00:00
|
|
|
SPDK_DEBUGLOG(nvme, "Attempting to retrieve NS ID Descriptor List\n");
|
2018-09-13 07:05:47 +00:00
|
|
|
rc = nvme_ctrlr_cmd_identify(ns->ctrlr, SPDK_NVME_IDENTIFY_NS_ID_DESCRIPTOR_LIST, 0, ns->id,
|
nvme: add a csi parameter to nvme_ctrlr_cmd_identify()
With the introduction of namespace types, the identify command has
gained an additional parameter: Command Set Identifier (CSI).
This parameter is similar to the existing parameters NSID and CNTID,
and is not used by all CNS values.
Most notably, the CSI parameter is not used for the existing CNS
values 00h (ID NS) and 01h (ID CTRL).
There are new CNS values, e.g. 05h (ID IOCS specific NS), and
06h (ID IOCS specific CTRL), which do take the new CSI parameter.
The new CNS values instead return Command Set Specific data structures,
which is basically an additional data structure. Therefore, the CNS
values 00h and 01h are very much still in use.
(Even the NVM Command Set has a Command Set Specific data structure,
even though all fields in that data structure are currently reserved.)
Since the CSI parameter is unused by all the existing calls to
nvme_ctrlr_cmd_identify() (since none of the calls send in a CNS value
that uses CSI), simply send in 0 for all existing calls.
No functional change intended.
Signed-off-by: Niklas Cassel <niklas.cassel@wdc.com>
Change-Id: Ia2b2324393a0707152b2f8511f0a22ad4a12bd46
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/4309
Community-CI: Broadcom CI
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
2020-09-17 13:00:33 +00:00
|
|
|
0, ns->id_desc_list, sizeof(ns->id_desc_list),
|
2020-01-13 15:03:51 +00:00
|
|
|
nvme_completion_poll_cb, status);
|
2018-09-13 07:05:47 +00:00
|
|
|
if (rc < 0) {
|
2020-01-13 15:03:51 +00:00
|
|
|
free(status);
|
2018-09-13 07:05:47 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2020-05-15 03:50:18 +00:00
|
|
|
rc = nvme_wait_for_completion_robust_lock(ns->ctrlr->adminq, status, &ns->ctrlr->ctrlr_lock);
|
2018-09-13 07:05:47 +00:00
|
|
|
if (rc != 0) {
|
|
|
|
SPDK_WARNLOG("Failed to retrieve NS ID Descriptor List\n");
|
|
|
|
memset(ns->id_desc_list, 0, sizeof(ns->id_desc_list));
|
2018-03-22 00:36:06 +00:00
|
|
|
}
|
|
|
|
|
2020-01-13 15:03:51 +00:00
|
|
|
if (!status->timed_out) {
|
|
|
|
free(status);
|
|
|
|
}
|
|
|
|
|
2020-09-16 09:48:05 +00:00
|
|
|
nvme_ns_set_id_desc_list_data(ns);
|
|
|
|
|
2016-03-08 06:00:07 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2015-09-21 15:52:41 +00:00
|
|
|
uint32_t
|
2016-02-10 18:26:12 +00:00
|
|
|
spdk_nvme_ns_get_id(struct spdk_nvme_ns *ns)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
|
|
|
return ns->id;
|
|
|
|
}
|
|
|
|
|
2016-03-01 21:39:24 +00:00
|
|
|
bool
|
|
|
|
spdk_nvme_ns_is_active(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
2018-09-27 22:40:14 +00:00
|
|
|
const struct spdk_nvme_ns_data *nsdata = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* According to the spec, valid NS has non-zero id.
|
|
|
|
*/
|
|
|
|
if (ns->id == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsdata = _nvme_ns_get_data(ns);
|
2016-03-01 21:39:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* According to the spec, Identify Namespace will return a zero-filled structure for
|
|
|
|
* inactive namespace IDs.
|
|
|
|
* Check NCAP since it must be nonzero for an active namespace.
|
|
|
|
*/
|
|
|
|
return nsdata->ncap != 0;
|
|
|
|
}
|
|
|
|
|
2017-08-21 17:32:22 +00:00
|
|
|
struct spdk_nvme_ctrlr *
|
|
|
|
spdk_nvme_ns_get_ctrlr(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
return ns->ctrlr;
|
|
|
|
}
|
|
|
|
|
2015-09-21 15:52:41 +00:00
|
|
|
uint32_t
|
2016-02-10 18:26:12 +00:00
|
|
|
spdk_nvme_ns_get_max_io_xfer_size(struct spdk_nvme_ns *ns)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
|
|
|
return ns->ctrlr->max_xfer_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
2016-02-10 18:26:12 +00:00
|
|
|
spdk_nvme_ns_get_sector_size(struct spdk_nvme_ns *ns)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
|
|
|
return ns->sector_size;
|
|
|
|
}
|
|
|
|
|
2018-08-15 16:56:25 +00:00
|
|
|
uint32_t
|
|
|
|
spdk_nvme_ns_get_extended_sector_size(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
return ns->extended_lba_size;
|
|
|
|
}
|
|
|
|
|
2015-09-21 15:52:41 +00:00
|
|
|
uint64_t
|
2016-02-10 18:26:12 +00:00
|
|
|
spdk_nvme_ns_get_num_sectors(struct spdk_nvme_ns *ns)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
|
|
|
return _nvme_ns_get_data(ns)->nsze;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t
|
2016-02-10 18:26:12 +00:00
|
|
|
spdk_nvme_ns_get_size(struct spdk_nvme_ns *ns)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
2016-02-10 18:26:12 +00:00
|
|
|
return spdk_nvme_ns_get_num_sectors(ns) * spdk_nvme_ns_get_sector_size(ns);
|
2015-09-21 15:52:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
2016-02-10 18:26:12 +00:00
|
|
|
spdk_nvme_ns_get_flags(struct spdk_nvme_ns *ns)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
|
|
|
return ns->flags;
|
|
|
|
}
|
|
|
|
|
2016-04-07 06:52:43 +00:00
|
|
|
enum spdk_nvme_pi_type
|
|
|
|
spdk_nvme_ns_get_pi_type(struct spdk_nvme_ns *ns) {
|
|
|
|
return ns->pi_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
spdk_nvme_ns_supports_extended_lba(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
return (ns->flags & SPDK_NVME_NS_EXTENDED_LBA_SUPPORTED) ? true : false;
|
|
|
|
}
|
|
|
|
|
2019-12-13 11:43:44 +00:00
|
|
|
bool
|
|
|
|
spdk_nvme_ns_supports_compare(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
return (ns->flags & SPDK_NVME_NS_COMPARE_SUPPORTED) ? true : false;
|
|
|
|
}
|
|
|
|
|
2016-04-07 06:52:43 +00:00
|
|
|
uint32_t
|
|
|
|
spdk_nvme_ns_get_md_size(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
return ns->md_size;
|
|
|
|
}
|
|
|
|
|
2016-02-09 18:06:48 +00:00
|
|
|
const struct spdk_nvme_ns_data *
|
2016-02-10 18:26:12 +00:00
|
|
|
spdk_nvme_ns_get_data(struct spdk_nvme_ns *ns)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
|
|
|
return _nvme_ns_get_data(ns);
|
|
|
|
}
|
|
|
|
|
2017-07-27 19:47:53 +00:00
|
|
|
enum spdk_nvme_dealloc_logical_block_read_value spdk_nvme_ns_get_dealloc_logical_block_read_value(
|
|
|
|
struct spdk_nvme_ns *ns)
|
|
|
|
{
|
2017-07-31 19:56:30 +00:00
|
|
|
struct spdk_nvme_ctrlr *ctrlr = ns->ctrlr;
|
2017-07-27 19:47:53 +00:00
|
|
|
const struct spdk_nvme_ns_data *data = spdk_nvme_ns_get_data(ns);
|
2017-07-31 19:56:30 +00:00
|
|
|
|
|
|
|
if (ctrlr->quirks & NVME_QUIRK_READ_ZERO_AFTER_DEALLOCATE) {
|
|
|
|
return SPDK_NVME_DEALLOC_READ_00;
|
|
|
|
} else {
|
|
|
|
return data->dlfeat.bits.read_value;
|
|
|
|
}
|
2017-07-27 19:47:53 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 17:17:29 +00:00
|
|
|
uint32_t
|
|
|
|
spdk_nvme_ns_get_optimal_io_boundary(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
return ns->sectors_per_stripe;
|
|
|
|
}
|
|
|
|
|
2018-03-22 00:36:06 +00:00
|
|
|
static const void *
|
2020-05-15 03:50:18 +00:00
|
|
|
nvme_ns_find_id_desc(const struct spdk_nvme_ns *ns, enum spdk_nvme_nidt type, size_t *length)
|
2018-03-22 00:36:06 +00:00
|
|
|
{
|
|
|
|
const struct spdk_nvme_ns_id_desc *desc;
|
|
|
|
size_t offset;
|
|
|
|
|
|
|
|
offset = 0;
|
|
|
|
while (offset + 4 < sizeof(ns->id_desc_list)) {
|
|
|
|
desc = (const struct spdk_nvme_ns_id_desc *)&ns->id_desc_list[offset];
|
|
|
|
|
|
|
|
if (desc->nidl == 0) {
|
|
|
|
/* End of list */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if this descriptor fits within the list.
|
|
|
|
* 4 is the fixed-size descriptor header (not counted in NIDL).
|
|
|
|
*/
|
|
|
|
if (offset + desc->nidl + 4 > sizeof(ns->id_desc_list)) {
|
|
|
|
/* Descriptor longer than remaining space in list (invalid) */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (desc->nidt == type) {
|
|
|
|
*length = desc->nidl;
|
|
|
|
return &desc->nid[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
offset += 4 + desc->nidl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct spdk_uuid *
|
|
|
|
spdk_nvme_ns_get_uuid(const struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
const struct spdk_uuid *uuid;
|
|
|
|
size_t uuid_size;
|
|
|
|
|
2020-05-15 03:50:18 +00:00
|
|
|
uuid = nvme_ns_find_id_desc(ns, SPDK_NVME_NIDT_UUID, &uuid_size);
|
2020-09-09 17:38:43 +00:00
|
|
|
if (uuid && uuid_size != sizeof(*uuid)) {
|
|
|
|
SPDK_WARNLOG("Invalid NIDT_UUID descriptor length reported: %zu (expected: %zu)\n",
|
|
|
|
uuid_size, sizeof(*uuid));
|
2018-03-22 00:36:06 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return uuid;
|
|
|
|
}
|
|
|
|
|
2020-09-16 09:48:05 +00:00
|
|
|
static enum spdk_nvme_csi
|
|
|
|
nvme_ns_get_csi(const struct spdk_nvme_ns *ns) {
|
2020-09-07 11:59:35 +00:00
|
|
|
const uint8_t *csi;
|
|
|
|
size_t csi_size;
|
|
|
|
|
|
|
|
csi = nvme_ns_find_id_desc(ns, SPDK_NVME_NIDT_CSI, &csi_size);
|
|
|
|
if (csi && csi_size != sizeof(*csi))
|
|
|
|
{
|
|
|
|
SPDK_WARNLOG("Invalid NIDT_CSI descriptor length reported: %zu (expected: %zu)\n",
|
|
|
|
csi_size, sizeof(*csi));
|
|
|
|
return SPDK_NVME_CSI_NVM;
|
|
|
|
}
|
|
|
|
if (!csi)
|
|
|
|
{
|
|
|
|
if (ns->ctrlr->cap.bits.css & SPDK_NVME_CAP_CSS_IOCS) {
|
|
|
|
SPDK_WARNLOG("CSI not reported for NSID: %" PRIu32 "\n", ns->id);
|
|
|
|
}
|
|
|
|
return SPDK_NVME_CSI_NVM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *csi;
|
|
|
|
}
|
|
|
|
|
2020-09-16 09:48:05 +00:00
|
|
|
void
|
|
|
|
nvme_ns_set_id_desc_list_data(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
ns->csi = nvme_ns_get_csi(ns);
|
|
|
|
}
|
|
|
|
|
|
|
|
enum spdk_nvme_csi
|
|
|
|
spdk_nvme_ns_get_csi(const struct spdk_nvme_ns *ns) {
|
|
|
|
return ns->csi;
|
|
|
|
}
|
|
|
|
|
2020-09-17 15:27:31 +00:00
|
|
|
void
|
|
|
|
nvme_ns_free_zns_specific_data(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
if (!ns->id) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ns->ctrlr->nsdata_zns) {
|
|
|
|
spdk_free(ns->ctrlr->nsdata_zns[ns->id - 1]);
|
|
|
|
ns->ctrlr->nsdata_zns[ns->id - 1] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nvme_ns_free_iocs_specific_data(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
nvme_ns_free_zns_specific_data(ns);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
nvme_ns_has_supported_iocs_specific_data(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
switch (ns->csi) {
|
|
|
|
case SPDK_NVME_CSI_NVM:
|
|
|
|
/*
|
|
|
|
* NVM Command Set Specific Identify Namespace data structure
|
|
|
|
* is currently all-zeroes, reserved for future use.
|
|
|
|
*/
|
|
|
|
return false;
|
|
|
|
case SPDK_NVME_CSI_ZNS:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
SPDK_WARNLOG("Unsupported CSI: %u for NSID: %u\n", ns->csi, ns->id);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-22 18:26:26 +00:00
|
|
|
uint32_t
|
|
|
|
spdk_nvme_ns_get_ana_group_id(const struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
return ns->ana_group_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum spdk_nvme_ana_state
|
|
|
|
spdk_nvme_ns_get_ana_state(const struct spdk_nvme_ns *ns) {
|
|
|
|
return ns->ana_state;
|
|
|
|
}
|
|
|
|
|
2018-03-14 21:05:40 +00:00
|
|
|
int nvme_ns_construct(struct spdk_nvme_ns *ns, uint32_t id,
|
2016-03-08 06:00:07 +00:00
|
|
|
struct spdk_nvme_ctrlr *ctrlr)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
2018-09-13 07:05:47 +00:00
|
|
|
int rc;
|
|
|
|
|
2016-08-08 20:55:27 +00:00
|
|
|
assert(id > 0);
|
2015-09-21 15:52:41 +00:00
|
|
|
|
|
|
|
ns->ctrlr = ctrlr;
|
|
|
|
ns->id = id;
|
|
|
|
|
2018-09-13 07:05:47 +00:00
|
|
|
rc = nvme_ctrlr_identify_ns(ns);
|
|
|
|
if (rc != 0) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2020-08-20 04:36:46 +00:00
|
|
|
/* skip Identify NS ID Descriptor List for inactive NS */
|
2020-09-17 13:16:10 +00:00
|
|
|
if (!spdk_nvme_ns_is_active(ns)) {
|
2020-08-20 04:36:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-09-17 15:27:31 +00:00
|
|
|
rc = nvme_ctrlr_identify_id_desc(ns);
|
|
|
|
if (rc != 0) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nvme_ctrlr_multi_iocs_enabled(ctrlr) &&
|
|
|
|
nvme_ns_has_supported_iocs_specific_data(ns)) {
|
|
|
|
rc = nvme_ctrlr_identify_ns_iocs_specific(ns);
|
|
|
|
if (rc != 0) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2015-09-21 15:52:41 +00:00
|
|
|
}
|
|
|
|
|
2016-02-10 18:26:12 +00:00
|
|
|
void nvme_ns_destruct(struct spdk_nvme_ns *ns)
|
2015-09-21 15:52:41 +00:00
|
|
|
{
|
2018-04-19 01:52:55 +00:00
|
|
|
struct spdk_nvme_ns_data *nsdata;
|
|
|
|
|
|
|
|
if (!ns->id) {
|
|
|
|
return;
|
|
|
|
}
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2018-04-19 01:52:55 +00:00
|
|
|
nsdata = _nvme_ns_get_data(ns);
|
|
|
|
memset(nsdata, 0, sizeof(*nsdata));
|
2020-09-16 09:31:01 +00:00
|
|
|
memset(ns->id_desc_list, 0, sizeof(ns->id_desc_list));
|
2020-09-17 15:27:31 +00:00
|
|
|
nvme_ns_free_iocs_specific_data(ns);
|
2018-04-19 01:52:55 +00:00
|
|
|
ns->sector_size = 0;
|
|
|
|
ns->extended_lba_size = 0;
|
|
|
|
ns->md_size = 0;
|
|
|
|
ns->pi_type = 0;
|
|
|
|
ns->sectors_per_max_io = 0;
|
|
|
|
ns->sectors_per_stripe = 0;
|
|
|
|
ns->flags = 0;
|
2020-09-16 09:48:05 +00:00
|
|
|
ns->csi = SPDK_NVME_CSI_NVM;
|
2015-09-21 15:52:41 +00:00
|
|
|
}
|
2020-02-13 07:34:09 +00:00
|
|
|
|
|
|
|
int nvme_ns_update(struct spdk_nvme_ns *ns)
|
|
|
|
{
|
|
|
|
return nvme_ctrlr_identify_ns(ns);
|
|
|
|
}
|