git: 715fcc0d3426 - main - vfs: change vn_freevnodes_* prefix to idiomatic vfs_freevnodes_*
Mateusz Guzik
mjg at FreeBSD.org
Tue May 18 15:30:32 UTC 2021
The branch main has been updated by mjg:
URL: https://cgit.FreeBSD.org/src/commit/?id=715fcc0d342684da5d109a7e4891d30aa38667c9
commit 715fcc0d342684da5d109a7e4891d30aa38667c9
Author: Mateusz Guzik <mjg at FreeBSD.org>
AuthorDate: 2021-05-14 19:01:56 +0000
Commit: Mateusz Guzik <mjg at FreeBSD.org>
CommitDate: 2021-05-18 15:30:28 +0000
vfs: change vn_freevnodes_* prefix to idiomatic vfs_freevnodes_*
---
sys/kern/vfs_subr.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index 468bd21dae21..875925ac9a58 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -1426,7 +1426,7 @@ static int vnlruproc_sig;
#define VNLRU_FREEVNODES_SLOP 128
static __inline void
-vn_freevnodes_inc(void)
+vfs_freevnodes_inc(void)
{
struct vdbatch *vd;
@@ -1437,7 +1437,7 @@ vn_freevnodes_inc(void)
}
static __inline void
-vn_freevnodes_dec(void)
+vfs_freevnodes_dec(void)
{
struct vdbatch *vd;
@@ -3369,7 +3369,7 @@ vhold(struct vnode *vp)
VNASSERT(old >= 0 && (old & VHOLD_ALL_FLAGS) == 0, vp,
("%s: wrong hold count %d", __func__, old));
if (old == 0)
- vn_freevnodes_dec();
+ vfs_freevnodes_dec();
}
void
@@ -3422,7 +3422,7 @@ vhold_smr(struct vnode *vp)
VNASSERT(count >= 0, vp, ("invalid hold count %d\n", count));
if (atomic_fcmpset_int(&vp->v_holdcnt, &count, count + 1)) {
if (count == 0)
- vn_freevnodes_dec();
+ vfs_freevnodes_dec();
return (true);
}
}
@@ -3463,7 +3463,7 @@ vhold_recycle_free(struct vnode *vp)
return (false);
}
if (atomic_fcmpset_int(&vp->v_holdcnt, &count, count + 1)) {
- vn_freevnodes_dec();
+ vfs_freevnodes_dec();
return (true);
}
}
@@ -3624,7 +3624,7 @@ vdropl_final(struct vnode *vp)
* we never got this far, they will vdrop later.
*/
if (__predict_false(!atomic_cmpset_int(&vp->v_holdcnt, 0, VHOLD_NO_SMR))) {
- vn_freevnodes_inc();
+ vfs_freevnodes_inc();
VI_UNLOCK(vp);
/*
* We lost the aforementioned race. Any subsequent access is
@@ -3661,7 +3661,7 @@ vdropl(struct vnode *vp)
return;
}
if (!VN_IS_DOOMED(vp)) {
- vn_freevnodes_inc();
+ vfs_freevnodes_inc();
vdrop_deactivate(vp);
/*
* Also unlocks the interlock. We can't assert on it as we
More information about the dev-commits-src-main
mailing list