mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[NTOSKRNL]
- Quiet down the paging path svn path=/trunk/; revision=54649
This commit is contained in:
parent
c6b88aa125
commit
73252334c4
4 changed files with 7 additions and 7 deletions
|
@ -387,7 +387,7 @@ retry:
|
|||
if (PagesFreed != 0)
|
||||
{
|
||||
/* Try again after flushing dirty pages */
|
||||
DPRINT1("Flushed %d dirty cache pages to disk\n", PagesFreed);
|
||||
DPRINT("Flushed %d dirty cache pages to disk\n", PagesFreed);
|
||||
goto retry;
|
||||
}
|
||||
}
|
||||
|
@ -400,7 +400,7 @@ retry:
|
|||
CcRosInternalFreeCacheSegment(current);
|
||||
}
|
||||
|
||||
DPRINT1("Evicted %d cache pages\n", (*NrFreed));
|
||||
DPRINT("Evicted %d cache pages\n", (*NrFreed));
|
||||
|
||||
return(STATUS_SUCCESS);
|
||||
}
|
||||
|
|
|
@ -81,7 +81,7 @@ MmPageOutVirtualMemory(PMMSUPPORT AddressSpace,
|
|||
Page = MmGetPfnForProcess(Process, Address);
|
||||
if (MmGetReferenceCountPage(Page) != 1)
|
||||
{
|
||||
DPRINT1("Cannot page out locked virtual memory page: 0x%p (RefCount: %d)\n",
|
||||
DPRINT("Cannot page out locked virtual memory page: 0x%p (RefCount: %d)\n",
|
||||
Page, MmGetReferenceCountPage(Page));
|
||||
PageOp->Status = STATUS_UNSUCCESSFUL;
|
||||
KeSetEvent(&PageOp->CompletionEvent, IO_NO_INCREMENT, FALSE);
|
||||
|
|
|
@ -164,10 +164,10 @@ MiTrimMemoryConsumer(ULONG Consumer)
|
|||
/* Now swap the pages out */
|
||||
Status = MiMemoryConsumers[Consumer].Trim(Target, 0, &NrFreedPages);
|
||||
|
||||
DPRINT1("Trimming consumer %d: Freed %d pages with a target of %d pages\n", Consumer, NrFreedPages, Target);
|
||||
DPRINT("Trimming consumer %d: Freed %d pages with a target of %d pages\n", Consumer, NrFreedPages, Target);
|
||||
|
||||
if (NrFreedPages == 0)
|
||||
DPRINT1("Ran out of pages to swap! Complete memory exhaustion is imminent!\n");
|
||||
if (NrFreedPages == 0)
|
||||
DPRINT1("Ran out of pages to swap!\n");
|
||||
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
|
|
|
@ -2111,7 +2111,7 @@ MmPageOutSectionView(PMMSUPPORT AddressSpace,
|
|||
*/
|
||||
if (MmGetReferenceCountPage(Page) != 1)
|
||||
{
|
||||
DPRINT1("Cannot page out locked section page: 0x%p (RefCount: %d)\n",
|
||||
DPRINT("Cannot page out locked section page: 0x%p (RefCount: %d)\n",
|
||||
Page, MmGetReferenceCountPage(Page));
|
||||
PageOp->Status = STATUS_UNSUCCESSFUL;
|
||||
MmspCompleteAndReleasePageOp(PageOp);
|
||||
|
|
Loading…
Reference in a new issue