From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 772284534A9; Tue, 16 Jun 2026 15:43:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781624617; cv=none; b=Quken1cNMLwrE8rCHNuc+oa58nYM0re0wwc6IyMdmMggReA1MfSss7bEf4thDaKq1PQ7pqvu0HXQ/ZdLnO9pBc1E/Jbh4MU1VvjLaahDVBMUP9FrVNmR1sKfCCz1YCW+Ju/Dn+Bf4XcoIBvxkh6YjdQkNyD5c36lLJwHJ7yGoU4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781624617; c=relaxed/simple; bh=6WA/hn/AgaWUqZ3AoN8Ve51KGvA9dys3BV0leSsX8Y4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=eXEJnLUBPxkX10INvFRoaSyki37lzCcFZx+DW3/aD7kWaZiVB641gStrBmtKtlhky14SpcsoXtiyrKvoZKT68YJhZ0rHmoHeNxVn3IEr5ymrzDUNRkP06byLEEP8M+CInKr0vYuAnG+awBoFVClffpHBrhJ+ianUv6niHdDzTPg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=DhQnHc/w; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="DhQnHc/w" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 775271F000E9; Tue, 16 Jun 2026 15:43:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1781624616; bh=lZLe2GpBjcDXgfZ/c0hMVtXhBGvgpYLYHDAJbz5A8zM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=DhQnHc/wzk85ZwJ7FI1vSdORey5Wia6YJS26+rpxJbE63GuEI43a8+ZD71X955byY uXtovAdRwC1vKEyuw4C7aAWBsIFU/ct7skETF38M3S+XgTQY5ImIK20andcmhZsoGo q4vWzRQ2k8qmaDIgYXqW+AsSStJIachQfehvrYEI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Randy Dunlap , Leon Romanovsky , Sasha Levin Subject: [PATCH 7.0 367/378] RDMA/umem: fix kernel-doc warnings Date: Tue, 16 Jun 2026 20:29:58 +0530 Message-ID: <20260616145129.445997590@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260616145109.744539446@linuxfoundation.org> References: <20260616145109.744539446@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 7.0-stable review patch. If anyone has any objections, please let me know. ------------------ From: Randy Dunlap [ Upstream commit ff46d1392750444fab5ae5a0194764ffdc4ac0d2 ] Add or correct kernel-doc comments to eliminate warnings: Warning: include/rdma/ib_umem.h:104 function parameter 'biter' not described in 'rdma_umem_for_each_dma_block' Warning: include/rdma/ib_umem.h:140 function parameter 'pgsz_bitmap' not described in 'ib_umem_find_best_pgoff' Warning: include/rdma/ib_umem.h:141 No description found for return value of 'ib_umem_find_best_pgoff' Signed-off-by: Randy Dunlap Link: https://patch.msgid.link/20260224003120.3173892-1-rdunlap@infradead.org Signed-off-by: Leon Romanovsky Stable-dep-of: 15fe76e23615 ("RDMA/umem: Fix truncation for block sizes >= 4G") Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- include/rdma/ib_umem.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/include/rdma/ib_umem.h +++ b/include/rdma/ib_umem.h @@ -95,6 +95,7 @@ static inline bool __rdma_umem_block_ite /** * rdma_umem_for_each_dma_block - iterate over contiguous DMA blocks of the umem * @umem: umem to iterate over + * @biter: block iterator variable * @pgsz: Page size to split the list into * * pgsz must be <= PAGE_SIZE or computed by ib_umem_find_best_pgsz(). The @@ -122,7 +123,7 @@ unsigned long ib_umem_find_best_pgsz(str * ib_umem_find_best_pgoff - Find best HW page size * * @umem: umem struct - * @pgsz_bitmap bitmap of HW supported page sizes + * @pgsz_bitmap: bitmap of HW supported page sizes * @pgoff_bitmask: Mask of bits that can be represented with an offset * * This is very similar to ib_umem_find_best_pgsz() except instead of accepting @@ -135,6 +136,9 @@ unsigned long ib_umem_find_best_pgsz(str * * If the pgoff_bitmask requires either alignment in the low bit or an * unavailable page size for the high bits, this function returns 0. + * + * Returns: best HW page size for the parameters or 0 if none available + * for the given parameters. */ static inline unsigned long ib_umem_find_best_pgoff(struct ib_umem *umem, unsigned long pgsz_bitmap,