Hello !
I'm currently analysing a BSOD dump, here is the !analyse -v output :
0: kd> !analyze -v
*******************************************************************************
* *
* Bugcheck Analysis *
* *
*******************************************************************************
MEMORY_MANAGEMENT (1a)
# Any other values for parameter 1 must be individually examined.
Arguments:
Arg1: 0000000000041791, The subtype of the bugcheck.
Arg2: ffff978001234530
Arg3: ffffe4807795c7e0
Arg4: 0000000000020001
My problem is that MSDN doesn't provide any information on this bugcheck subtype : Bug Check 0x1A MEMORY_MANAGEMENT - Windows drivers | Microsoft Learn 0x41790 and 0x41792 are defined, but not 0x41791.
0x41790 | A page table page has been corrupted. On a 64-bit version of Windows, parameter 2 contains the address of the PFN for the corrupted page table page. On a 32-bit version of Windows, parameter 2 contains a pointer to the number of used PTEs, and parameter 3 contains the number of used PTEs. |
---|---|
0x41792 | A corrupted PTE has been detected. Parameter 2 contains the address of the PTE. Parameters 3 and 4 contain the low and high parts of the PTE. |
Does someone know what is this subtype supposed to mean ? Also the arguments coming with it ?
Thank you !