Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

blk-mq-dma: fix kernel-doc function name for integrity DMA iterator

Documentation build reported:

Warning: block/blk-mq-dma.c:373 expecting prototype for blk_rq_integrity_dma_map_iter_start(). Prototype was for blk_rq_integrity_dma_map_iter_next() instead

The kernel-doc comment above `blk_rq_integrity_dma_map_iter_next()` used
the wrong function name (`blk_rq_integrity_dma_map_iter_start`) in its
header. This patch corrects the function name in the kernel-doc block to
match the actual implementation, ensuring clean documentation builds.

Fixes: fec9b16dc555 ("blk-mq-dma: add scatter-less integrity data DMA mapping")
Signed-off-by: Kriish Sharma <kriish.sharma2006@gmail.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>

authored by

Kriish Sharma and committed by
Jens Axboe
6d7e3870 fd9ecd00

+1 -1
+1 -1
block/blk-mq-dma.c
··· 351 351 EXPORT_SYMBOL_GPL(blk_rq_integrity_dma_map_iter_start); 352 352 353 353 /** 354 - * blk_rq_integrity_dma_map_iter_start - map the next integrity DMA segment for 354 + * blk_rq_integrity_dma_map_iter_next - map the next integrity DMA segment for 355 355 * a request 356 356 * @req: request to map 357 357 * @dma_dev: device to map to