diff options
author | Keith Busch <kbusch@kernel.org> | 2024-11-14 00:57:04 +0300 |
---|---|---|
committer | Keith Busch <kbusch@kernel.org> | 2024-11-18 20:17:26 +0300 |
commit | 6399a0db8cd61eedbfb4b7809a4f4699157a9bf8 (patch) | |
tree | bbeca3d9cc06ae9b971de233be59adea19f2d2f0 /drivers/nvme/host/rdma.c | |
parent | 979c6342f9c0a48696a6420f14f9dd409591657f (diff) | |
download | linux-6399a0db8cd61eedbfb4b7809a4f4699157a9bf8.tar.xz |
nvme: define the remaining used sgls constants
This provides a little more context when reading the code than hardcoded
magic numbers.
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Diffstat (limited to 'drivers/nvme/host/rdma.c')
-rw-r--r-- | drivers/nvme/host/rdma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c index 24a2759798d0..baf7d2490152 100644 --- a/drivers/nvme/host/rdma.c +++ b/drivers/nvme/host/rdma.c @@ -1019,7 +1019,7 @@ static int nvme_rdma_setup_ctrl(struct nvme_rdma_ctrl *ctrl, bool new) goto destroy_admin; } - if (!(ctrl->ctrl.sgls & (1 << 2))) { + if (!(ctrl->ctrl.sgls & NVME_CTRL_SGLS_KSDBDS)) { ret = -EOPNOTSUPP; dev_err(ctrl->ctrl.device, "Mandatory keyed sgls are not supported!\n"); @@ -1051,7 +1051,7 @@ static int nvme_rdma_setup_ctrl(struct nvme_rdma_ctrl *ctrl, bool new) ctrl->ctrl.sqsize = ctrl->ctrl.maxcmd - 1; } - if (ctrl->ctrl.sgls & (1 << 20)) + if (ctrl->ctrl.sgls & NVME_CTRL_SGLS_SAOS) ctrl->use_inline_data = true; if (ctrl->ctrl.queue_count > 1) { |