mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
nvme: disable namespace access for unsupported metadata
The only fabrics target that supports metadata handling through the separate integrity buffer is RDMA. It is currently usable only if the size is 8B per block and formatted for protection information. If an rdma target were to export a namespace with a different format (ex: 4k+64B), the driver will not be able to submit valid read/write commands for that namespace. Suppress setting the metadata feature in the namespace so that the gendisk capacity will be set to 0. This will prevent read/write access through the block stack, but will continue to allow ioctl passthrough commands. Cc: Max Gurtovoy <mgurtovoy@nvidia.com> Cc: Sagi Grimberg <sagi@grimberg.me> Signed-off-by: Keith Busch <kbusch@kernel.org> Signed-off-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
parent
16cc33b237
commit
d39ad2a45c
@ -1749,9 +1749,20 @@ static int nvme_configure_metadata(struct nvme_ns *ns, struct nvme_id_ns *id)
|
|||||||
*/
|
*/
|
||||||
if (WARN_ON_ONCE(!(id->flbas & NVME_NS_FLBAS_META_EXT)))
|
if (WARN_ON_ONCE(!(id->flbas & NVME_NS_FLBAS_META_EXT)))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
if (ctrl->max_integrity_segments)
|
|
||||||
ns->features |=
|
ns->features |= NVME_NS_EXT_LBAS;
|
||||||
(NVME_NS_METADATA_SUPPORTED | NVME_NS_EXT_LBAS);
|
|
||||||
|
/*
|
||||||
|
* The current fabrics transport drivers support namespace
|
||||||
|
* metadata formats only if nvme_ns_has_pi() returns true.
|
||||||
|
* Suppress support for all other formats so the namespace will
|
||||||
|
* have a 0 capacity and not be usable through the block stack.
|
||||||
|
*
|
||||||
|
* Note, this check will need to be modified if any drivers
|
||||||
|
* gain the ability to use other metadata formats.
|
||||||
|
*/
|
||||||
|
if (ctrl->max_integrity_segments && nvme_ns_has_pi(ns))
|
||||||
|
ns->features |= NVME_NS_METADATA_SUPPORTED;
|
||||||
} else {
|
} else {
|
||||||
/*
|
/*
|
||||||
* For PCIe controllers, we can't easily remap the separate
|
* For PCIe controllers, we can't easily remap the separate
|
||||||
|
Loading…
Reference in New Issue
Block a user