Commit dc5bc6a9 authored by Sagi Grimberg's avatar Sagi Grimberg Committed by Christoph Hellwig

nvme-rdma: Make queue flags bit numbers and not shifts

bitops accept bit numbers.
Reported-by: default avatarVijay Immanuel <vijayi@attalasystems.com>
Signed-off-by: default avatarSagi Grimberg <sagi@grimberg.me>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
parent 3dee63c7
......@@ -80,10 +80,10 @@ struct nvme_rdma_request {
};
enum nvme_rdma_queue_flags {
NVME_RDMA_Q_CONNECTED = (1 << 0),
NVME_RDMA_IB_QUEUE_ALLOCATED = (1 << 1),
NVME_RDMA_Q_DELETING = (1 << 2),
NVME_RDMA_Q_LIVE = (1 << 3),
NVME_RDMA_Q_CONNECTED = 0,
NVME_RDMA_IB_QUEUE_ALLOCATED = 1,
NVME_RDMA_Q_DELETING = 2,
NVME_RDMA_Q_LIVE = 3,
};
struct nvme_rdma_queue {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment