[PATCH v3 09/10] nvme-multipath: add nvme_mpath_head_queue_if_no_path()
John Garry <[email protected]>
| Newsgroups | dev.linux.lists.dm-devel,org.infradead.lists.linux-nvme,org.kernel.vger.linux-kernel,org.kernel.vger.linux-scsi |
|---|---|
| Message-ID | <[email protected]> |
Add a wrapper to call into mpath_head_queue_if_no_path(). Signed-off-by: John Garry <[email protected]> --- drivers/nvme/host/nvme.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/drivers/nvme/host/nvme.h b/drivers/nvme/host/nvme.h index 9fd958a426f1f..354f77dea4870 100644 --- a/drivers/nvme/host/nvme.h +++ b/drivers/nvme/host/nvme.h @@ -1095,6 +1095,11 @@ static inline void nvme_mpath_synchronize(struct nvme_ns_head *head) mpath_synchronize(&head->mpath_head); } +static inline bool nvme_mpath_head_queue_if_no_path(struct nvme_ns_head *head) +{ + return mpath_head_queue_if_no_path(&head->mpath_head); +} + static inline void nvme_trace_bio_complete(struct request *req) { struct nvme_ns *ns = req->q->queuedata; @@ -1218,6 +1223,10 @@ static inline bool nvme_mpath_queue_if_no_path(struct nvme_ns_head *head) { return false; } +static inline bool nvme_mpath_head_queue_if_no_path(struct nvme_ns_head *head) +{ + return false; +} #endif /* CONFIG_NVME_MULTIPATH */ int nvme_ns_get_unique_id(struct nvme_ns *ns, u8 id[16], -- 2.43.7