From 58e99b046d40dcb0c413a2750ccb1b777d6c58cd Mon Sep 17 00:00:00 2001 From: Max Wash Date: Tue, 21 Apr 2026 21:16:50 +0100 Subject: [PATCH] libfs: implement private/shared mapping support --- lib/libfs/context.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libfs/context.c b/lib/libfs/context.c index 87a0597..b5d2750 100644 --- a/lib/libfs/context.c +++ b/lib/libfs/context.c @@ -73,6 +73,7 @@ struct fs_context *fs_context_create(struct fs_allocator *alloc) ctx->ctx_temp_object, 0, TEMP_OBJECT_SIZE, + VM_PRIVATE, VM_PROT_READ | VM_PROT_WRITE | VM_PROT_USER, &temp_buffer); kern_handle_close(address_space);