From 413eb5796846da1193d42980ff70ee06b9d35202 Mon Sep 17 00:00:00 2001 From: Dmitry Gorbachev Date: Sat, 19 May 2007 15:13:37 +0000 Subject: [PATCH] Do not use paged pool at page fault time; see bug report #2252. svn path=/trunk/; revision=26841 --- reactos/ntoskrnl/mm/section.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/mm/section.c b/reactos/ntoskrnl/mm/section.c index 6177c7ec13f..db31e6a7407 100644 --- a/reactos/ntoskrnl/mm/section.c +++ b/reactos/ntoskrnl/mm/section.c @@ -313,7 +313,7 @@ MmSetPageEntrySectionSegment(PMM_SECTION_SEGMENT Segment, { Table = Segment->PageDirectory.PageTables[DirectoryOffset] = - ExAllocatePoolWithTag(PagedPool, sizeof(SECTION_PAGE_TABLE), + ExAllocatePoolWithTag(NonPagedPool, sizeof(SECTION_PAGE_TABLE), TAG_SECTION_PAGE_TABLE); if (Table == NULL) {