From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 513F2C4167B for ; Tue, 8 Dec 2020 06:45:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 134B923A6C for ; Tue, 8 Dec 2020 06:45:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726445AbgLHGpU (ORCPT ); Tue, 8 Dec 2020 01:45:20 -0500 Received: from mail.kernel.org ([198.145.29.99]:57062 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725881AbgLHGpU (ORCPT ); Tue, 8 Dec 2020 01:45:20 -0500 Date: Tue, 8 Dec 2020 08:44:32 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1607409879; bh=945L8ljNOuFzzRfnEh+kXCUa029xewKJnPnsaYRdk0o=; h=From:To:Cc:Subject:References:In-Reply-To:From; b=stVnIgDZ45/X9nUWqzxcDFaZlQA5OQ8rk4HX/IWyAjtxT0gh6SpfAynHxRfbk7U3X l45qSeXO9QbsG1sC0vQSQpMi5ydLdwaNgqsXY9utR+Upx6XkZOBZl9KXWOv+2IS1oj QRiT+KV0NO+zWuu0y+YzMjg9Z0eHGdoA7ROT6sIOM+J3VhYENdbt5EhLYycEMmZE8Y I3XfinKzU0N2DrDQF1UsWBYI7fA+UPBw/jafzNW2VNSY3b7uzEO3zUMhwk0EFpTvHM Sm+ED7qeKXAiq7fYSKi9U7tTo+YsvA5ozPuYn5QoOt95NTSgqA4uFicyt4HC36QGTX Ef3imcBLHYJKw== From: Leon Romanovsky To: Lukas Bulwahn Cc: Doug Ledford , Jason Gunthorpe , linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, kernel-janitors@vger.kernel.org, Jonathan Corbet Subject: Re: [PATCH] RDMA/restrack: update kernel documentation for ib_create_named_qp() Message-ID: <20201208064432.GD4430@unreal> References: <20201207173255.13355-1-lukas.bulwahn@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201207173255.13355-1-lukas.bulwahn@gmail.com> Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org On Mon, Dec 07, 2020 at 06:32:55PM +0100, Lukas Bulwahn wrote: > Commit 66f57b871efc ("RDMA/restrack: Support all QP types") extends > ib_create_qp() to a named ib_create_named_qp(), which takes the caller's > name as argument, but it did not add the new argument description to the > function's kerneldoc. > > make htmldocs warns: > > ./drivers/infiniband/core/verbs.c:1206: warning: Function parameter or > member 'caller' not described in 'ib_create_named_qp' > > Add a description for this new argument based on the description of the > same argument in other related functions. > > Signed-off-by: Lukas Bulwahn > --- Thanks, Reviewed-by: Leon Romanovsky