Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Feb 2021 12:40:54 GMT
From:      Mateusz Guzik <mjg@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 82efef21d051 - stable/13 - cache: stop referring to removing entries as invalidating them
Message-ID:  <202102011240.111Cesrp097399@gitrepo.freebsd.org>

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

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

commit 82efef21d051796c97796f85ff3fda76104bedb7
Author:     Mateusz Guzik <mjg@FreeBSD.org>
AuthorDate: 2021-01-26 20:31:16 +0000
Commit:     Mateusz Guzik <mjg@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)



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