mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[0.4.10][NTOSKRNL] Mute noisy DPRINT 'SectionObject has ImageSection' during shutdown CORE-18029
All releases/0.4.8 until and including releases/0.4.14 were affected by the following logspam
during shutdown:
(../ntoskrnl/mm/section.c:4839) SectionObject has ImageSection
triggered 2 times for bootcd, but triggered 83 times for livecd.
Today I found out by chance, that we started to trigger it with the switch from CDFS to CDFS_NEW with
0.4.8-dev-164-g ec6b3ecbe4
We 'suffered' from that logspam for many years now and it did never help us in any way.
And during 0.4.15-dev'ing with the MM rewrite, the logging was entirely removed in the NTOSKRNL.
This commit is contained in:
parent
0f5a9b7dfd
commit
981fb55319
1 changed files with 0 additions and 3 deletions
|
@ -4817,10 +4817,7 @@ MmFlushImageSection (IN PSECTION_OBJECT_POINTERS SectionObjectPointer,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (SectionObjectPointer->ImageSectionObject)
|
if (SectionObjectPointer->ImageSectionObject)
|
||||||
{
|
|
||||||
DPRINT1("SectionObject has ImageSection\n");
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef NEWCC
|
#ifdef NEWCC
|
||||||
CcpLock();
|
CcpLock();
|
||||||
|
|
Loading…
Reference in a new issue