https://git.reactos.org/?p=reactos.git;a=commitdiff;h=8119e0ad2bfb765167c6c…
commit 8119e0ad2bfb765167c6cc608f4b0fd1ce8584e1
Author: Pierre Schweitzer <pierre(a)reactos.org>
AuthorDate: Fri Feb 9 11:05:44 2018 +0100
Commit: Pierre Schweitzer <pierre(a)reactos.org>
CommitDate: Fri Feb 9 11:05:44 2018 +0100
[NTOSKRNL] Silence lazy writer now we know it works
---
ntoskrnl/cc/lazywrite.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ntoskrnl/cc/lazywrite.c b/ntoskrnl/cc/lazywrite.c
index 261fcf363e..adb9fb09d7 100644
--- a/ntoskrnl/cc/lazywrite.c
+++ b/ntoskrnl/cc/lazywrite.c
@@ -143,13 +143,13 @@ CcLazyWriteScan(VOID)
if (Target != 0)
{
/* Flush! */
- DPRINT1("Lazy writer starting (%d)\n", Target);
+ DPRINT("Lazy writer starting (%d)\n", Target);
CcRosFlushDirtyPages(Target, &Count, FALSE, TRUE);
/* And update stats */
CcLazyWritePages += Count;
++CcLazyWriteIos;
- DPRINT1("Lazy writer done (%d)\n", Count);
+ DPRINT("Lazy writer done (%d)\n", Count);
}
/* If we have deferred writes, try them now! */