From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752877AbbGOPU5 (ORCPT ); Wed, 15 Jul 2015 11:20:57 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:49478 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752422AbbGOPUm (ORCPT ); Wed, 15 Jul 2015 11:20:42 -0400 Message-ID: <55A67A49.3020400@infradead.org> Date: Wed, 15 Jul 2015 08:20:41 -0700 From: Randy Dunlap User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Masanari Iida , viro@zeniv.linux.org.uk, linux-kernel@vger.kernel.org, akpm@linux-foundation.org, linux-fsdevel@vger.kernel.org Subject: Re: [PATCH/Resend] namei: Fix warning while make xmldocs caused by namei.c References: <1436955077-19749-1-git-send-email-standby24x7@gmail.com> In-Reply-To: <1436955077-19749-1-git-send-email-standby24x7@gmail.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 07/15/15 03:11, Masanari Iida wrote: > This patch fix following warnings. > > Warning(.//fs/namei.c:2422): No description found for parameter 'nd' > Warning(.//fs/namei.c:2422): Excess function parameter 'nameidata' > description in 'path_mountpoint' > > Signed-off-by: Masanari Iida Acked-by: Randy Dunlap I have this same patch ready to send... Thanks. > --- > fs/namei.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/namei.c b/fs/namei.c > index ae4e4c1..038a5e2 100644 > --- a/fs/namei.c > +++ b/fs/namei.c > @@ -2410,7 +2410,7 @@ done: > > /** > * path_mountpoint - look up a path to be umounted > - * @nameidata: lookup context > + * @nd: lookup context > * @flags: lookup flags > * @path: pointer to container for result > * > -- ~Randy