From 91946ae88fa489d123a033ab0dde1e3f8bc1e436 Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Mon, 29 Jun 2026 22:19:52 +0200 Subject: [PATCH] Use non-paged pool as temporary fallback for paged pool allocations --- xtoskrnl/mm/alloc.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xtoskrnl/mm/alloc.cc b/xtoskrnl/mm/alloc.cc index d818cf2..8841b56 100644 --- a/xtoskrnl/mm/alloc.cc +++ b/xtoskrnl/mm/alloc.cc @@ -203,8 +203,8 @@ MM::Allocator::AllocatePagedPoolPages(IN PFN_COUNT Pages, { UNIMPLEMENTED; - /* Return not implemented status code */ - return STATUS_NOT_IMPLEMENTED; + /* Temporarily fall back to non-paged pool */ + return AllocateNonPagedPoolPages(Pages, Memory); } /**