diff options
author | Mateusz Guzik <mjg@FreeBSD.org> | 2021-01-23 17:21:42 +0000 |
---|---|---|
committer | Mateusz Guzik <mjg@FreeBSD.org> | 2021-02-01 12:39:15 +0000 |
commit | ba0689009b712c558f4ec2b28202a4e45c5bab91 (patch) | |
tree | 2d809cb4765da63e25cedaaf3c9aec19c6448a97 | |
parent | c5fcd06736f93ab6dd7b93d54dbeae68ae06ed7b (diff) | |
download | src-ba0689009b712c558f4ec2b28202a4e45c5bab91.tar.gz src-ba0689009b712c558f4ec2b28202a4e45c5bab91.zip |
cache: add back target entry on rename
(cherry picked from commit 02ec31bdf60fa3a8530544cb3c8c4ec1df6cde0d)
-rw-r--r-- | sys/kern/vfs_cache.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sys/kern/vfs_cache.c b/sys/kern/vfs_cache.c index 770c8ebf061b..03bafc75acaa 100644 --- a/sys/kern/vfs_cache.c +++ b/sys/kern/vfs_cache.c @@ -367,6 +367,10 @@ static bool __read_frequently cache_fast_revlookup = true; SYSCTL_BOOL(_vfs, OID_AUTO, cache_fast_revlookup, CTLFLAG_RW, &cache_fast_revlookup, 0, ""); +static bool __read_mostly cache_rename_add = true; +SYSCTL_BOOL(_vfs, OID_AUTO, cache_rename_add, CTLFLAG_RW, + &cache_rename_add, 0, ""); + static u_int __exclusive_cache_line neg_cycle; #define ncneghash 3 @@ -2731,6 +2735,21 @@ cache_vop_rename(struct vnode *fdvp, struct vnode *fvp, struct vnode *tdvp, } else { cache_remove_cnp(tdvp, tcnp); } + + /* + * TODO + * + * Historically renaming was always purging all revelang entries, + * but that's quite wasteful. In particular turns out that in many cases + * the target file is immediately accessed after rename, inducing a cache + * miss. + * + * Recode this to reduce relocking and reuse the existing entry (if any) + * instead of just removing it above and allocating a new one here. + */ + if (cache_rename_add) { + cache_enter(tdvp, fvp, tcnp); + } } void |