diff options
author | Bart Van Assche <bvanassche@acm.org> | 2019-02-14 14:50:53 -0800 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2019-02-20 07:18:01 -0700 |
commit | a467fc55fc509e034e3f839dc1f6ceed74462da9 (patch) | |
tree | 96fd3121514b2bfa1eccf2072ddd853d5993aec0 /drivers/nvme | |
parent | 5bc373ff254002b5ce1b7e7f37f8ed7074e45d2a (diff) | |
download | linux-a467fc55fc509e034e3f839dc1f6ceed74462da9.tar.bz2 |
nvme-fabrics: document the poll function argument
This patch avoids that the kernel-doc tool reports a warning when
building with W=1.
Fixes: 26c682274e0a ("nvme-fabrics: allow nvmf_connect_io_queue to poll") # v5.0-rc1
Signed-off-by: Bart Van Assche <bvanassche@acm.org>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/host/fabrics.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/nvme/host/fabrics.c b/drivers/nvme/host/fabrics.c index 3eb908c50e1a..70c09abcfcbf 100644 --- a/drivers/nvme/host/fabrics.c +++ b/drivers/nvme/host/fabrics.c @@ -430,6 +430,7 @@ EXPORT_SYMBOL_GPL(nvmf_connect_admin_queue); * @qid: NVMe I/O queue number for the new I/O connection between * host and target (note qid == 0 is illegal as this is * the Admin queue, per NVMe standard). + * @poll: Whether or not to poll for the completion of the connect cmd. * * This function issues a fabrics-protocol connection * of a NVMe I/O queue (via NVMe Fabrics "Connect" command) |