From bc99258d5223dd14cd0f837d0d6dc62cdfbce18a Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Tue, 14 Jul 2026 23:35:46 +0200 Subject: [PATCH] Add missing quota tracking variables --- xtoskrnl/mm/data.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xtoskrnl/mm/data.cc b/xtoskrnl/mm/data.cc index a89d69e..81af48f 100644 --- a/xtoskrnl/mm/data.cc +++ b/xtoskrnl/mm/data.cc @@ -168,3 +168,9 @@ PFN_COUNT MM::Pte::TotalSystemFreePtes[MaximumPtePoolTypes]; /* Template PTE entry containing standard flags for a valid, present kernel page */ MMPTE MM::Pte::ValidPte; + +/* Global limit for system-wide non-paged pool quota allocations */ +SIZE_T MM::Quota::NonPagedPoolQuota; + +/* Global limit for system-wide paged pool quota allocations */ +SIZE_T MM::Quota::PagedPoolQuota;