From nobody Sat Dec 27 14:52:38 2025 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 8AB335393 for ; Tue, 19 Dec 2023 04:54:16 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="E9SpQ03x" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=YEGuvprQ3dTZw1JyhXzIpAPhUvuaG4lj/1PCwJqLmsU=; b=E9SpQ03xB6fI5bC3pH27Slea9p X6RbEVvKPJKL0aO9jpblnfckeZQU75LiYMUWUxROTZ0zyZWSOc7Yjc7QAzzFf/VUzMcqpFuCjpbrM LysbfQvcP2Ig8PFMcGSUI5loo+zSszL3FcP+QvwonBF8Y+WUamOel8leVVo6A+q2a/e46KlukfuEo 0jlbNR478vdlxsq9PIDM7WRQv6mwN6pH7xc2Fwa1ApW+aY7GKed9QcxMAK6Q01tpJ2uS0GjfYw67Q aMNMVKidLv/r3nC1iMLF8eg1PtmwXd9luExg058pO8vgrx4eMmXPqGd07f8PUytnyOtLAMiPR498O 8sHo4XWA==; Received: from [50.53.46.231] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1rFS7T-00CqDi-0v; Tue, 19 Dec 2023 04:54:15 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Anton Altaparmakov , Namjae Jeon , linux-ntfs-dev@lists.sourceforge.net, Andrew Morton Subject: [PATCH] ntfs: dir.c: fix kernel-doc function parameter warnings Date: Mon, 18 Dec 2023 20:54:14 -0800 Message-ID: <20231219045414.24670-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Correct the kernel-doc function parameter warnings for function ntfs_dir_fsync() to prevent the following kernel-doc warnings: dir.c:1489: warning: Function parameter or member 'start' not described in = 'ntfs_dir_fsync' dir.c:1489: warning: Function parameter or member 'end' not described in 'n= tfs_dir_fsync' dir.c:1489: warning: Excess function parameter 'dentry' description in 'ntf= s_dir_fsync' Signed-off-by: Randy Dunlap Cc: Anton Altaparmakov Cc: Namjae Jeon Cc: linux-ntfs-dev@lists.sourceforge.net Cc: Andrew Morton Reviewed-by: Namjae Jeon --- fs/ntfs/dir.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -- a/fs/ntfs/dir.c b/fs/ntfs/dir.c --- a/fs/ntfs/dir.c +++ b/fs/ntfs/dir.c @@ -1462,7 +1462,8 @@ static int ntfs_dir_open(struct inode *v /** * ntfs_dir_fsync - sync a directory to disk * @filp: directory to be synced - * @dentry: dentry describing the directory to sync + * @start: offset in bytes of the beginning of data range to sync + * @end: offset in bytes of the end of data range (inclusive) * @datasync: if non-zero only flush user data and not metadata * * Data integrity sync of a directory to disk. Used for fsync, fdatasync,= and