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 5C6DAC25B47 for ; Fri, 27 Oct 2023 22:14:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346644AbjJ0WOn (ORCPT ); Fri, 27 Oct 2023 18:14:43 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36332 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232134AbjJ0WOl (ORCPT ); Fri, 27 Oct 2023 18:14:41 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4B170CE; Fri, 27 Oct 2023 15:14:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: Content-Type:In-Reply-To:From:References:Cc:To:Subject:MIME-Version:Date: Message-ID:Sender:Reply-To:Content-ID:Content-Description; bh=CMf95GxFR8SIbHmrNw3UEkZJ72B9RcomHcSfUASgMLY=; b=ryYOFteNyJn3xL50GW8vCIdkTM OcKJT32lSdCpPKAjPbWcMmH2bHycXecgENHdB6FEGwWGtwQnOwtbnEyjJtZXHZg1MxWNTg6EY7aBf NVT/lum+j2pR+2NcpDz9N1OIYgmu1n/LBxYr3MO004xMWh8RO3yfTOmqJur7GcueMwJO17YzRifYA EI05e3OuCRsaradAexMOL+z+AICs7GbvuYal3sOLVo5ggtu/hT9cVywDe9DKLuOCuyktnGsnEWD43 3uRbpPmCy5HXM37oVG/2Q9csmUNSeqsdbUyIBD4k9XPbicOr89C4lwTvn6A9h7Apm5qstLVpL4hTC 3bcywDSA==; Received: from [50.53.46.231] (helo=[192.168.254.15]) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1qwV6B-00HHV2-0J; Fri, 27 Oct 2023 22:14:35 +0000 Message-ID: Date: Fri, 27 Oct 2023 15:14:34 -0700 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] docs: vfs: fix typo in struct xattr_handlers Content-Language: en-US To: Ariel Miculas , linux-doc@vger.kernel.org Cc: serge@hallyn.com, "Matthew Wilcox (Oracle)" , Jonathan Corbet , linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org References: <20231027152101.226296-1-amiculas@cisco.com> From: Randy Dunlap In-Reply-To: <20231027152101.226296-1-amiculas@cisco.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/27/23 08:21, Ariel Miculas wrote: > The structure is called struct xattr_handler, singular, not plural. > Fixing the typo also makes it greppable with the whole word matching > flag. > > Signed-off-by: Ariel Miculas Acked-by: Randy Dunlap Thanks. > --- > Documentation/filesystems/vfs.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/filesystems/vfs.rst b/Documentation/filesystems/vfs.rst > index 99acc2e98673..276a219ff8d9 100644 > --- a/Documentation/filesystems/vfs.rst > +++ b/Documentation/filesystems/vfs.rst > @@ -437,7 +437,7 @@ field. This is a pointer to a "struct inode_operations" which describes > the methods that can be performed on individual inodes. > > > -struct xattr_handlers > +struct xattr_handler > --------------------- > > On filesystems that support extended attributes (xattrs), the s_xattr -- ~Randy