diff options
author | Scott Bauer <scott.bauer@intel.com> | 2017-02-17 13:59:40 +0100 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2017-02-17 20:41:49 +0100 |
commit | 8a9ae523282f324989850fcf41312b42a2fb9296 (patch) | |
tree | 6cb1aa6430c7668b4ffeb4835329f76becdf016a /drivers/nvme/host/nvme.h | |
parent | block/sed-opal: allocate struct opal_dev dynamically (diff) | |
download | linux-8a9ae523282f324989850fcf41312b42a2fb9296.tar.xz linux-8a9ae523282f324989850fcf41312b42a2fb9296.zip |
nvme: Check for Security send/recv support before issuing commands.
We need to verify that the controller supports the security
commands before actually trying to issue them.
Signed-off-by: Scott Bauer <scott.bauer@intel.com>
[hch: moved the check so that we don't call into the OPAL code if not
supported]
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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/nvme/host/nvme.h b/drivers/nvme/host/nvme.h index fd94c94ccbcb..b0977229e219 100644 --- a/drivers/nvme/host/nvme.h +++ b/drivers/nvme/host/nvme.h @@ -140,6 +140,7 @@ struct nvme_ctrl { u32 max_hw_sectors; u16 oncs; u16 vid; + u16 oacs; atomic_t abort_limit; u8 event_limit; u8 vwc; |