Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Jan 2021 20:43:44 GMT
From:      Mateusz Guzik <mjg@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: a51eca7936db - main - cache: stop referring to removing entries as invalidating them
Message-ID:  <202101262043.10QKhihT049013@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by mjg:

URL: https://cgit.FreeBSD.org/src/commit/?id=a51eca7936db50a57d2324d945c3be715df749cd

commit a51eca7936db50a57d2324d945c3be715df749cd
Author:     Mateusz Guzik <mjg@FreeBSD.org>
AuthorDate: 2021-01-26 20:31:16 +0000
Commit:     Mateusz Guzik <mjg@FreeBSD.org>
CommitDate: 2021-01-26 20:42:53 +0000

    cache: stop referring to removing entries as invalidating them
    
    Said use is a remnant from the old code and clashes with the NCF_INVALID
    flag.
---
 sys/kern/vfs_cache.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c
index 72669449c26a..4e2cfa9edf53 100644
--- a/sys/kern/vfs_cache.c
+++ b/sys/kern/vfs_cache.c
@@ -2597,7 +2597,7 @@ cache_changesize(u_long newmaxvnodes)
 }
 
 /*
- * Invalidate all entries from and to a particular vnode.
+ * Remove all entries from and to a particular vnode.
  */
 static void
 cache_purge_impl(struct vnode *vp)
@@ -2688,7 +2688,7 @@ cache_purge_vgone(struct vnode *vp)
 }
 
 /*
- * Invalidate all negative entries for a particular directory vnode.
+ * Remove all negative entries for a particular directory vnode.
  */
 void
 cache_purge_negative(struct vnode *vp)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101262043.10QKhihT049013>