diff options
author | Ian Moffett <ian@osmora.org> | 2024-04-20 16:23:59 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-04-20 16:25:49 -0400 |
commit | 11976acd80c0c360de66a99647f58dbb8e5ecf3b (patch) | |
tree | 83491b21087b4078bc54d78c5f66edff09430863 /sys/include/vm/obj.h | |
parent | 852b00cbc75b83390984a77048e443a43dd0ae48 (diff) |
kernel: vm: Add initial demand paging support
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/vm/obj.h')
-rw-r--r-- | sys/include/vm/obj.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/vm/obj.h b/sys/include/vm/obj.h index c1c2f17..ef07a1e 100644 --- a/sys/include/vm/obj.h +++ b/sys/include/vm/obj.h @@ -42,6 +42,7 @@ struct vm_object { struct vm_pagerops *pgops; /* Pager operations */ uint8_t is_anon : 1; /* Is an anonymous mapping */ + uint8_t demand : 1; /* Only mapped upon access */ int ref; /* Ref count */ struct vnode *vnode; /* Only used if `is_anon` is 0 */ }; |