From: Chaitanya Kulkarni Date: Tue, 9 Jul 2024 04:54:32 +0000 (-0700) Subject: block: fix get_max_segment_size() warning X-Git-Tag: v6.11-rc1~231^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0ffc46eb1b6d0b9dd07e4f2b1019edd4fe678b9e;p=thirdparty%2Fkernel%2Flinux.git block: fix get_max_segment_size() warning Correct the parameter name in the comment of get_max_segment_size() to fix following warning:- block/blk-merge.c:220: warning: Function parameter or struct member 'len' not described in 'get_max_segment_size' block/blk-merge.c:220: warning: Excess function parameter 'max_len' description in 'get_max_segment_size' Signed-off-by: Chaitanya Kulkarni Reviewed-by: Damien Le Moal Link: https://lore.kernel.org/r/20240709045432.8688-1-kch@nvidia.com Signed-off-by: Jens Axboe --- diff --git a/block/blk-merge.c b/block/blk-merge.c index e41ea33180993..1bce854790929 100644 --- a/block/blk-merge.c +++ b/block/blk-merge.c @@ -210,7 +210,7 @@ static inline unsigned get_max_io_size(struct bio *bio, * get_max_segment_size() - maximum number of bytes to add as a single segment * @lim: Request queue limits. * @paddr: address of the range to add - * @max_len: maximum length available to add at @paddr + * @len: maximum length available to add at @paddr * * Returns the maximum number of bytes of the range starting at @paddr that can * be added to a single segment.