diff options
author | Keith Busch <keith.busch@intel.com> | 2015-10-22 15:45:06 -0600 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2015-12-22 09:38:33 -0700 |
commit | 540c801c65eb58e05e0ca38b6fd644a83d7e2b33 (patch) | |
tree | 075d454c67f120adcc150464fad48ab3bfa9f430 /drivers/nvme/host/nvme.h | |
parent | 6bf25d16410d8d95e3552f31c6a99e3fc3d31752 (diff) | |
download | blackbird-op-linux-540c801c65eb58e05e0ca38b6fd644a83d7e2b33.tar.gz blackbird-op-linux-540c801c65eb58e05e0ca38b6fd644a83d7e2b33.zip |
NVMe: Implement namespace list scanning
The NVMe 1.1 specification provides an identify mode to return a
list of active namespaces. This is more efficient to discover which
namespace identifiers are active on a controller, providing potentially
significant improvement in scan time for controllers with sparesly
populated namespaces.
Signed-off-by: Keith Busch <keith.busch@intel.com>
[hch: add quirk for the broken Qemu Identify implementation. To be relaxed
later]
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/nvme/host/nvme.h')
-rw-r--r-- | drivers/nvme/host/nvme.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/nvme/host/nvme.h b/drivers/nvme/host/nvme.h index 982fa303cec6..2965c469da4a 100644 --- a/drivers/nvme/host/nvme.h +++ b/drivers/nvme/host/nvme.h @@ -53,6 +53,12 @@ enum nvme_quirks { * specific Identify field. */ NVME_QUIRK_STRIPE_SIZE = (1 << 0), + + /* + * The controller doesn't handle Identify value others than 0 or 1 + * correctly. + */ + NVME_QUIRK_IDENTIFY_CNS = (1 << 1), }; struct nvme_ctrl { |