aboutsummaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-06-28 23:19:09 -0400
committerIan Moffett <ian@osmora.org>2024-06-28 23:19:09 -0400
commitd516e8a27f1a52c92d39aada03ff92985b1fdf7e (patch)
treee9a4808cf6e2bf2da26c237622ea262e3778b000 /sys/kern
parentbbc4eeea0da272c704f00a23fe08bc6ddc021922 (diff)
kernel: vfs: Add vnode refcount
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/vfs_subr.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index b732cb4..0d4be72 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -30,6 +30,7 @@
#include <sys/vnode.h>
#include <sys/errno.h>
#include <sys/mount.h>
+#include <sys/syslog.h>
#include <vm/dynalloc.h>
#include <string.h>
@@ -46,6 +47,7 @@ vfs_alloc_vnode(struct vnode **res, int type)
memset(vp, 0, sizeof(*vp));
vp->type = type;
+ vp->refcount = 1;
*res = vp;
return 0;
}
@@ -83,6 +85,23 @@ vfs_release_vnode(struct vnode *vp)
if (vp == NULL)
return -EINVAL;
+
+ /*
+ * The refcount cannot be zero before we decrement it,
+ * something is quite wrong if this happens.
+ */
+ if (vp->refcount == 0) {
+ kprintf("Cannot release vnode, bad refcount\n");
+ return -EIO;
+ }
+
+ /*
+ * Drop the reference and don't destroy the vnode
+ * if it's still not zero.
+ */
+ if (atomic_dec_int(&vp->refcount) > 0)
+ return 0;
+
if (vops->reclaim != NULL)
status = vops->reclaim(vp);
if (status != 0)