From patchwork Wed Mar 27 05:17:02 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Tobin C. Harding" X-Patchwork-Id: 10872593 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 291B31390 for ; Wed, 27 Mar 2019 05:20:46 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 14C7C28D57 for ; Wed, 27 Mar 2019 05:20:46 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0866C28D5D; Wed, 27 Mar 2019 05:20:46 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A89F528D57 for ; Wed, 27 Mar 2019 05:20:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732985AbfC0FTC (ORCPT ); Wed, 27 Mar 2019 01:19:02 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:45697 "EHLO out3-smtp.messagingengine.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725768AbfC0FTB (ORCPT ); Wed, 27 Mar 2019 01:19:01 -0400 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 19A48221C7; Wed, 27 Mar 2019 01:19:01 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute3.internal (MEProxy); Wed, 27 Mar 2019 01:19:01 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:date:from :in-reply-to:message-id:mime-version:references:subject:to :x-me-proxy:x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s= fm2; bh=EI2kvjMYxI9NZT6jazAG4/C7CRPm9Z9KWaXkTfQAzGE=; b=U9sWw1nU +9jg6Z+Z1sT49a23SvLI+2rRRTiMFJEI1gaZklRjLH+X6hEToIubfXX6UxTaa7Dx HhXfWYg0khODYbznp2vvrSoGBZfC3kCoe7aLOdSIi3nanv7QZGEcYmXZDsjXWvdr 8cuEPIGungynqNWB3/zO4UeULGpeFL7461OJE1p8Vd580j2IujrkOqBX+/DNxmZu Nl3cM+BsSddIdF4S92oylwCa5RET5janxwkN+uuJmOrCWNG+YMHf3JJa0Y2YiZ2o leN1Ny/ikJYP6Ba9KMeVv0We43+sxqXsUeRr8H50dMButjGQVbnZYfIH4jQhpFmu 1huOVLo9p2r66g== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedutddrkedugdektdcutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkofgjfhgggfestdekredtredttdenucfhrhhomhepfdfvohgsihhn ucevrdcujfgrrhguihhnghdfuceothhosghinheskhgvrhhnvghlrdhorhhgqeenucfkph epuddvgedrudeiledrudefledrudelvdenucfrrghrrghmpehmrghilhhfrhhomhepthho sghinheskhgvrhhnvghlrdhorhhgnecuvehluhhsthgvrhfuihiivgepke X-ME-Proxy: Received: from eros.localdomain (124-169-139-192.dyn.iinet.net.au [124.169.139.192]) by mail.messagingengine.com (Postfix) with ESMTPA id A02E2E4210; Wed, 27 Mar 2019 01:18:57 -0400 (EDT) From: "Tobin C. Harding" To: Al Viro Cc: "Tobin C. Harding" , Jonathan Corbet , Mauro Carvalho Chehab , Neil Brown , Randy Dunlap , linux-doc@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v3 09/24] dcache: Fix i.e. usage in coments Date: Wed, 27 Mar 2019 16:17:02 +1100 Message-Id: <20190327051717.23225-10-tobin@kernel.org> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190327051717.23225-1-tobin@kernel.org> References: <20190327051717.23225-1-tobin@kernel.org> MIME-Version: 1.0 Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The correct abbreviation for 'id est' or 'in other words' is 'i.e.' not 'ie'. Use correct short form: i.e. Signed-off-by: Tobin C. Harding --- fs/dcache.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/dcache.c b/fs/dcache.c index 7bc7cf9b8962..9fc13c574bfb 100644 --- a/fs/dcache.c +++ b/fs/dcache.c @@ -366,7 +366,7 @@ static void dentry_unlink_inode(struct dentry * dentry) * LRU list _and_ the DCACHE_SHRINK_LIST use. * * The DCACHE_SHRINK_LIST bit is set whenever the dentry is - * on the shrink list (ie not on the superblock LRU list). + * on the shrink list (i.e. not on the superblock LRU list). * * The per-cpu "nr_dentry_unused" counters are updated with * the DCACHE_LRU_LIST bit. @@ -408,7 +408,7 @@ static void d_shrink_add(struct dentry *dentry, struct list_head *list) } /* - * These can only be called under the global LRU lock, ie during the + * These can only be called under the global LRU lock, i.e. during the * callback for freeing the LRU list. "isolate" removes it from the * LRU lists entirely, while shrink_move moves it to the indicated * private list.