git: 82efef21d051 - stable/13 - cache: stop referring to removing entries as invalidating them

Mateusz Guzik mjg at FreeBSD.org
Mon Feb 1 12:41:00 UTC 2021


The branch stable/13 has been updated by mjg:

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

commit 82efef21d051796c97796f85ff3fda76104bedb7
Author:     Mateusz Guzik <mjg at FreeBSD.org>
AuthorDate: 2021-01-26 20:31:16 +0000
Commit:     Mateusz Guzik <mjg at FreeBSD.org>
CommitDate: 2021-02-01 12:39:17 +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.
    
    (cherry picked from commit a51eca7936db50a57d2324d945c3be715df749cd)
---
 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)


More information about the dev-commits-src-all mailing list