diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-02 21:10:05 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-02 21:10:05 -0400 |
commit | 769376b0d13ccccf53c07de017549ec2fd4f4d94 (patch) | |
tree | 46758dc41b9607f3757e97911721ff62245947bd /sys/vm/vm_vnode.c | |
parent | e4182530a2e6adc045485f04bf7139e009c150e7 (diff) |
kernel: vm: Add initial device pager impl
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/vm/vm_vnode.c')
-rw-r--r-- | sys/vm/vm_vnode.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/vm/vm_vnode.c b/sys/vm/vm_vnode.c index 2457c97..27defc9 100644 --- a/sys/vm/vm_vnode.c +++ b/sys/vm/vm_vnode.c @@ -162,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; } |