summaryrefslogtreecommitdiff
path: root/sys/vm/vm_vnode.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vm/vm_vnode.c')
-rw-r--r--sys/vm/vm_vnode.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/vm/vm_vnode.c b/sys/vm/vm_vnode.c
index 31e74cc..27defc9 100644
--- a/sys/vm/vm_vnode.c
+++ b/sys/vm/vm_vnode.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team.
+ * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -50,8 +50,6 @@
#define pr_debug(...) __nothing
#endif /* PR_DEBUG */
-const struct vm_pagerops vm_vnops;
-
/*
* Perform read/write operation on vnode to/from pages.
*
@@ -164,7 +162,6 @@ vn_attach(struct vnode *vp, vm_prot_t prot)
if (vp->type != VREG) {
pr_error("vn_attach: vp=%p, prot=%x\n", vp, prot);
- pr_error("vn_attach: Special files not supported yet!\n");
return NULL;
}