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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 34B7AE7AD6E for ; Tue, 3 Oct 2023 15:28:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231618AbjJCP2d (ORCPT ); Tue, 3 Oct 2023 11:28:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:50528 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230338AbjJCP2b (ORCPT ); Tue, 3 Oct 2023 11:28:31 -0400 Received: from ms.lwn.net (ms.lwn.net [IPv6:2600:3c01:e000:3a1::42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1D20683; Tue, 3 Oct 2023 08:28:29 -0700 (PDT) Received: from localhost (unknown [IPv6:2601:281:8300:73::646]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id B2C0D381; Tue, 3 Oct 2023 15:28:28 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net B2C0D381 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1696346908; bh=RSy9yvL4W1Cu9T7AF0rbbsqRV+E7dse1w3wvltkALnE=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=OCKiwsmb1dMTalzna5izUhvcHzilXRzbdi5vIzb5ohHPZCUS01Zi73MZi/32CSpO7 MYBb0nh8Af8d0oG/MHr1bvybYYw+0Ul/YPsiij3Kdz36onaTBrMcSz2CCVcP77kpAn 3RO9h0qtKY49lx09pht44Pq70s2ZavjRt3QU2B+rVHRtpZnR6jDl2TZzgMDCmF7W9o CZ/SPS1mgNCsASH6J03YQKUI3yGXtyC29N9NhrelrHJ1nvtT4JYlny5KZvdxijRkjD gG7Q1iO0b6y/NASjENCXB+vB7QBlru98P15ZcdfOMfbqXMZ1pRpks9tWRRvq+swagT RFFGFvTqJAN0Q== From: Jonathan Corbet To: Randy Dunlap , linux-kernel@vger.kernel.org Cc: Randy Dunlap , linux-doc@vger.kernel.org, Alexander Viro , Christian Brauner , linux-fsdevel@vger.kernel.org, Luis Chamberlain , Arnd Bergmann , Glauber Costa Subject: Re: [PATCH] docs: admin-guide: sysctl: fix details of struct dentry_stat_t In-Reply-To: <20230923195144.26043-1-rdunlap@infradead.org> References: <20230923195144.26043-1-rdunlap@infradead.org> Date: Tue, 03 Oct 2023 09:28:27 -0600 Message-ID: <877co3g1yc.fsf@meer.lwn.net> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org Randy Dunlap writes: > Commit c8c0c239d5ab moved struct dentry_stat_t to fs/dcache.c but > did not update its location in Documentation, so update that now. > Also change each struct member from int to long as done in > commit 3942c07ccf98. > > Fixes: c8c0c239d5ab ("fs: move dcache sysctls to its own file") > Fixes: 3942c07ccf98 ("fs: bump inode and dentry counters to long") > Signed-off-by: Randy Dunlap > Cc: Jonathan Corbet > Cc: linux-doc@vger.kernel.org > Cc: Alexander Viro > Cc: Christian Brauner > Cc: linux-fsdevel@vger.kernel.org > Cc: Luis Chamberlain > Cc: Arnd Bergmann > Cc: Glauber Costa > --- > Documentation/admin-guide/sysctl/fs.rst | 16 ++++++++-------- > 1 file changed, 8 insertions(+), 8 deletions(-) > > diff -- a/Documentation/admin-guide/sysctl/fs.rst b/Documentation/admin-guide/sysctl/fs.rst > --- a/Documentation/admin-guide/sysctl/fs.rst > +++ b/Documentation/admin-guide/sysctl/fs.rst > @@ -42,16 +42,16 @@ pre-allocation or re-sizing of any kerne > dentry-state > ------------ > > -This file shows the values in ``struct dentry_stat``, as defined in > -``linux/include/linux/dcache.h``:: > +This file shows the values in ``struct dentry_stat_t``, as defined in > +``fs/dcache.c``:: Applied, thanks. jon