From owner-dev-commits-src-all@freebsd.org Tue Jan 19 09:22:07 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 964FB4ED132; Tue, 19 Jan 2021 09:22:07 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DKjpl1BGDz4sjv; Tue, 19 Jan 2021 09:22:07 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D46A924124; Tue, 19 Jan 2021 09:22:06 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 10J9M61c022965; Tue, 19 Jan 2021 09:22:06 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 10J9M6W8022964; Tue, 19 Jan 2021 09:22:06 GMT (envelope-from git) Date: Tue, 19 Jan 2021 09:22:06 GMT Message-Id: <202101190922.10J9M6W8022964@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Mateusz Guzik Subject: git: 57dab0292a8f - main - cache: fix some typos MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: mjg X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 57dab0292a8f96cd7c374d7c1d61cd7c0bd77bfd Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Jan 2021 09:22:07 -0000 The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=57dab0292a8f96cd7c374d7c1d61cd7c0bd77bfd commit 57dab0292a8f96cd7c374d7c1d61cd7c0bd77bfd Author: Mateusz Guzik AuthorDate: 2021-01-19 09:17:14 +0000 Commit: Mateusz Guzik CommitDate: 2021-01-19 09:17:14 +0000 cache: fix some typos --- sys/kern/vfs_cache.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c index fea32f90682c..0621bfb12d3e 100644 --- a/sys/kern/vfs_cache.c +++ b/sys/kern/vfs_cache.c @@ -4008,7 +4008,7 @@ cache_fplookup_partial_setup(struct cache_fpl *fpl) * * Ultimately this does not affect correctness, any lookup errors * are userspace racing with itself. It is guaranteed that any - * path which ultimatley gets found could also have been found + * path which ultimately gets found could also have been found * by regular lookup going all the way in absence of concurrent * modifications. */ @@ -4159,7 +4159,7 @@ cache_fplookup_final_modifying(struct cache_fpl *fpl) * reasoning. * * XXX At least UFS requires its lookup routine to be called for - * the last path component, which leads to some level of complicaton + * the last path component, which leads to some level of complication * and inefficiency: * - the target routine always locks the target vnode, but our caller * may not need it locked @@ -5045,7 +5045,7 @@ cache_fplookup_parse(struct cache_fpl *fpl) #ifdef INVARIANTS /* * Code below is only here to assure compatibility with regular lookup. - * It covers handling of trailing slashles and names like "/", both of + * It covers handling of trailing slashes and names like "/", both of * which of can be taken care of upfront which lockless lookup does * in cache_fplookup_preparse. Regular lookup performs these for each * path component.