Skip to content

Commit 0542cd5

Browse files
bvanasscheaxboe
authored andcommittedMay 31, 2019
block: Fix blk_mq_*_map_queues() kernel-doc headers
This patch avoids that the kernel-doc script complains about these function headers when building with W=1. Cc: Hannes Reinecke <[email protected]> Cc: Keith Busch <[email protected]> Fixes: ed76e32 ("blk-mq: abstract out queue map") # v5.0. Fixes: e42b386 ("blk-mq-rdma: pass in queue map to blk_mq_rdma_map_queues") # v5.0. Reviewed-by: Chaitanya Kulkarni <[email protected]> Signed-off-by: Bart Van Assche <[email protected]> Signed-off-by: Jens Axboe <[email protected]>
1 parent 216382d commit 0542cd5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎block/blk-mq-pci.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
/**
1515
* blk_mq_pci_map_queues - provide a default queue mapping for PCI device
16-
* @set: tagset to provide the mapping for
16+
* @qmap: CPU to hardware queue map.
1717
* @pdev: PCI device associated with @set.
1818
* @offset: Offset to use for the pci irq vector
1919
*

‎block/blk-mq-rdma.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
/**
1010
* blk_mq_rdma_map_queues - provide a default queue mapping for rdma device
11-
* @set: tagset to provide the mapping for
12-
* @dev: rdma device associated with @set.
11+
* @map: CPU to hardware queue map.
12+
* @dev: rdma device to provide a mapping for.
1313
* @first_vec: first interrupt vectors to use for queues (usually 0)
1414
*
1515
* This function assumes the rdma device @dev has at least as many available

‎block/blk-mq-virtio.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
/**
1313
* blk_mq_virtio_map_queues - provide a default queue mapping for virtio device
14-
* @set: tagset to provide the mapping for
15-
* @vdev: virtio device associated with @set.
14+
* @qmap: CPU to hardware queue map.
15+
* @vdev: virtio device to provide a mapping for.
1616
* @first_vec: first interrupt vectors to use for queues (usually 0)
1717
*
1818
* This function assumes the virtio device @vdev has at least as many available

0 commit comments

Comments
 (0)
Please sign in to comment.