diff options
author | Ian Moffett <ian@osmora.org> | 2024-04-19 22:08:50 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-04-20 15:51:51 -0400 |
commit | 852b00cbc75b83390984a77048e443a43dd0ae48 (patch) | |
tree | 6498eb754b4389fcb0964e97c247c7ae2bcc3740 /sys/vm | |
parent | 7c8707f06fd8d5953b7f4721f6625b87d3225f8e (diff) |
kernel: vm: Add vm_object refcount
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_obj.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/vm/vm_obj.c b/sys/vm/vm_obj.c index 589ca47..7487b47 100644 --- a/sys/vm/vm_obj.c +++ b/sys/vm/vm_obj.c @@ -59,6 +59,7 @@ vm_obj_init(struct vm_object **res, struct vnode *vnode) memset(obj, 0, sizeof(struct vm_object)); obj->vnode = vnode; + obj->ref = 1; vm_set_pgops(obj, vnode); *res = obj; @@ -73,6 +74,10 @@ vm_obj_destroy(struct vm_object *obj) if (vp->vmobj != NULL) vp->vmobj = NULL; + /* Check the ref count */ + if (obj->ref > 1) + return -EBUSY; + dynfree(obj); return 0; } |