diff options
author | Sagi Grimberg <sagi@grimberg.me> | 2018-11-19 14:11:13 -0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-12-07 22:26:57 -0700 |
commit | 0445e1b5a2fed4612b7f72d9a56889c026b60aa9 (patch) | |
tree | 2e88f32f2bb3897fb7a671f2f44db1a32e00e563 /include/linux/nvme.h | |
parent | e6a622fd6d66b83779357e3400f487fc159a7d83 (diff) | |
download | linux-0445e1b5a2fed4612b7f72d9a56889c026b60aa9.tar.gz linux-0445e1b5a2fed4612b7f72d9a56889c026b60aa9.tar.bz2 linux-0445e1b5a2fed4612b7f72d9a56889c026b60aa9.zip |
nvmet: don't override treq upon modification.
Only override the allowed parts of it.
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Sagi Grimberg <sagi@grimberg.me>
[hch: slight tweak to the NVME_TREQ_SECURE_CHANNEL_MASK definition]
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/nvme.h')
-rw-r--r-- | include/linux/nvme.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h index e7d731776f62..4fc48071e5ea 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h @@ -61,6 +61,8 @@ enum { NVMF_TREQ_NOT_SPECIFIED = 0, /* Not specified */ NVMF_TREQ_REQUIRED = 1, /* Required */ NVMF_TREQ_NOT_REQUIRED = 2, /* Not Required */ +#define NVME_TREQ_SECURE_CHANNEL_MASK \ + (NVMF_TREQ_REQUIRED | NVMF_TREQ_NOT_REQUIRED) }; /* RDMA QP Service Type codes for Discovery Log Page entry TSAS |