mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
nvme-fc: don't use bit masks for set/test_bit() numbers
So far harmless, but it's confusing and a bug waiting to happen if the shifts grow larger than 4. Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
3dfbdc44d6
commit
26c0a26d78
@ -31,8 +31,8 @@
|
||||
|
||||
|
||||
enum nvme_fc_queue_flags {
|
||||
NVME_FC_Q_CONNECTED = (1 << 0),
|
||||
NVME_FC_Q_LIVE = (1 << 1),
|
||||
NVME_FC_Q_CONNECTED = 0,
|
||||
NVME_FC_Q_LIVE,
|
||||
};
|
||||
|
||||
#define NVMEFC_QUEUE_DELAY 3 /* ms units */
|
||||
|
Loading…
Reference in New Issue
Block a user