diff options
author | Sagi Grimberg <sagi@grimberg.me> | 2017-05-04 13:33:15 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2017-06-15 14:29:49 +0200 |
commit | fdf9dfa85093f9813bc9818b7920fcf5a0eb3580 (patch) | |
tree | 32522071605adb2bcee5bdbb22c4e5f7e7968467 /drivers/nvme/host/fabrics.c | |
parent | c669ccdc50c28ecb002b567c78b41f7d1cf5ec49 (diff) |
nvme: move nr_reconnects to nvme_ctrl
It is not a user option but rather a variable controller
attribute.
Signed-off-by: Sagi Grimberg <sagi@grimberg.me>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/nvme/host/fabrics.c')
-rw-r--r-- | drivers/nvme/host/fabrics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/fabrics.c b/drivers/nvme/host/fabrics.c index c190d7e36900..4ed144783079 100644 --- a/drivers/nvme/host/fabrics.c +++ b/drivers/nvme/host/fabrics.c @@ -474,7 +474,7 @@ EXPORT_SYMBOL_GPL(nvmf_connect_io_queue); bool nvmf_should_reconnect(struct nvme_ctrl *ctrl) { if (ctrl->opts->max_reconnects != -1 && - ctrl->opts->nr_reconnects < ctrl->opts->max_reconnects) + ctrl->nr_reconnects < ctrl->opts->max_reconnects) return true; return false; |