diff --git a/examples/nvme/identify/identify.c b/examples/nvme/identify/identify.c index 1bbe8840d..e9f5e9c4c 100644 --- a/examples/nvme/identify/identify.c +++ b/examples/nvme/identify/identify.c @@ -634,6 +634,8 @@ print_namespace(struct spdk_nvme_ns *ns) printf("Metadata Location: %s\n", nsdata->dps.md_start ? "First 8 Bytes" : "Last 8 Bytes"); } + printf("Namespace Sharing Capabilities: %s\n", + nsdata->nmic.can_share ? "Multiple Controllers" : "Private"); printf("Size (in LBAs): %lld (%lldM)\n", (long long)nsdata->nsze, (long long)nsdata->nsze / 1024 / 1024);