当前位置:   article > 正文

windbg抓一个windows蓝屏分析_windbg分析蓝屏教程

windbg分析蓝屏教程

前言

一直以来挺稳定,但还是小概率事件意外出现某machine突然蓝屏了。查看windows事件查看器提示计算机已经从检测错误后重新启动。检测错误: 0x0000009f (0x0000000000000003, 0xffffad0f4edc7570, 0xfffff8046a09ec20, 0xffffad0f4ef318a0)。已将转储的数据保存在: C:\Windows\MEMORY.DMP。

(注:纯知识总结分享,内容已脱敏。)

分析过程

蓝屏错误代码解释

首先查看微软csdn中关于蓝屏错误代码的解释:Bug 检查 0x9F:DRIVER_POWER_STATE_FAILUR,此 bug 检查表明驱动程序处于不一致或处于无效状态。

Bug 检查 0x9F DRIVER_POWER_STATE_FAILURE - Windows drivers | Microsoft Learn

 WinDbg工具使用

Windbg是在windows平台下,强大的用户态和内核态调试工具。相比较于Visual Studio,它是一个轻量级的调试工具,它的另外一个用途是可以用来分析dump数据。

Windbg的symbol file path设置:

srv*C:\symbols*http://msdl.microsoft.com/download/symbols

1.先使用!analyze -v 命令查看基础bug信息报告。 

  1. 0: kd> !analyze -v
  2. *******************************************************************************
  3. * *
  4. * Bugcheck Analysis *
  5. * *
  6. *******************************************************************************
  7. DRIVER_POWER_STATE_FAILURE (9f)
  8. A driver has failed to complete a power IRP within a specific time.
  9. Arguments:
  10. Arg1: 0000000000000003, A device object has been blocking an Irp for too long a time
  11. Arg2: ffffad0f4edc7570, Physical Device Object of the stack
  12. Arg3: fffff8046a09ec20, nt!TRIAGE_9F_POWER on Win7 and higher, otherwise the Functional Device Object of the stack
  13. Arg4: ffffad0f4ef318a0, The blocked IRP
  14. Debugging Details:
  15. ------------------
  16. Implicit thread is now ffffad0f`4e521040

查看线程的堆栈信息:

0: kd> .thread 0xffffad0f4e521040 ; kb

 从线程堆栈中看到,像是usb驱动层出了问题,通过调用 PoRequestPowerIrp 发送设备电源请求以响应系统电源请求。管理设备电源策略 - Windows drivers | Microsoft Learn

USBXHCI!Controller_WdfEvtPreprocessSetPowerIrp+0x14a

 2.使用 ! irp 命令检查已阻止的 irp。 此 IRP 的地址位于 Arg4 中。 

3.使用带有 Arg2 地址的 ! devstack 命令来显示与错误驱动程序关联的信息。

  

从以上过程看到,暴露出来了设备树ID,但是从这一长串中如何更进一步看到具体的设备?尤其是usb设备的vid和pid等信息。 

4.使用!devnode 扩展显示有关设备树中节点的信息。

注意图中红色标注的child地址,接下来继续展开节点查看信息: 

 再接着展开:

接着展开查看: 

最终显示如下,是一个hid类型的输入设备,设备硬件ID是"HID\VID_03EB&PID_8A6E&MI_00\8&5bc49fe&0&0000"。

 那么最终大致确定出问题的可能是这个hid设备驱动异常导致的,如何在设备上找到具体是哪个硬件设备?在电脑设备管理器中能找一找,但是相要看到更全面的usb设备信息,推荐使用UsbTreeView工具。

 UsbTreeView工具使用

UsbTreeView是Windows下的一款关于USB描述符分析的工具,可以显示USB设备的一系列属性值。其中包括驱动路径,和inf配置文件路径。总共几百k大小,免安装解压可以直接使用,非常小巧。该工具有以下特点:

  • 实时显示USB设备的连接状态。
  • 以树状的形式显示连接到PC机中的所有USB设备,集线器和控制器。
  • 可完美的分析连接到PC机中USB设备的各类USB描述符信息。
  • 支持USB1.0/USB2.0/USB3.x规范协议分析。
  • 支持对UVC,UAC,HID设备的描述符信息分析。

UsbTreeView的下载地址:Uwe Sieber's Homepage 

使用UsbTreeView可以看到电脑中的USB设备树,左边为设备的树状状系,右边为设备的详细信息。 

 最后附上完整的windbg日志:

  1. Microsoft (R) Windows Debugger Version 10.0.14321.1024 X86
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Loading Dump File [D:\Users\Administrator\Desktop\test\log\MEMORY.DMP]
  4. Kernel Bitmap Dump File: Kernel address space is available, User address space may not be available.
  5. ************* Symbol Path validation summary **************
  6. Response Time (ms) Location
  7. Deferred srv*C:\symbols*http://msdl.microsoft.com/download/symbols
  8. Symbol search path is: srv*C:\symbols*http://msdl.microsoft.com/download/symbols
  9. Executable search path is:
  10. Windows 10 Kernel Version 17763 MP (4 procs) Free x64
  11. Product: WinNt, suite: TerminalServer SingleUserTS
  12. Built by: 17763.1.amd64fre.rs5_release.180914-1434
  13. Machine Name:
  14. Kernel base = 0xfffff804`678b6000 PsLoadedModuleList = 0xfffff804`67ccc490
  15. Debug session time: Wed Jan 11 04:20:50.968 2023 (UTC + 8:00)
  16. System Uptime: 8 days 19:36:27.847
  17. Loading Kernel Symbols
  18. ...............................................................
  19. ................................................................
  20. ..........................................................
  21. Loading User Symbols
  22. PEB is paged out (Peb.Ldr = 00000000`00216018). Type ".hh dbgerr001" for details
  23. Loading unloaded module list
  24. ........
  25. *******************************************************************************
  26. * *
  27. * Bugcheck Analysis *
  28. * *
  29. *******************************************************************************
  30. Use !analyze -v to get detailed debugging information.
  31. BugCheck 9F, {3, ffffad0f4edc7570, fffff8046a09ec20, ffffad0f4ef318a0}
  32. Implicit thread is now ffffad0f`4e521040
  33. Page 40100 not present in the dump file. Type ".hh dbgerr004" for details
  34. Page 40100 not present in the dump file. Type ".hh dbgerr004" for details
  35. Page 40100 not present in the dump file. Type ".hh dbgerr004" for details
  36. Probably caused by : memory_corruption
  37. Followup: memory_corruption
  38. ---------
  39. 0: kd> !analyze -v
  40. *******************************************************************************
  41. * *
  42. * Bugcheck Analysis *
  43. * *
  44. *******************************************************************************
  45. DRIVER_POWER_STATE_FAILURE (9f)
  46. A driver has failed to complete a power IRP within a specific time.
  47. Arguments:
  48. Arg1: 0000000000000003, A device object has been blocking an Irp for too long a time
  49. Arg2: ffffad0f4edc7570, Physical Device Object of the stack
  50. Arg3: fffff8046a09ec20, nt!TRIAGE_9F_POWER on Win7 and higher, otherwise the Functional Device Object of the stack
  51. Arg4: ffffad0f4ef318a0, The blocked IRP
  52. Debugging Details:
  53. ------------------
  54. Implicit thread is now ffffad0f`4e521040
  55. Page 40100 not present in the dump file. Type ".hh dbgerr004" for details
  56. Page 40100 not present in the dump file. Type ".hh dbgerr004" for details
  57. Page 40100 not present in the dump file. Type ".hh dbgerr004" for details
  58. DUMP_CLASS: 1
  59. DUMP_QUALIFIER: 401
  60. BUILD_VERSION_STRING: 17763.1.amd64fre.rs5_release.180914-1434
  61. SYSTEM_MANUFACTURER: To be filled by O.E.M.
  62. SYSTEM_PRODUCT_NAME: To be filled by O.E.M.
  63. SYSTEM_SKU: To be filled by O.E.M.
  64. SYSTEM_VERSION: To be filled by O.E.M.
  65. BIOS_VENDOR: American Megatrends Inc.
  66. BIOS_VERSION: 4.6.5
  67. BIOS_DATE: 01/19/2021
  68. BASEBOARD_MANUFACTURER: INTEL Corporation
  69. BASEBOARD_PRODUCT: MAHOBAY
  70. BASEBOARD_VERSION: To be filled by O.E.M.
  71. DUMP_TYPE: 1
  72. BUGCHECK_P1: 3
  73. BUGCHECK_P2: ffffad0f4edc7570
  74. BUGCHECK_P3: fffff8046a09ec20
  75. BUGCHECK_P4: ffffad0f4ef318a0
  76. DRVPOWERSTATE_SUBCODE: 3
  77. FAULTING_THREAD: 4e521040
  78. CPU_COUNT: 4
  79. CPU_MHZ: c15
  80. CPU_VENDOR: GenuineIntel
  81. CPU_FAMILY: 6
  82. CPU_MODEL: 3a
  83. CPU_STEPPING: 9
  84. CPU_MICROCODE: 6,3a,9,0 (F,M,S,R) SIG: 21'00000000 (cache) 21'00000000 (init)
  85. DEFAULT_BUCKET_ID: CODE_CORRUPTION
  86. BUGCHECK_STR: 0x9F
  87. PROCESS_NAME: LoadPointUI.exe
  88. CURRENT_IRQL: 2
  89. ANALYSIS_SESSION_HOST: DESKTOP-3GQMSDN
  90. ANALYSIS_SESSION_TIME: 01-29-2023 09:36:00.0108
  91. ANALYSIS_VERSION: 10.0.14321.1024 x86fre
  92. DPC_STACK_BASE: FFFFF8046A09EFB0
  93. LAST_CONTROL_TRANSFER: from fffff804679e23a8 to fffff80467a74ba6
  94. STACK_TEXT:
  95. ffff8b84`2a61ac60 fffff804`679e23a8 : ffffad0f`5d7d5080 ffff8b84`2a61add8 ffffad0f`4e521040 00000000`00000000 : nt!KiSwapContext+0x76
  96. ffff8b84`2a61ada0 fffff804`67a221ba : ffffad0f`00000000 ffff8b84`2a61ae90 00000000`00000000 00000000`00000000 : nt!KeSetSystemGroupAffinityThread+0x268
  97. ffff8b84`2a61ae20 fffff804`67a22085 : 00000000`6e696f49 ffff8b84`00000000 ffffad0f`4edc7570 00000000`00000000 : nt!KiAcquireInterruptConnectLock+0x42
  98. ffff8b84`2a61ae60 fffff804`67a21ed8 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiConnectInterrupt+0x85
  99. ffff8b84`2a61aed0 fffff804`67fbc2b9 : ffff8b84`2a61b004 ffff8b84`2a61b030 ffffad0f`75dc7e10 00000000`00000004 : nt!KeConnectInterrupt+0x58
  100. ffff8b84`2a61af30 fffff804`67fbbf0a : ffff8b84`2a61b168 fffff804`6a3140a0 00000000`00000000 ffffad0f`51112bc0 : nt!IopConnectInterrupt+0x30d
  101. ffff8b84`2a61b080 fffff804`6a32356c : ffffad0f`4ef618b0 00000000`00000000 ffffad0f`51112bc0 ffffad0f`4ef038b0 : nt!IoConnectInterruptEx+0x1da
  102. ffff8b84`2a61b160 fffff804`6a3233fa : ffffad0f`51112bc0 ffffad0f`4ef4cc90 ffffad0f`4ef038b0 fffff804`6a3151ca : Wdf01000!FxInterrupt::ConnectInternal+0xd4 [minkernel\wdf\framework\shared\irphandlers\pnp\km\interruptobjectkm.cpp @ 173]
  103. ffff8b84`2a61b1e0 fffff804`6a323623 : ffffad0f`51112d78 00000000`00000000 ffffad0f`51112bc0 ffff8b84`2a61b308 : Wdf01000!FxInterrupt::Connect+0x62 [minkernel\wdf\framework\shared\irphandlers\pnp\interruptobject.cpp @ 1263]
  104. ffff8b84`2a61b270 fffff804`6a3218a6 : ffffad0f`4ef038b0 ffff8b84`2a61b3e0 00000000`00000000 fffff804`6a3aa518 : Wdf01000!FxPkgPnp::PowerWakingConnectInterrupt+0x93 [minkernel\wdf\framework\shared\irphandlers\pnp\powerstatemachine.cpp @ 3614]
  105. ffff8b84`2a61b2e0 fffff804`6a320c6c : ffffad0f`4ef03ab0 ffffad0f`00000000 ffffad0f`4ef03a88 ffffad0f`4ed59a00 : Wdf01000!FxPkgPnp::PowerProcessEventInner+0x1f6 [minkernel\wdf\framework\shared\irphandlers\pnp\powerstatemachine.cpp @ 1557]
  106. ffff8b84`2a61b450 fffff804`6a31ffb9 : 00000000`00000000 ffffad0f`5102cd80 ffffad0f`4ef318a0 00000000`00000000 : Wdf01000!FxPkgPnp::PowerProcessEvent+0x15c [minkernel\wdf\framework\shared\irphandlers\pnp\powerstatemachine.cpp @ 1338]
  107. ffff8b84`2a61b4f0 fffff804`679d4f06 : ffffad0f`5102cd80 ffffad0f`5e1c7670 ffffad0f`4ef31a4b ffffad0f`5102cd80 : Wdf01000!FxPkgFdo::RaiseDevicePowerCompletion+0x39 [minkernel\wdf\framework\shared\irphandlers\pnp\fdopower.cpp @ 396]
  108. ffff8b84`2a61b520 fffff804`67938b3d : ffffad0f`4ef31a4b ffff8b84`2a61b5f9 00000000`00000002 ffffad0f`5102cd80 : nt!IopUnloadSafeCompletion+0x56
  109. ffff8b84`2a61b550 fffff804`67938957 : ffffad0f`4ef318a0 00000000`00000000 00000000`00000000 ffffad0f`4edc76c0 : nt!IopfCompleteRequest+0x1cd
  110. ffff8b84`2a61b660 fffff804`6ab4b826 : 00000000`00000103 ffffad0f`4edc7be8 00000000`00000103 fffff804`6a412053 : nt!IofCompleteRequest+0x17
  111. ffff8b84`2a61b690 fffff804`6ab41d1e : 00000000`00000000 ffffad0f`4ef31801 ffffad0f`4ef31801 00000000`00000103 : pci!PciPowerUpDeviceTimerCallback+0x426
  112. ffff8b84`2a61b790 fffff804`6ab42577 : ffffad0f`4edc76c0 ffffad0f`4edc76c0 00000000`00000002 fffff804`6a31faa4 : pci!PciDevice_RetireD0Irp+0xe2
  113. ffff8b84`2a61b7f0 fffff804`6ab4371d : ffffad0f`4ef318a0 00000000`00000000 ffffad0f`4ef31a48 00000000`00000000 : pci!PciDevice_SetPower+0x177
  114. ffff8b84`2a61b850 fffff804`67a260e2 : ffffad0f`4ef318a0 ffffad0f`4ef4ce40 fffff804`6a31ff80 00000000`00000000 : pci!PciDispatchPnpPower+0xad
  115. ffff8b84`2a61b8c0 fffff804`67930d90 : ffffad0f`4ef318a0 fffff804`6a31ff80 00000000`00000000 ffffad0f`5102cd80 : nt!IopPoHandleIrp+0x36
  116. ffff8b84`2a61b8f0 fffff804`67a2a879 : ffffad0f`4ef03801 ffff8b84`2a61b9f0 00000000`00000000 ffffad0f`4ef61a20 : nt!IofCallDriver+0x70
  117. ffff8b84`2a61b930 fffff804`6a31fbf4 : ffff8b84`2a61ba70 ffffad0f`4ef4ce40 fffff804`6a31ff80 ffffad0f`4ef038b0 : nt!IoCallDriver+0x9
  118. ffff8b84`2a61b960 fffff804`6a31fc81 : ffff8b84`2a61ba70 00000000`00000000 00000000`00000001 ffff8b84`2a61ba40 : Wdf01000!FxPkgFdo::RaiseDevicePower+0xb4 [minkernel\wdf\framework\shared\irphandlers\pnp\fdopower.cpp @ 367]
  119. ffff8b84`2a61b9b0 fffff804`6a312ef3 : ffffad0f`4ef038b0 fffff804`67a26442 ffffad0f`5117d001 fffff804`67a2a879 : Wdf01000!FxPkgFdo::_DispatchSetPower+0x71 [minkernel\wdf\framework\shared\irphandlers\pnp\fdopower.cpp @ 122]
  120. ffff8b84`2a61ba00 fffff804`6a3114cf : ffffad0f`4ef318a0 ffffad0f`4ef318a0 ffffad0f`4ef4cc90 fffff804`67922ed0 : Wdf01000!FxPkgPnp::Dispatch+0xb3 [minkernel\wdf\framework\shared\irphandlers\pnp\fxpkgpnp.cpp @ 745]
  121. ffff8b84`2a61ba70 fffff804`6c6b12ca : ffffad0f`51017960 ffffad0f`4ef618b0 ffffad0f`4ef61ba0 ffffad0f`510e7c50 : Wdf01000!imp_WdfDeviceWdmDispatchPreprocessedIrp+0x10f [minkernel\wdf\framework\shared\core\km\fxdeviceapikm.cpp @ 255]
  122. ffff8b84`2a61bac0 fffff804`6a311c4d : ffffad0f`4ef318a0 00000000`00000016 00000000`00000210 ffffad0f`4ef618b0 : USBXHCI!Controller_WdfEvtPreprocessSetPowerIrp+0x14a
  123. ffff8b84`2a61bb00 fffff804`67a25ec6 : ffff8b84`2a61bbe0 ffffad0f`4ef318a0 00000000`00000000 ffffad0f`5102cd80 : Wdf01000!FxDevice::DispatchWithLock+0x1ed [minkernel\wdf\framework\shared\core\fxdevice.cpp @ 1430]
  124. ffff8b84`2a61bb60 fffff804`679d43a5 : ffffad0f`4e521040 fffff804`67a25ca0 00000000`00000000 002d0064`00610070 : nt!PopIrpWorker+0x226
  125. ffff8b84`2a61bc10 fffff804`67a7545c : ffffbd00`deb40180 ffffad0f`4e521040 fffff804`679d4350 00200020`0020000a : nt!PspSystemThreadStartup+0x55
  126. ffff8b84`2a61bc60 00000000`00000000 : ffff8b84`2a61c000 ffff8b84`2a616000 00000000`00000000 00000000`00000000 : nt!KiStartSystemThread+0x1c
  127. STACK_COMMAND: .thread 0xffffad0f4e521040 ; kb
  128. CHKIMG_EXTENSION: !chkimg -lo 50 -d !nt
  129. fffff804678b7071-fffff804678b7072 2 bytes - nt!MmFreeIndependentPages+61
  130. [ 80 f6:00 8e ]
  131. fffff804678b707f - nt!MmFreeIndependentPages+6f (+0x0e)
  132. [ fa:f2 ]
  133. fffff804678b8c61-fffff804678b8c62 2 bytes - nt!RtlGetMultiTimePrecise+101 (+0x1be2)
  134. [ 48 ff:4c 8b ]
  135. fffff804678b8c68-fffff804678b8c6c 5 bytes - nt!RtlGetMultiTimePrecise+108 (+0x07)
  136. [ 0f 1f 44 00 00:e8 63 09 f6 ff ]
  137. fffff804678c5423-fffff804678c5424 2 bytes - nt!PfFileInfoNotify+2d3 (+0xc7bb)
  138. [ ff e1:e8 98 ]
  139. fffff804678c5426-fffff804678c5427 2 bytes - nt!PfFileInfoNotify+2d6 (+0x03)
  140. [ cc cc:31 00 ]
  141. fffff804678c6aec - nt!MiMakeSystemCachePteValid+44 (+0x16c6)
  142. [ fa:f2 ]
  143. fffff804678c6b19-fffff804678c6b1a 2 bytes - nt!MiMakeSystemCachePteValid+71 (+0x2d)
  144. [ 80 f6:00 8e ]
  145. fffff804678c73b9-fffff804678c73ba 2 bytes - nt!MmProtectPool+a5 (+0x8a0)
  146. [ 80 f6:00 8e ]
  147. fffff804678c7408-fffff804678c7409 2 bytes - nt!MmProtectPool+f4 (+0x4f)
  148. [ 80 f6:00 8e ]
  149. fffff804678c7475 - nt!MmProtectPool+161 (+0x6d)
  150. [ fa:f2 ]
  151. fffff804678c74a5-fffff804678c74a6 2 bytes - nt!MmProtectPool+191 (+0x30)
  152. [ 80 f6:00 8e ]
  153. fffff804678c74d3 - nt!MmProtectPool+1bf (+0x2e)
  154. [ fa:f2 ]
  155. fffff804678c75bc-fffff804678c75bd 2 bytes - nt!MmProtectPool+2a8 (+0xe9)
  156. [ 80 f6:00 8e ]
  157. fffff804678c765a - nt!MmProtectPool+346 (+0x9e)
  158. [ fa:f2 ]
  159. fffff804678c799a - nt!MiCopyHeaderIfResident+15e (+0x340)
  160. [ fa:f2 ]
  161. fffff804678c7d82 - nt!MiInitializeImageProtos+21e (+0x3e8)
  162. [ fa:f2 ]
  163. fffff804678c7e35 - nt!MiInitializeImageProtos+2d1 (+0xb3)
  164. [ fa:f2 ]
  165. fffff804678c7efe - nt!MiGetPageForHeader+7a (+0xc9)
  166. [ fa:f2 ]
  167. fffff804678c7fff - nt!MiGetSystemPage+4f (+0x101)
  168. [ fa:f2 ]
  169. fffff804678c8570 - nt!MiSectionCreated+14c (+0x571)
  170. [ fa:f2 ]
  171. fffff804678c94f5-fffff804678c94f6 2 bytes - nt!MiEncodeProtoFill+25 (+0xf85)
  172. [ 80 f6:00 8e ]
  173. fffff804678c9e70 - nt!MiCoalesceFreeLargePages+90 (+0x97b)
  174. [ fa:f2 ]
  175. fffff804678c9eb7 - nt!MiCoalesceFreeLargePages+d7 (+0x47)
  176. [ fa:f2 ]
  177. fffff804678ca7d1 - nt!MiConstructNewLargeFreePage+51 (+0x91a)
  178. [ fa:f2 ]
  179. fffff804678ca861 - nt!MiConstructNewLargeFreePage+e1 (+0x90)
  180. [ fa:f2 ]
  181. fffff804678cab8e - nt!MiDeleteFinalPageTables+56 (+0x32d)
  182. [ fa:f2 ]
  183. fffff804678cabc7-fffff804678cabcb 5 bytes - nt!MiDeleteFinalPageTables+8f (+0x39)
  184. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  185. fffff804678cacbe - nt!MiDeleteTopLevelPage+1e (+0xf7)
  186. [ fa:f2 ]
  187. fffff804678cad69-fffff804678cad6a 2 bytes - nt!MiClearContainingMapping+35 (+0xab)
  188. [ 80 f6:00 8e ]
  189. fffff804678cad7e - nt!MiClearContainingMapping+4a (+0x15)
  190. [ fa:f2 ]
  191. fffff804678cce5d - nt!MiChangePageAttribute+45 (+0x20df)
  192. [ fa:f2 ]
  193. fffff804678cd345-fffff804678cd349 5 bytes - nt!MiReplenishBitMap+65 (+0x4e8)
  194. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  195. fffff804678cd34f-fffff804678cd353 5 bytes - nt!MiReplenishBitMap+6f (+0x0a)
  196. [ d7 be 7d fb f6:c7 91 23 47 8e ]
  197. fffff804678cd590-fffff804678cd594 5 bytes - nt!MiReplenishBitMap+2b0 (+0x241)
  198. [ d7 be 7d fb f6:c7 91 23 47 8e ]
  199. fffff804678cd59c-fffff804678cd5a0 5 bytes - nt!MiReplenishBitMap+2bc (+0x0c)
  200. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  201. fffff804678cd613-fffff804678cd617 5 bytes - nt!MiReplenishBitMap+333 (+0x77)
  202. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  203. fffff804678cd76b-fffff804678cd76f 5 bytes - nt!MiReplenishBitMap+48b (+0x158)
  204. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  205. fffff804678cd823-fffff804678cd824 2 bytes - nt!MiReplenishBitMap+543 (+0xb8)
  206. [ 80 f6:00 8e ]
  207. fffff804678cda6f - nt!MiFreePageFileHashPfns+87 (+0x24c)
  208. [ fa:f2 ]
  209. fffff804678cdf04-fffff804678cdf05 2 bytes - nt!MiDeleteCachedKernelStack+3c (+0x495)
  210. [ 80 f6:00 8e ]
  211. fffff804678ceb89 - nt!MiEmptyDecayClusterTimers+a9 (+0xc85)
  212. [ fa:f2 ]
  213. fffff804678cf284-fffff804678cf288 5 bytes - nt!MiAttachSession+44 (+0x6fb)
  214. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  215. fffff804678cf549-fffff804678cf54a 2 bytes - nt!MiStealPage+a1 (+0x2c5)
  216. [ 80 f6:00 8e ]
  217. fffff804678cf59b - nt!MiStealPage+f3 (+0x52)
  218. [ fa:f2 ]
  219. fffff804678cf71e - nt!MiStealPage+276 (+0x183)
  220. [ fa:f2 ]
  221. fffff804678cfc83-fffff804678cfc84 2 bytes - nt!MiStealPage+7db (+0x565)
  222. [ ff f6:7f 8e ]
  223. fffff804678d0246-fffff804678d0247 2 bytes - nt!MiStealPage+d9e (+0x5c3)
  224. [ 80 f6:00 8e ]
  225. fffff804678d08c6-fffff804678d08c7 2 bytes - nt!MiMoveDirtyBitsToPfns+66 (+0x680)
  226. [ 80 f6:00 8e ]
  227. fffff804678d09e5-fffff804678d09e6 2 bytes - nt!MiMoveDirtyBitsToPfns+185 (+0x11f)
  228. [ 80 f6:00 8e ]
  229. WARNING: !chkimg output was truncated to 50 lines. Invoke !chkimg without '-lo [num_lines]' to view entire output.
  230. Page 40100 not present in the dump file. Type ".hh dbgerr004" for details
  231. fffff80467bfdd0e-fffff80467bfdd10 3 bytes - nt!ExFreePoolWithTag+10ae
  232. [ 40 fb f6:00 47 8e ]
  233. fffff80467bfdd19-fffff80467bfdd1d 5 bytes - nt!ExFreePoolWithTag+10b9 (+0x0b)
  234. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  235. fffff80467bfdd29-fffff80467bfdd2d 5 bytes - nt!ExFreePoolWithTag+10c9 (+0x10)
  236. [ d7 be 7d fb f6:c7 91 23 47 8e ]
  237. fffff80467bfddbe-fffff80467bfddbf 2 bytes - nt!ExFreePoolWithTag+115e (+0x95)
  238. [ 80 f6:00 8e ]
  239. fffff80467df0788-fffff80467df078a 3 bytes - nt!_guard_check_icall_fptr
  240. [ 60 ad a2:90 67 a7 ]
  241. fffff80467df0790-fffff80467df0792 3 bytes - nt!_guard_dispatch_icall_fptr (+0x08)
  242. [ b0 a2 a6:e0 67 a7 ]
  243. fffff80467e19b8f-fffff80467e19b90 2 bytes - nt!ExUpdateSystemTimeFromCmos+33
  244. [ 48 ff:4c 8b ]
  245. fffff80467e19b96-fffff80467e19b9a 5 bytes - nt!ExUpdateSystemTimeFromCmos+3a (+0x07)
  246. [ 0f 1f 44 00 00:e8 c5 77 a0 ff ]
  247. fffff80467e1a8d8-fffff80467e1a8d9 2 bytes - nt!PopTransitionSystemPowerStateEx+b74 (+0xd42)
  248. [ 48 ff:4c 8b ]
  249. fffff80467e1a8df-fffff80467e1a8e3 5 bytes - nt!PopTransitionSystemPowerStateEx+b7b (+0x07)
  250. [ 0f 1f 44 00 00:e8 ec ec 9f ff ]
  251. fffff80467e1ab05-fffff80467e1ab06 2 bytes - nt!PopTransitionSystemPowerStateEx+da1 (+0x226)
  252. [ 48 ff:4c 8b ]
  253. fffff80467e1ab0c-fffff80467e1ab10 5 bytes - nt!PopTransitionSystemPowerStateEx+da8 (+0x07)
  254. [ 0f 1f 44 00 00:e8 bf ea 9f ff ]
  255. fffff80467e1ab89-fffff80467e1ab8a 2 bytes - nt!PopTransitionSystemPowerStateEx+e25 (+0x7d)
  256. [ 48 ff:4c 8b ]
  257. fffff80467e1ab90-fffff80467e1ab94 5 bytes - nt!PopTransitionSystemPowerStateEx+e2c (+0x07)
  258. [ 0f 1f 44 00 00:e8 3b ea 9f ff ]
  259. fffff80467e1b5a7-fffff80467e1b5a8 2 bytes - nt!PoBroadcastSystemState+3e3 (+0xa17)
  260. [ 48 ff:4c 8b ]
  261. fffff80467e1b5ae-fffff80467e1b5b2 5 bytes - nt!PoBroadcastSystemState+3ea (+0x07)
  262. [ 0f 1f 44 00 00:e8 1d e0 9f ff ]
  263. fffff80467e1b5eb-fffff80467e1b5ec 2 bytes - nt!PoBroadcastSystemState+427 (+0x3d)
  264. [ 48 ff:4c 8b ]
  265. fffff80467e1b5f2-fffff80467e1b5f6 5 bytes - nt!PoBroadcastSystemState+42e (+0x07)
  266. [ 0f 1f 44 00 00:e8 d9 df 9f ff ]
  267. fffff80467e1b729-fffff80467e1b72a 2 bytes - nt!PoBroadcastSystemState+565 (+0x137)
  268. [ 48 ff:4c 8b ]
  269. fffff80467e1b730-fffff80467e1b734 5 bytes - nt!PoBroadcastSystemState+56c (+0x07)
  270. [ 0f 1f 44 00 00:e8 9b de 9f ff ]
  271. fffff80467e1bf58-fffff80467e1bf59 2 bytes - nt!PopInvokeSystemStateHandler+1bc (+0x828)
  272. [ 48 ff:4c 8b ]
  273. fffff80467e1bf5f-fffff80467e1bf63 5 bytes - nt!PopInvokeSystemStateHandler+1c3 (+0x07)
  274. [ 0f 1f 44 00 00:e8 6c d6 9f ff ]
  275. fffff80467e1c242-fffff80467e1c243 2 bytes - nt!PopInvokeSystemStateHandler+4a6 (+0x2e3)
  276. [ 48 ff:4c 8b ]
  277. fffff80467e1c249-fffff80467e1c24d 5 bytes - nt!PopInvokeSystemStateHandler+4ad (+0x07)
  278. [ 0f 1f 44 00 00:e8 82 d3 9f ff ]
  279. fffff80467e1c461-fffff80467e1c465 5 bytes - nt!PopHandleNextState+71 (+0x218)
  280. [ ff e2 cc cc cc:e8 7a 5c dc ff ]
  281. fffff80467e1cf3d-fffff80467e1cf3e 2 bytes - nt!PopDecompressHiberBlocks+fd (+0xadc)
  282. [ 48 ff:4c 8b ]
  283. fffff80467e1cf44-fffff80467e1cf48 5 bytes - nt!PopDecompressHiberBlocks+104 (+0x07)
  284. [ 0f 1f 44 00 00:e8 87 c6 9f ff ]
  285. fffff80467e1d111-fffff80467e1d112 2 bytes - nt!PopSaveHiberContext+d1 (+0x1cd)
  286. [ 48 ff:4c 8b ]
  287. fffff80467e1d118-fffff80467e1d11b 4 bytes - nt!PopSaveHiberContext+d8 (+0x07)
  288. [ 0f 1f 44 00:e8 13 37 ab ]
  289. fffff80467e1e009-fffff80467e1e00a 2 bytes - nt!PopHiberCheckForDebugBreak+31 (+0xef1)
  290. [ 48 ff:4c 8b ]
  291. fffff80467e1e010-fffff80467e1e014 5 bytes - nt!PopHiberCheckForDebugBreak+38 (+0x07)
  292. [ 0f 1f 44 00 00:e8 bb b5 9f ff ]
  293. fffff80467e1e0ba-fffff80467e1e0bb 2 bytes - nt!KiCalibrateTimeAdjustment+9a (+0xaa)
  294. [ 48 ff:4c 8b ]
  295. fffff80467e1e0c1-fffff80467e1e0c5 5 bytes - nt!KiCalibrateTimeAdjustment+a1 (+0x07)
  296. [ 0f 1f 44 00 00:e8 6a f6 9f ff ]
  297. fffff80467e1e151-fffff80467e1e152 2 bytes - nt!KiCalibrateTimeAdjustment+131 (+0x90)
  298. [ 48 ff:4c 8b ]
  299. fffff80467e1e158-fffff80467e1e15c 5 bytes - nt!KiCalibrateTimeAdjustment+138 (+0x07)
  300. [ 0f 1f 44 00 00:e8 73 b4 9f ff ]
  301. fffff80467e1e3f7-fffff80467e1e3f8 2 bytes - nt!PopHiberCheckResume+f7 (+0x29f)
  302. [ 48 ff:4c 8b ]
  303. fffff80467e1e3fe-fffff80467e1e402 5 bytes - nt!PopHiberCheckResume+fe (+0x07)
  304. [ 0f 1f 44 00 00:e8 dd fb 9f ff ]
  305. fffff80467e1ef60-fffff80467e1ef61 2 bytes - nt!PopGetHwConfigurationSignature+d4 (+0xb62)
  306. [ 48 ff:4c 8b ]
  307. fffff80467e1ef67-fffff80467e1ef6b 5 bytes - nt!PopGetHwConfigurationSignature+db (+0x07)
  308. [ 0f 1f 44 00 00:e8 24 23 a0 ff ]
  309. fffff80467e1f5c5-fffff80467e1f5c9 5 bytes - nt!MiConvertHiberPhasePte+15 (+0x65e)
  310. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  311. fffff80467e1f5d4-fffff80467e1f5d8 5 bytes - nt!MiConvertHiberPhasePte+24 (+0x0f)
  312. [ d7 be 7d fb f6:c7 91 23 47 8e ]
  313. fffff80467e20f91-fffff80467e20f95 5 bytes - nt!MiUpdateUserMappings+9 (+0x19bd)
  314. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  315. fffff80467e20fbc-fffff80467e20fc0 5 bytes - nt!MiUpdateUserMappings+34 (+0x2b)
  316. [ d7 be 7d fb f6:c7 91 23 47 8e ]
  317. fffff80467e22f8d-fffff80467e22f8e 2 bytes - nt!KiInitializeBootStructures+23d (+0x1fd1)
  318. [ 48 ff:4c 8b ]
  319. fffff80467e22f94-fffff80467e22f98 5 bytes - nt!KiInitializeBootStructures+244 (+0x07)
  320. [ 0f 1f 44 00 00:e8 b7 8d a0 ff ]
  321. fffff80467e2301d-fffff80467e2301e 2 bytes - nt!KiInitializeBootStructures+2cd (+0x89)
  322. [ 48 ff:4c 8b ]
  323. fffff80467e23024-fffff80467e23028 5 bytes - nt!KiInitializeBootStructures+2d4 (+0x07)
  324. [ 0f 1f 44 00 00:e8 c7 ae a0 ff ]
  325. fffff80467e23d1e-fffff80467e23d1f 2 bytes - nt!KiSetFeatureBits+5f2 (+0xcfa)
  326. [ 48 ff:4c 8b ]
  327. fffff80467e23d25-fffff80467e23d29 5 bytes - nt!KiSetFeatureBits+5f9 (+0x07)
  328. [ 0f 1f 44 00 00:e8 16 c1 a0 ff ]
  329. fffff80467e247c6-fffff80467e247c7 2 bytes - nt!KiInitializeKernel+4f6 (+0xaa1)
  330. [ 48 ff:4c 8b ]
  331. fffff80467e247cd-fffff80467e247d1 5 bytes - nt!KiInitializeKernel+4fd (+0x07)
  332. [ 0f 1f 44 00 00:e8 be 79 a7 ff ]
  333. fffff80467e25a87-fffff80467e25a88 2 bytes - nt!MmInitializeProcessor+47 (+0x12ba)
  334. [ 80 f6:00 8e ]
  335. fffff80467e274c7-fffff80467e274c8 2 bytes - nt!ExpSetSystemTime+dc93 (+0x1a40)
  336. [ 48 ff:4c 8b ]
  337. fffff80467e274ce-fffff80467e274d2 5 bytes - nt!ExpSetSystemTime+dc9a (+0x07)
  338. [ 0f 1f 44 00 00:e8 6d 22 a2 ff ]
  339. fffff80467e2792c-fffff80467e2792d 2 bytes - nt!PopInvokeSystemStateHandler+bb90 (+0x45e)
  340. [ 48 ff:4c 8b ]
  341. fffff80467e27933-fffff80467e27937 5 bytes - nt!PopInvokeSystemStateHandler+bb97 (+0x07)
  342. [ 0f 1f 44 00 00:e8 48 10 a2 ff ]
  343. WARNING: !chkimg output was truncated to 50 lines. Invoke !chkimg without '-lo [num_lines]' to view entire output.
  344. fffff80467e394af-fffff80467e394b0 2 bytes - nt!EtwpAddLogHeader+17f
  345. [ 48 ff:4c 8b ]
  346. fffff80467e394b6-fffff80467e394ba 5 bytes - nt!EtwpAddLogHeader+186 (+0x07)
  347. [ 0f 1f 44 00 00:e8 15 01 9e ff ]
  348. fffff80467e45522-fffff80467e45526 5 bytes - nt!NtPowerInformation+452 (+0xc06c)
  349. [ ff e0 cc cc cc:e8 79 cb d9 ff ]
  350. fffff80467e4552a-fffff80467e4552b 2 bytes - nt!NtPowerInformation+45a (+0x08)
  351. [ 48 ff:4c 8b ]
  352. fffff80467e45531-fffff80467e45535 5 bytes - nt!NtPowerInformation+461 (+0x07)
  353. [ 0f 1f 44 00 00:e8 9a 40 9d ff ]
  354. fffff80467e4c35e-fffff80467e4c35f 2 bytes - nt!PiDqQueryRelease+4a (+0x6e2d)
  355. [ 48 ff:4c 8b ]
  356. fffff80467e4c365-fffff80467e4c368 4 bytes - nt!PiDqQueryRelease+51 (+0x07)
  357. [ 0f 1f 44 00:e8 06 29 9e ]
  358. fffff80467e4ce7d-fffff80467e4ce7e 2 bytes - nt!PiDqIrpQueryCreate+115 (+0xb18)
  359. [ 48 ff:4c 8b ]
  360. fffff80467e4ce84-fffff80467e4ce87 4 bytes - nt!PiDqIrpQueryCreate+11c (+0x07)
  361. [ 0f 1f 44 00:e8 17 1a 9e ]
  362. fffff80467e4ceb8-fffff80467e4ceb9 2 bytes - nt!PiDqIrpQueryCreate+150 (+0x34)
  363. [ 48 ff:4c 8b ]
  364. fffff80467e4cebf-fffff80467e4cec2 4 bytes - nt!PiDqIrpQueryCreate+157 (+0x07)
  365. [ 0f 1f 44 00:e8 0c e5 9d ]
  366. fffff80467e4d367-fffff80467e4d368 2 bytes - nt!PiDqQuerySerializeActionQueue+c3 (+0x4a8)
  367. [ 48 ff:4c 8b ]
  368. fffff80467e4d36e-fffff80467e4d371 4 bytes - nt!PiDqQuerySerializeActionQueue+ca (+0x07)
  369. [ 0f 1f 44 00:e8 6d 12 9e ]
  370. fffff80467e4d3a0-fffff80467e4d3a1 2 bytes - nt!PiDqQuerySerializeActionQueue+fc (+0x32)
  371. [ 48 ff:4c 8b ]
  372. fffff80467e4d3a7-fffff80467e4d3aa 4 bytes - nt!PiDqQuerySerializeActionQueue+103 (+0x07)
  373. [ 0f 1f 44 00:e8 b4 13 9e ]
  374. fffff80467e4d44d-fffff80467e4d44e 2 bytes - nt!PiDqQuerySerializeActionQueue+1a9 (+0xa6)
  375. [ 48 ff:4c 8b ]
  376. fffff80467e4d454-fffff80467e4d457 4 bytes - nt!PiDqQuerySerializeActionQueue+1b0 (+0x07)
  377. [ 0f 1f 44 00:e8 37 65 9d ]
  378. fffff80467e4d599-fffff80467e4d59a 2 bytes - nt!PiDqQuerySerializeActionQueue+2f5 (+0x145)
  379. [ 48 ff:4c 8b ]
  380. fffff80467e4d5a0-fffff80467e4d5a3 4 bytes - nt!PiDqQuerySerializeActionQueue+2fc (+0x07)
  381. [ 0f 1f 44 00:e8 cb 16 9e ]
  382. fffff80467e5facb-fffff80467e5facc 2 bytes - nt!KGetUnlockSetting+6f (+0x1252b)
  383. [ 48 ff:4c 8b ]
  384. fffff80467e5fad2-fffff80467e5fad6 5 bytes - nt!KGetUnlockSetting+76 (+0x07)
  385. [ 0f 1f 44 00 00:e8 49 29 d8 ff ]
  386. fffff80467e5faff-fffff80467e5fb00 2 bytes - nt!KGetUnlockSetting+a3 (+0x2d)
  387. [ 48 ff:4c 8b ]
  388. fffff80467e5fb06-fffff80467e5fb0a 5 bytes - nt!KGetUnlockSetting+aa (+0x07)
  389. [ 0f 1f 44 00 00:e8 15 29 d8 ff ]
  390. fffff80467e5fb38-fffff80467e5fb39 2 bytes - nt!KGetUnlockSetting+dc (+0x32)
  391. [ 48 ff:4c 8b ]
  392. fffff80467e5fb3f-fffff80467e5fb43 5 bytes - nt!KGetUnlockSetting+e3 (+0x07)
  393. [ 0f 1f 44 00 00:e8 dc 28 d8 ff ]
  394. fffff80467e69a39-fffff80467e69a3d 5 bytes - nt!BuildQueryDirectoryIrp+1c9 (+0x9efa)
  395. [ ff e1 cc cc cc:e8 82 86 d7 ff ]
  396. fffff80467e6a852-fffff80467e6a856 5 bytes - nt!FsRtlpOplockFsctrlInternal+4c2 (+0xe19)
  397. [ ff e1 cc cc cc:e8 69 78 d7 ff ]
  398. fffff80467e6eaff - nt!MiCreateImageFileMap+12b (+0x42ad)
  399. [ fa:f2 ]
  400. fffff80467e71908-fffff80467e7190c 5 bytes - nt!MiChargeSegmentCommit+a8 (+0x2e09)
  401. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  402. fffff80467e71912-fffff80467e71916 5 bytes - nt!MiChargeSegmentCommit+b2 (+0x0a)
  403. [ d7 be 7d fb f6:c7 91 23 47 8e ]
  404. fffff80467e71dff-fffff80467e71e03 5 bytes - nt!MiParseImageSectionHeaders+36f (+0x4ed)
  405. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  406. fffff80467e71e11-fffff80467e71e15 5 bytes - nt!MiParseImageSectionHeaders+381 (+0x12)
  407. [ d7 be 7d fb f6:c7 91 23 47 8e ]
  408. fffff80467e77ebb-fffff80467e77ebf 5 bytes - nt!MiAddMappedPtes+5b (+0x60aa)
  409. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  410. fffff80467e77ec5-fffff80467e77ec9 5 bytes - nt!MiAddMappedPtes+65 (+0x0a)
  411. [ d7 be 7d fb f6:c7 91 23 47 8e ]
  412. fffff80467e7df9f-fffff80467e7dfa3 5 bytes - nt!RtlpCombineAcls+5af (+0x60da)
  413. [ ff e1 cc cc cc:e8 1c 41 d6 ff ]
  414. fffff80467e7dff3-fffff80467e7dff7 5 bytes - nt!RtlpCombineAcls+603 (+0x54)
  415. [ ff e1 cc cc cc:e8 c8 40 d6 ff ]
  416. fffff80467e7f5ef-fffff80467e7f5f3 5 bytes - nt!NtSetInformationThread+cf (+0x15fc)
  417. [ ff e1 cc cc cc:e8 cc 2a d6 ff ]
  418. fffff80467e7f83d-fffff80467e7f841 5 bytes - nt!NtSetInformationThread+31d (+0x24e)
  419. [ ff e1 cc cc cc:e8 7e 28 d6 ff ]
  420. fffff80467e81c85-fffff80467e81c89 5 bytes - nt!NtWaitForAlertByThreadId+14a5 (+0x2448)
  421. [ ff e1 cc cc cc:e8 36 04 d6 ff ]
  422. fffff80467e8242b-fffff80467e8242c 2 bytes - nt!NtWaitForAlertByThreadId+1c4b (+0x7a6)
  423. [ 48 ff:4c 8b ]
  424. fffff80467e82432-fffff80467e82436 5 bytes - nt!NtWaitForAlertByThreadId+1c52 (+0x07)
  425. [ 0f 1f 44 00 00:e8 69 02 b7 ff ]
  426. fffff80467e8fad9-fffff80467e8fada 2 bytes - nt!SeQuerySigningPolicy+9d (+0xd6a7)
  427. [ 48 ff:4c 8b ]
  428. fffff80467e8fae0-fffff80467e8fae4 5 bytes - nt!SeQuerySigningPolicy+a4 (+0x07)
  429. [ 0f 1f 44 00 00:e8 bb 2b b6 ff ]
  430. fffff80467eaf4fc-fffff80467eaf500 5 bytes - nt!NtTraceControl+1ec (+0x1fa1c)
  431. [ ff e0 cc cc cc:e8 9f 2b d3 ff ]
  432. fffff80467eaf54e-fffff80467eaf552 5 bytes - nt!NtTraceControl+23e (+0x52)
  433. [ ff e2 cc cc cc:e8 8d 2b d3 ff ]
  434. fffff80467eb2643-fffff80467eb2647 5 bytes - nt!NtQueryInformationToken+e3 (+0x30f5)
  435. [ ff e1 cc cc cc:e8 78 fa d2 ff ]
  436. fffff80467eb7085-fffff80467eb7086 2 bytes - nt!MiPrefetchDriverPages+45 (+0x4a42)
  437. [ 80 f6:00 8e ]
  438. fffff80467eb708c-fffff80467eb7090 5 bytes - nt!MiPrefetchDriverPages+4c (+0x07)
  439. [ d0 be 7d fb f6:c0 91 23 47 8e ]
  440. fffff80467eb7096-fffff80467eb709a 5 bytes - nt!MiPrefetchDriverPages+56 (+0x0a)
  441. [ d7 be 7d fb f6:c7 91 23 47 8e ]
  442. fffff80467eb7381 - nt!MiProcessCrcList+e1 (+0x2eb)
  443. [ fa:f2 ]
  444. WARNING: !chkimg output was truncated to 50 lines. Invoke !chkimg without '-lo [num_lines]' to view entire output.
  445. fffff804681c818d-fffff804681c818e 2 bytes - nt!KdInitSystem+4d
  446. [ 48 ff:4c 8b ]
  447. fffff804681c8194-fffff804681c8198 5 bytes - nt!KdInitSystem+54 (+0x07)
  448. [ 0f 1f 44 00 00:e8 37 14 65 ff ]
  449. fffff804681c8a44-fffff804681c8a45 2 bytes - nt!KdInitSystem+904 (+0x8b0)
  450. [ 48 ff:4c 8b ]
  451. fffff804681c8a4b-fffff804681c8a4e 4 bytes - nt!KdInitSystem+90b (+0x07)
  452. [ 0f 1f 44 00:e8 d0 85 23 ]
  453. fffff804681c90a2-fffff804681c90a3 2 bytes - nt!KdSendTraceData+ee (+0x657)
  454. [ 48 ff:4c 8b ]
  455. fffff804681c90a9-fffff804681c90ac 4 bytes - nt!KdSendTraceData+f5 (+0x07)
  456. [ 0f 1f 44 00:e8 b2 7f 23 ]
  457. fffff804681c91fa-fffff804681c91fb 2 bytes - nt!KdpFillMemory+fa (+0x151)
  458. [ 48 ff:4c 8b ]
  459. fffff804681c9201-fffff804681c9204 4 bytes - nt!KdpFillMemory+101 (+0x07)
  460. [ 0f 1f 44 00:e8 5a 7e 23 ]
  461. fffff804681c92c1-fffff804681c92c2 2 bytes - nt!KdpGetBusData+9d (+0xc0)
  462. [ 48 ff:4c 8b ]
  463. fffff804681c92c8-fffff804681c92cb 4 bytes - nt!KdpGetBusData+a4 (+0x07)
  464. [ 0f 1f 44 00:e8 93 7d 23 ]
  465. fffff804681c943e-fffff804681c943f 2 bytes - nt!KdpQueryMemory+72 (+0x176)
  466. [ 48 ff:4c 8b ]
  467. fffff804681c9445-fffff804681c9448 4 bytes - nt!KdpQueryMemory+79 (+0x07)
  468. [ 0f 1f 44 00:e8 16 7c 23 ]
  469. fffff804681c94ed-fffff804681c94ee 2 bytes - nt!KdpReadControlSpace+91 (+0xa8)
  470. [ 48 ff:4c 8b ]
  471. fffff804681c94f4-fffff804681c94f7 4 bytes - nt!KdpReadControlSpace+98 (+0x07)
  472. [ 0f 1f 44 00:e8 67 7b 23 ]
  473. fffff804681c9630-fffff804681c9631 2 bytes - nt!KdpReadPhysicalMemory+120 (+0x13c)
  474. [ 48 ff:4c 8b ]
  475. fffff804681c9637-fffff804681c963a 4 bytes - nt!KdpReadPhysicalMemory+127 (+0x07)
  476. [ 0f 1f 44 00:e8 24 7a 23 ]
  477. fffff804681c97b5-fffff804681c97b6 2 bytes - nt!KdpReadVirtualMemory+99 (+0x17e)
  478. [ 48 ff:4c 8b ]
  479. fffff804681c97bc-fffff804681c97bf 4 bytes - nt!KdpReadVirtualMemory+a0 (+0x07)
  480. [ 0f 1f 44 00:e8 9f 78 23 ]
  481. fffff804681c9c08-fffff804681c9c09 2 bytes - nt!KdpRestoreBreakPointEx+cc (+0x44c)
  482. [ 48 ff:4c 8b ]
  483. fffff804681c9c0f-fffff804681c9c12 4 bytes - nt!KdpRestoreBreakPointEx+d3 (+0x07)
  484. [ 0f 1f 44 00:e8 4c 74 23 ]
  485. fffff804681c9e0a-fffff804681c9e0b 2 bytes - nt!KdpSearchMemory+1ca (+0x1fb)
  486. [ 48 ff:4c 8b ]
  487. fffff804681c9e11-fffff804681c9e14 4 bytes - nt!KdpSearchMemory+1d1 (+0x07)
  488. [ 0f 1f 44 00:e8 4a 72 23 ]
  489. fffff804681ca194-fffff804681ca195 2 bytes - nt!KdpSendWaitContinue+94 (+0x383)
  490. [ 48 ff:4c 8b ]
  491. fffff804681ca19b-fffff804681ca19e 4 bytes - nt!KdpSendWaitContinue+9b (+0x07)
  492. [ 0f 1f 44 00:e8 c0 6e 23 ]
  493. fffff804681ca1be-fffff804681ca1bf 2 bytes - nt!KdpSendWaitContinue+be (+0x23)
  494. [ 48 ff:4c 8b ]
  495. fffff804681ca1c5-fffff804681ca1c9 5 bytes - nt!KdpSendWaitContinue+c5 (+0x07)
  496. [ 0f 1f 44 00 00:e8 06 f4 64 ff ]
  497. fffff804681ca1e0-fffff804681ca1e1 2 bytes - nt!KdpSendWaitContinue+e0 (+0x1b)
  498. [ 48 ff:4c 8b ]
  499. fffff804681ca1e7-fffff804681ca1ea 4 bytes - nt!KdpSendWaitContinue+e7 (+0x07)
  500. [ 0f 1f 44 00:e8 84 6e 23 ]
  501. fffff804681ca21f-fffff804681ca223 5 bytes - nt!KdpSendWaitContinue+11f (+0x38)
  502. [ ff e1 cc cc cc:e8 9c 7e a1 ff ]
  503. fffff804681ca733-fffff804681ca734 2 bytes - nt!KdpSendWaitContinue+633 (+0x514)
  504. [ 48 ff:4c 8b ]
  505. fffff804681ca73a-fffff804681ca73e 5 bytes - nt!KdpSendWaitContinue+63a (+0x07)
  506. [ 0f 1f 44 00 00:e8 41 e2 67 ff ]
  507. fffff804681ca855-fffff804681ca856 2 bytes - nt!KdpSendWaitContinue+755 (+0x11b)
  508. [ 48 ff:4c 8b ]
  509. fffff804681ca85c-fffff804681ca85f 4 bytes - nt!KdpSendWaitContinue+75c (+0x07)
  510. [ 0f 1f 44 00:e8 ff 67 23 ]
  511. fffff804681ca874-fffff804681ca875 2 bytes - nt!KdpSendWaitContinue+774 (+0x18)
  512. [ 48 ff:4c 8b ]
  513. fffff804681ca87b-fffff804681ca87e 4 bytes - nt!KdpSendWaitContinue+77b (+0x07)
  514. [ 0f 1f 44 00:e8 e0 67 23 ]
  515. fffff804681caa92-fffff804681caa93 2 bytes - nt!KdpSetContext+a2 (+0x217)
  516. [ 48 ff:4c 8b ]
  517. fffff804681caa99-fffff804681caa9c 4 bytes - nt!KdpSetContext+a9 (+0x07)
  518. [ 0f 1f 44 00:e8 c2 65 23 ]
  519. fffff804681cab3c-fffff804681cab3d 2 bytes - nt!KdpSysReadBusData+40 (+0xa3)
  520. [ 48 ff:4c 8b ]
  521. fffff804681cab43-fffff804681cab47 5 bytes - nt!KdpSysReadBusData+47 (+0x07)
  522. [ 0f 1f 44 00 00:e8 18 40 65 ff ]
  523. fffff804681caba8-fffff804681caba9 2 bytes - nt!KdpSysWriteBusData+40 (+0x65)
  524. [ 48 ff:4c 8b ]
  525. fffff804681cabaf-fffff804681cabb3 5 bytes - nt!KdpSysWriteBusData+47 (+0x07)
  526. [ 0f 1f 44 00 00:e8 8c 3e 65 ff ]
  527. fffff804681cae11-fffff804681cae12 2 bytes - nt!KdpWriteBreakPointEx+141 (+0x262)
  528. [ 48 ff:4c 8b ]
  529. fffff804681cae18-fffff804681cae1b 4 bytes - nt!KdpWriteBreakPointEx+148 (+0x07)
  530. [ 0f 1f 44 00:e8 43 62 23 ]
  531. fffff804681cae46-fffff804681cae47 2 bytes - nt!KdpWriteBreakPointEx+176 (+0x2e)
  532. [ 48 ff:4c 8b ]
  533. fffff804681cae4d-fffff804681cae50 4 bytes - nt!KdpWriteBreakPointEx+17d (+0x07)
  534. [ 0f 1f 44 00:e8 0e 62 23 ]
  535. fffff804681caf05-fffff804681caf06 2 bytes - nt!KdpWritePhysicalMemory+7d (+0xb8)
  536. [ 48 ff:4c 8b ]
  537. fffff804681caf0c-fffff804681caf0f 4 bytes - nt!KdpWritePhysicalMemory+84 (+0x07)
  538. [ 0f 1f 44 00:e8 4f 61 23 ]
  539. fffff804681cc374-fffff804681cc375 2 bytes - nt!KdpPrintString+b0 (+0x1468)
  540. [ 48 ff:4c 8b ]
  541. fffff804681cc37b-fffff804681cc37e 4 bytes - nt!KdpPrintString+b7 (+0x07)
  542. [ 0f 1f 44 00:e8 e0 4c 23 ]
  543. fffff804681cc46b-fffff804681cc46c 2 bytes - nt!KdpPromptString+c3 (+0xf0)
  544. [ 48 ff:4c 8b ]
  545. WARNING: !chkimg output was truncated to 50 lines. Invoke !chkimg without '-lo [num_lines]' to view entire output.
  546. fffff804681fedb3-fffff804681fedb4 2 bytes - nt!HdlspBugCheckProcessing+97
  547. [ 48 ff:4c 8b ]
  548. fffff804681fedba-fffff804681fedbe 5 bytes - nt!HdlspBugCheckProcessing+9e (+0x07)
  549. [ 0f 1f 44 00 00:e8 81 a6 61 ff ]
  550. fffff804681fedc8-fffff804681fedc9 2 bytes - nt!HdlspBugCheckProcessing+ac (+0x0e)
  551. [ 48 ff:4c 8b ]
  552. fffff804681fedcf-fffff804681fedd3 5 bytes - nt!HdlspBugCheckProcessing+b3 (+0x07)
  553. [ 0f 1f 44 00 00:e8 ac 9b 64 ff ]
  554. 10310 errors : !nt (fffff804678b7071-fffff804681fedd3)
  555. MODULE_NAME: memory_corruption
  556. IMAGE_NAME: memory_corruption
  557. FOLLOWUP_NAME: memory_corruption
  558. DEBUG_FLR_IMAGE_TIMESTAMP: 0
  559. MEMORY_CORRUPTOR: LARGE
  560. FAILURE_BUCKET_ID: MEMORY_CORRUPTION_LARGE
  561. BUCKET_ID: MEMORY_CORRUPTION_LARGE
  562. PRIMARY_PROBLEM_CLASS: MEMORY_CORRUPTION_LARGE
  563. TARGET_TIME: 2023-01-10T20:20:50.000Z
  564. OSBUILD: 17763
  565. OSSERVICEPACK: 0
  566. SERVICEPACK_NUMBER: 0
  567. OS_REVISION: 0
  568. SUITE_MASK: 272
  569. PRODUCT_TYPE: 1
  570. OSPLATFORM_TYPE: x64
  571. OSNAME: Windows 10
  572. OSEDITION: Windows 10 WinNt TerminalServer SingleUserTS
  573. OS_LOCALE:
  574. USER_LCID: 0
  575. OSBUILD_TIMESTAMP: 1995-05-09 16:52:36
  576. BUILDDATESTAMP_STR: 180914-1434
  577. BUILDLAB_STR: rs5_release
  578. BUILDOSVER_STR: 10.0.17763.1.amd64fre.rs5_release.180914-1434
  579. ANALYSIS_SESSION_ELAPSED_TIME: 18a7
  580. ANALYSIS_SOURCE: KM
  581. FAILURE_ID_HASH_STRING: km:memory_corruption_large
  582. FAILURE_ID_HASH: {e29154ac-69a4-0eb8-172a-a860f73c0a3c}
  583. Followup: memory_corruption
  584. ---------
  585. 0: kd> !irp ffffad0f4ef318a0
  586. Irp is active with 6 stacks 5 is current (= 0xffffad0f4ef31a90)
  587. No Mdl: No System Buffer: Thread 00000000: Irp stack trace. Pending has been returned
  588. cmd flg cl Device File Completion-Context
  589. [N/A(0), N/A(0)]
  590. 0 0 00000000 00000000 00000000-00000000
  591. Args: 00000000 00000000 00000000 00000000
  592. [N/A(0), N/A(0)]
  593. 0 0 00000000 00000000 00000000-00000000
  594. Args: 00000000 00000000 00000000 00000000
  595. [N/A(0), N/A(0)]
  596. 0 0 00000000 00000000 00000000-00000000
  597. Args: 00000000 00000000 00000000 00000000
  598. [IRP_MJ_POWER(16), IRP_MN_WAIT_WAKE(0)]
  599. 0 0 ffffad0f4edc7570 00000000 00000000-00000000
  600. \Driver\pci
  601. Args: 00000000 00000000 00000000 00000000
  602. >[IRP_MJ_POWER(16), IRP_MN_SET_POWER(2)]
  603. 0 e1 ffffad0f5102cd80 00000000 fffff80467a253b0-ffffad0f5130d200 Success Error Cancel pending
  604. \Driver\USBXHCI nt!PopRequestCompletion
  605. Args: 00000000 00000001 00000001 00000000
  606. [N/A(0), N/A(0)]
  607. 0 0 00000000 00000000 00000000-ffffad0f5130d200
  608. Args: 00000000 00000000 00000000 00000000
  609. 0: kd> !devstack ffffad0f4edc7570
  610. !DevObj !DrvObj !DevExt ObjectName
  611. ffffad0f5102cd80 \Driver\USBXHCI ffffad0f4ef61ba0 USBFDO-0
  612. > ffffad0f4edc7570 \Driver\pci ffffad0f4edc76c0 NTPNP_PCI0017
  613. !DevNode ffffad0f4ee156e0 :
  614. DeviceInst is "PCI\VEN_1912&DEV_0014&SUBSYS_00000000&REV_03\4&382692a7&0&0008"
  615. ServiceName is "USBXHCI"
  616. 0: kd> !drvobj \Driver\USBXHCI
  617. Driver object (ffffad0f4ef4dd00) is for:
  618. \Driver\USBXHCI
  619. Driver Extension List: (id , addr)
  620. (fffff8046a367960 ffffad0f510e7ad0)
  621. Device Object list:
  622. ffffad0f5102bd80 ffffad0f5102cd80
  623. 0: kd> !devobj ffffad0f5102bd80
  624. Device object (ffffad0f5102bd80) is for:
  625. USBPDO-0 \Driver\USBXHCI DriverObject ffffad0f4ef4dd00
  626. Current Irp 00000000 RefCount 0 Type 00000022 Flags 00003044
  627. SecurityDescriptor ffffde89f63741a0 DevExt ffffad0f4efbcba0 DevObjExt ffffad0f5102bef8 DevNode ffffad0f59579c40
  628. ExtensionFlags (0000000000)
  629. Characteristics (0x00000100) FILE_DEVICE_SECURE_OPEN
  630. AttachedDevice (Upper) ffffad0f4ef738d0 \Driver\USBHUB3
  631. Device queue is not busy.
  632. 0: kd> !devobj ffffad0f5102cd80
  633. Device object (ffffad0f5102cd80) is for:
  634. USBFDO-0 \Driver\USBXHCI DriverObject ffffad0f4ef4dd00
  635. Current Irp 00000000 RefCount 0 Type 00000022 Flags 00002044
  636. SecurityDescriptor ffffde89f63741a0 DevExt ffffad0f4ef61ba0 DevObjExt ffffad0f5102cef8
  637. ExtensionFlags (0000000000)
  638. Characteristics (0x00000100) FILE_DEVICE_SECURE_OPEN
  639. AttachedTo (Lower) ffffad0f4edc7570 \Driver\pci
  640. Device queue is not busy.
  641. 0: kd> !devobj ffffad0f4edc7570
  642. Device object (ffffad0f4edc7570) is for:
  643. NTPNP_PCI0017 \Driver\pci DriverObject ffffad0f4e4e4cf0
  644. Current Irp 00000000 RefCount 0 Type 00000022 Flags 00001040
  645. SecurityDescriptor ffffde89f62029a0 DevExt ffffad0f4edc76c0 DevObjExt ffffad0f4edc7d80 DevNode ffffad0f4ee156e0
  646. ExtensionFlags (0x00000800) DOE_DEFAULT_SD_PRESENT
  647. Characteristics (0x00000100) FILE_DEVICE_SECURE_OPEN
  648. AttachedDevice (Upper) ffffad0f5102cd80 \Driver\USBXHCI
  649. Device queue is not busy.
  650. 0: kd> !devnode ffffad0f4ee156e0
  651. DevNode 0xffffad0f4ee156e0 for PDO 0xffffad0f4edc7570
  652. Parent 0xffffad0f4ee0a9a0 Sibling 0000000000 Child 0xffffad0f59579c40
  653. InstancePath is "PCI\VEN_1912&DEV_0014&SUBSYS_00000000&REV_03\4&382692a7&0&0008"
  654. ServiceName is "USBXHCI"
  655. State = DeviceNodeStarted (0x308)
  656. Previous State = DeviceNodeEnumerateCompletion (0x30d)
  657. StateHistory[12] = DeviceNodeEnumerateCompletion (0x30d)
  658. StateHistory[11] = DeviceNodeEnumeratePending (0x30c)
  659. StateHistory[10] = DeviceNodeStarted (0x308)
  660. StateHistory[09] = DeviceNodeEnumerateCompletion (0x30d)
  661. StateHistory[08] = DeviceNodeEnumeratePending (0x30c)
  662. StateHistory[07] = DeviceNodeStarted (0x308)
  663. StateHistory[06] = DeviceNodeStartPostWork (0x307)
  664. StateHistory[05] = DeviceNodeStartCompletion (0x306)
  665. StateHistory[04] = DeviceNodeStartPending (0x305)
  666. StateHistory[03] = DeviceNodeResourcesAssigned (0x304)
  667. StateHistory[02] = DeviceNodeDriversAdded (0x303)
  668. StateHistory[01] = DeviceNodeInitialized (0x302)
  669. StateHistory[00] = DeviceNodeUninitialized (0x301)
  670. StateHistory[19] = Unknown State (0x0)
  671. StateHistory[18] = Unknown State (0x0)
  672. StateHistory[17] = Unknown State (0x0)
  673. StateHistory[16] = Unknown State (0x0)
  674. StateHistory[15] = Unknown State (0x0)
  675. StateHistory[14] = Unknown State (0x0)
  676. StateHistory[13] = Unknown State (0x0)
  677. Flags (0x6c0000f0) DNF_ENUMERATED, DNF_IDS_QUERIED,
  678. DNF_HAS_BOOT_CONFIG, DNF_BOOT_CONFIG_RESERVED,
  679. DNF_NO_LOWER_DEVICE_FILTERS, DNF_NO_LOWER_CLASS_FILTERS,
  680. DNF_NO_UPPER_DEVICE_FILTERS, DNF_NO_UPPER_CLASS_FILTERS
  681. CapabilityFlags (0x00002400) WakeFromD0, WakeFromD3
  682. 0: kd> !drvobj \Driver\USBXHCI
  683. Driver object (ffffad0f4ef4dd00) is for:
  684. \Driver\USBXHCI
  685. Driver Extension List: (id , addr)
  686. (fffff8046a367960 ffffad0f510e7ad0)
  687. Device Object list:
  688. ffffad0f5102bd80 ffffad0f5102cd80
  689. 0: kd> !devobj ffffad0f5102bd80
  690. Device object (ffffad0f5102bd80) is for:
  691. USBPDO-0 \Driver\USBXHCI DriverObject ffffad0f4ef4dd00
  692. Current Irp 00000000 RefCount 0 Type 00000022 Flags 00003044
  693. SecurityDescriptor ffffde89f63741a0 DevExt ffffad0f4efbcba0 DevObjExt ffffad0f5102bef8 DevNode ffffad0f59579c40
  694. ExtensionFlags (0000000000)
  695. Characteristics (0x00000100) FILE_DEVICE_SECURE_OPEN
  696. AttachedDevice (Upper) ffffad0f4ef738d0 \Driver\USBHUB3
  697. Device queue is not busy.
  698. 0: kd> !devobj ffffad0f5102cd80
  699. Device object (ffffad0f5102cd80) is for:
  700. USBFDO-0 \Driver\USBXHCI DriverObject ffffad0f4ef4dd00
  701. Current Irp 00000000 RefCount 0 Type 00000022 Flags 00002044
  702. SecurityDescriptor ffffde89f63741a0 DevExt ffffad0f4ef61ba0 DevObjExt ffffad0f5102cef8
  703. ExtensionFlags (0000000000)
  704. Characteristics (0x00000100) FILE_DEVICE_SECURE_OPEN
  705. AttachedTo (Lower) ffffad0f4edc7570 \Driver\pci
  706. Device queue is not busy.
  707. 0: kd> !sd ffffde89f63741a0 0x1
  708. ->Revision: 0x1
  709. ->Sbz1 : 0x0
  710. ->Control : 0x9814
  711. SE_DACL_PRESENT
  712. SE_SACL_PRESENT
  713. SE_SACL_AUTO_INHERITED
  714. SE_DACL_PROTECTED
  715. SE_SELF_RELATIVE
  716. ->Owner : S-1-5-32-544 (Alias: BUILTIN\Administrators)
  717. ->Group : S-1-5-18 (Well Known Group: NT AUTHORITY\SYSTEM)
  718. ->Dacl :
  719. ->Dacl : ->AclRevision: 0x2
  720. ->Dacl : ->Sbz1 : 0x0
  721. ->Dacl : ->AclSize : 0x5c
  722. ->Dacl : ->AceCount : 0x4
  723. ->Dacl : ->Sbz2 : 0x0
  724. ->Dacl : ->Ace[0]: ->AceType: ACCESS_ALLOWED_ACE_TYPE
  725. ->Dacl : ->Ace[0]: ->AceFlags: 0x0
  726. ->Dacl : ->Ace[0]: ->AceSize: 0x14
  727. ->Dacl : ->Ace[0]: ->Mask : 0x001f01ff
  728. ->Dacl : ->Ace[0]: ->SID: S-1-5-18 (Well Known Group: NT AUTHORITY\SYSTEM)
  729. ->Dacl : ->Ace[1]: ->AceType: ACCESS_ALLOWED_ACE_TYPE
  730. ->Dacl : ->Ace[1]: ->AceFlags: 0x0
  731. ->Dacl : ->Ace[1]: ->AceSize: 0x18
  732. ->Dacl : ->Ace[1]: ->Mask : 0x001201bf
  733. ->Dacl : ->Ace[1]: ->SID: S-1-5-32-544 (Alias: BUILTIN\Administrators)
  734. ->Dacl : ->Ace[2]: ->AceType: ACCESS_ALLOWED_ACE_TYPE
  735. ->Dacl : ->Ace[2]: ->AceFlags: 0x0
  736. ->Dacl : ->Ace[2]: ->AceSize: 0x14
  737. ->Dacl : ->Ace[2]: ->Mask : 0x0012019f
  738. ->Dacl : ->Ace[2]: ->SID: S-1-1-0 (Well Known Group: localhost\Everyone)
  739. ->Dacl : ->Ace[3]: ->AceType: ACCESS_ALLOWED_ACE_TYPE
  740. ->Dacl : ->Ace[3]: ->AceFlags: 0x0
  741. ->Dacl : ->Ace[3]: ->AceSize: 0x14
  742. ->Dacl : ->Ace[3]: ->Mask : 0x00120089
  743. ->Dacl : ->Ace[3]: ->SID: S-1-5-12 (Well Known Group: NT AUTHORITY\RESTRICTED)
  744. ->Sacl :
  745. ->Sacl : ->AclRevision: 0x2
  746. ->Sacl : ->Sbz1 : 0x0
  747. ->Sacl : ->AclSize : 0x1c
  748. ->Sacl : ->AceCount : 0x1
  749. ->Sacl : ->Sbz2 : 0x0
  750. ->Sacl : ->Ace[0]: ->AceType: SYSTEM_MANDATORY_LABEL_ACE_TYPE
  751. ->Sacl : ->Ace[0]: ->AceFlags: 0x0
  752. ->Sacl : ->Ace[0]: ->AceSize: 0x14
  753. ->Sacl : ->Ace[0]: ->Mask : 0x00000001
  754. ->Sacl : ->Ace[0]: ->SID: S-1-16-4096 (Label: Mandatory Label\Low Mandatory Level)
  755. 0: kd> !drvobj \Driver\USBHUB3
  756. Driver object (ffffad0f4ef9d8f0) is for:
  757. \Driver\USBHUB3
  758. Driver Extension List: (id , addr)
  759. (fffff8046a367960 ffffad0f512d5fc0)
  760. Device Object list:
  761. ffffad0f51019d80 ffffad0f4ef738d0
  762. 0: kd> !devnode ffffad0f59579c40
  763. DevNode 0xffffad0f59579c40 for PDO 0xffffad0f5102bd80
  764. Parent 0xffffad0f4ee156e0 Sibling 0000000000 Child 0xffffad0f511639a0
  765. InstancePath is "USB\ROOT_HUB30\5&23341d40&0&0"
  766. ServiceName is "USBHUB3"
  767. State = DeviceNodeStarted (0x308)
  768. Previous State = DeviceNodeEnumerateCompletion (0x30d)
  769. StateHistory[15] = DeviceNodeEnumerateCompletion (0x30d)
  770. StateHistory[14] = DeviceNodeEnumeratePending (0x30c)
  771. StateHistory[13] = DeviceNodeStarted (0x308)
  772. StateHistory[12] = DeviceNodeEnumerateCompletion (0x30d)
  773. StateHistory[11] = DeviceNodeEnumeratePending (0x30c)
  774. StateHistory[10] = DeviceNodeStarted (0x308)
  775. StateHistory[09] = DeviceNodeEnumerateCompletion (0x30d)
  776. StateHistory[08] = DeviceNodeEnumeratePending (0x30c)
  777. StateHistory[07] = DeviceNodeStarted (0x308)
  778. StateHistory[06] = DeviceNodeStartPostWork (0x307)
  779. StateHistory[05] = DeviceNodeStartCompletion (0x306)
  780. StateHistory[04] = DeviceNodeStartPending (0x305)
  781. StateHistory[03] = DeviceNodeResourcesAssigned (0x304)
  782. StateHistory[02] = DeviceNodeDriversAdded (0x303)
  783. StateHistory[01] = DeviceNodeInitialized (0x302)
  784. StateHistory[00] = DeviceNodeUninitialized (0x301)
  785. StateHistory[19] = Unknown State (0x0)
  786. StateHistory[18] = Unknown State (0x0)
  787. StateHistory[17] = Unknown State (0x0)
  788. StateHistory[16] = Unknown State (0x0)
  789. Flags (0x6c000130) DNF_ENUMERATED, DNF_IDS_QUERIED,
  790. DNF_NO_RESOURCE_REQUIRED, DNF_NO_LOWER_DEVICE_FILTERS,
  791. DNF_NO_LOWER_CLASS_FILTERS, DNF_NO_UPPER_DEVICE_FILTERS,
  792. DNF_NO_UPPER_CLASS_FILTERS
  793. CapabilityFlags (0x00001602) DeviceD2, SurpriseRemovalOK,
  794. WakeFromD0, WakeFromD2
  795. 0: kd> !devnode ffffad0f511639a0
  796. DevNode 0xffffad0f511639a0 for PDO 0xffffad0f51019d80
  797. Parent 0xffffad0f59579c40 Sibling 0000000000 Child 0xffffad0f5129bcb0
  798. InstancePath is "USB\VID_03EB&PID_8A6E\L20R019413"
  799. ServiceName is "usbccgp"
  800. State = DeviceNodeStarted (0x308)
  801. Previous State = DeviceNodeEnumerateCompletion (0x30d)
  802. StateHistory[12] = DeviceNodeEnumerateCompletion (0x30d)
  803. StateHistory[11] = DeviceNodeEnumeratePending (0x30c)
  804. StateHistory[10] = DeviceNodeStarted (0x308)
  805. StateHistory[09] = DeviceNodeEnumerateCompletion (0x30d)
  806. StateHistory[08] = DeviceNodeEnumeratePending (0x30c)
  807. StateHistory[07] = DeviceNodeStarted (0x308)
  808. StateHistory[06] = DeviceNodeStartPostWork (0x307)
  809. StateHistory[05] = DeviceNodeStartCompletion (0x306)
  810. StateHistory[04] = DeviceNodeStartPending (0x305)
  811. StateHistory[03] = DeviceNodeResourcesAssigned (0x304)
  812. StateHistory[02] = DeviceNodeDriversAdded (0x303)
  813. StateHistory[01] = DeviceNodeInitialized (0x302)
  814. StateHistory[00] = DeviceNodeUninitialized (0x301)
  815. StateHistory[19] = Unknown State (0x0)
  816. StateHistory[18] = Unknown State (0x0)
  817. StateHistory[17] = Unknown State (0x0)
  818. StateHistory[16] = Unknown State (0x0)
  819. StateHistory[15] = Unknown State (0x0)
  820. StateHistory[14] = Unknown State (0x0)
  821. StateHistory[13] = Unknown State (0x0)
  822. Flags (0x6c000130) DNF_ENUMERATED, DNF_IDS_QUERIED,
  823. DNF_NO_RESOURCE_REQUIRED, DNF_NO_LOWER_DEVICE_FILTERS,
  824. DNF_NO_LOWER_CLASS_FILTERS, DNF_NO_UPPER_DEVICE_FILTERS,
  825. DNF_NO_UPPER_CLASS_FILTERS
  826. CapabilityFlags (0x00001e53) DeviceD1, DeviceD2,
  827. Removable, UniqueID,
  828. SurpriseRemovalOK, WakeFromD0,
  829. WakeFromD1, WakeFromD2
  830. 0: kd> !devnode ffffad0f511639a0
  831. DevNode 0xffffad0f511639a0 for PDO 0xffffad0f51019d80
  832. Parent 0xffffad0f59579c40 Sibling 0000000000 Child 0xffffad0f5129bcb0
  833. InstancePath is "USB\VID_03EB&PID_8A6E\L20R019413"
  834. ServiceName is "usbccgp"
  835. State = DeviceNodeStarted (0x308)
  836. Previous State = DeviceNodeEnumerateCompletion (0x30d)
  837. StateHistory[12] = DeviceNodeEnumerateCompletion (0x30d)
  838. StateHistory[11] = DeviceNodeEnumeratePending (0x30c)
  839. StateHistory[10] = DeviceNodeStarted (0x308)
  840. StateHistory[09] = DeviceNodeEnumerateCompletion (0x30d)
  841. StateHistory[08] = DeviceNodeEnumeratePending (0x30c)
  842. StateHistory[07] = DeviceNodeStarted (0x308)
  843. StateHistory[06] = DeviceNodeStartPostWork (0x307)
  844. StateHistory[05] = DeviceNodeStartCompletion (0x306)
  845. StateHistory[04] = DeviceNodeStartPending (0x305)
  846. StateHistory[03] = DeviceNodeResourcesAssigned (0x304)
  847. StateHistory[02] = DeviceNodeDriversAdded (0x303)
  848. StateHistory[01] = DeviceNodeInitialized (0x302)
  849. StateHistory[00] = DeviceNodeUninitialized (0x301)
  850. StateHistory[19] = Unknown State (0x0)
  851. StateHistory[18] = Unknown State (0x0)
  852. StateHistory[17] = Unknown State (0x0)
  853. StateHistory[16] = Unknown State (0x0)
  854. StateHistory[15] = Unknown State (0x0)
  855. StateHistory[14] = Unknown State (0x0)
  856. StateHistory[13] = Unknown State (0x0)
  857. Flags (0x6c000130) DNF_ENUMERATED, DNF_IDS_QUERIED,
  858. DNF_NO_RESOURCE_REQUIRED, DNF_NO_LOWER_DEVICE_FILTERS,
  859. DNF_NO_LOWER_CLASS_FILTERS, DNF_NO_UPPER_DEVICE_FILTERS,
  860. DNF_NO_UPPER_CLASS_FILTERS
  861. CapabilityFlags (0x00001e53) DeviceD1, DeviceD2,
  862. Removable, UniqueID,
  863. SurpriseRemovalOK, WakeFromD0,
  864. WakeFromD1, WakeFromD2
  865. 0: kd> !devnode ffffad0f5129bcb0
  866. DevNode 0xffffad0f5129bcb0 for PDO 0xffffad0f5117c110
  867. Parent 0xffffad0f511639a0 Sibling 0xffffad0f5129ccb0 Child 0xffffad0f5960d0c0
  868. InstancePath is "USB\VID_03EB&PID_8A6E&MI_00\7&3a8f0aba&0&0000"
  869. ServiceName is "HidUsb"
  870. State = DeviceNodeStarted (0x308)
  871. Previous State = DeviceNodeEnumerateCompletion (0x30d)
  872. StateHistory[12] = DeviceNodeEnumerateCompletion (0x30d)
  873. StateHistory[11] = DeviceNodeEnumeratePending (0x30c)
  874. StateHistory[10] = DeviceNodeStarted (0x308)
  875. StateHistory[09] = DeviceNodeEnumerateCompletion (0x30d)
  876. StateHistory[08] = DeviceNodeEnumeratePending (0x30c)
  877. StateHistory[07] = DeviceNodeStarted (0x308)
  878. StateHistory[06] = DeviceNodeStartPostWork (0x307)
  879. StateHistory[05] = DeviceNodeStartCompletion (0x306)
  880. StateHistory[04] = DeviceNodeStartPending (0x305)
  881. StateHistory[03] = DeviceNodeResourcesAssigned (0x304)
  882. StateHistory[02] = DeviceNodeDriversAdded (0x303)
  883. StateHistory[01] = DeviceNodeInitialized (0x302)
  884. StateHistory[00] = DeviceNodeUninitialized (0x301)
  885. StateHistory[19] = Unknown State (0x0)
  886. StateHistory[18] = Unknown State (0x0)
  887. StateHistory[17] = Unknown State (0x0)
  888. StateHistory[16] = Unknown State (0x0)
  889. StateHistory[15] = Unknown State (0x0)
  890. StateHistory[14] = Unknown State (0x0)
  891. StateHistory[13] = Unknown State (0x0)
  892. Flags (0x6c000130) DNF_ENUMERATED, DNF_IDS_QUERIED,
  893. DNF_NO_RESOURCE_REQUIRED, DNF_NO_LOWER_DEVICE_FILTERS,
  894. DNF_NO_LOWER_CLASS_FILTERS, DNF_NO_UPPER_DEVICE_FILTERS,
  895. DNF_NO_UPPER_CLASS_FILTERS
  896. CapabilityFlags (0x00001e03) DeviceD1, DeviceD2,
  897. SurpriseRemovalOK, WakeFromD0,
  898. WakeFromD1, WakeFromD2
  899. 0: kd> !devnode ffffad0f59579c40
  900. DevNode 0xffffad0f59579c40 for PDO 0xffffad0f5102bd80
  901. Parent 0xffffad0f4ee156e0 Sibling 0000000000 Child 0xffffad0f511639a0
  902. InstancePath is "USB\ROOT_HUB30\5&23341d40&0&0"
  903. ServiceName is "USBHUB3"
  904. State = DeviceNodeStarted (0x308)
  905. Previous State = DeviceNodeEnumerateCompletion (0x30d)
  906. StateHistory[15] = DeviceNodeEnumerateCompletion (0x30d)
  907. StateHistory[14] = DeviceNodeEnumeratePending (0x30c)
  908. StateHistory[13] = DeviceNodeStarted (0x308)
  909. StateHistory[12] = DeviceNodeEnumerateCompletion (0x30d)
  910. StateHistory[11] = DeviceNodeEnumeratePending (0x30c)
  911. StateHistory[10] = DeviceNodeStarted (0x308)
  912. StateHistory[09] = DeviceNodeEnumerateCompletion (0x30d)
  913. StateHistory[08] = DeviceNodeEnumeratePending (0x30c)
  914. StateHistory[07] = DeviceNodeStarted (0x308)
  915. StateHistory[06] = DeviceNodeStartPostWork (0x307)
  916. StateHistory[05] = DeviceNodeStartCompletion (0x306)
  917. StateHistory[04] = DeviceNodeStartPending (0x305)
  918. StateHistory[03] = DeviceNodeResourcesAssigned (0x304)
  919. StateHistory[02] = DeviceNodeDriversAdded (0x303)
  920. StateHistory[01] = DeviceNodeInitialized (0x302)
  921. StateHistory[00] = DeviceNodeUninitialized (0x301)
  922. StateHistory[19] = Unknown State (0x0)
  923. StateHistory[18] = Unknown State (0x0)
  924. StateHistory[17] = Unknown State (0x0)
  925. StateHistory[16] = Unknown State (0x0)
  926. Flags (0x6c000130) DNF_ENUMERATED, DNF_IDS_QUERIED,
  927. DNF_NO_RESOURCE_REQUIRED, DNF_NO_LOWER_DEVICE_FILTERS,
  928. DNF_NO_LOWER_CLASS_FILTERS, DNF_NO_UPPER_DEVICE_FILTERS,
  929. DNF_NO_UPPER_CLASS_FILTERS
  930. CapabilityFlags (0x00001602) DeviceD2, SurpriseRemovalOK,
  931. WakeFromD0, WakeFromD2
  932. 0: kd> !devnode ffffad0f511639a0
  933. DevNode 0xffffad0f511639a0 for PDO 0xffffad0f51019d80
  934. Parent 0xffffad0f59579c40 Sibling 0000000000 Child 0xffffad0f5129bcb0
  935. InstancePath is "USB\VID_03EB&PID_8A6E\L20R019413"
  936. ServiceName is "usbccgp"
  937. State = DeviceNodeStarted (0x308)
  938. Previous State = DeviceNodeEnumerateCompletion (0x30d)
  939. StateHistory[12] = DeviceNodeEnumerateCompletion (0x30d)
  940. StateHistory[11] = DeviceNodeEnumeratePending (0x30c)
  941. StateHistory[10] = DeviceNodeStarted (0x308)
  942. StateHistory[09] = DeviceNodeEnumerateCompletion (0x30d)
  943. StateHistory[08] = DeviceNodeEnumeratePending (0x30c)
  944. StateHistory[07] = DeviceNodeStarted (0x308)
  945. StateHistory[06] = DeviceNodeStartPostWork (0x307)
  946. StateHistory[05] = DeviceNodeStartCompletion (0x306)
  947. StateHistory[04] = DeviceNodeStartPending (0x305)
  948. StateHistory[03] = DeviceNodeResourcesAssigned (0x304)
  949. StateHistory[02] = DeviceNodeDriversAdded (0x303)
  950. StateHistory[01] = DeviceNodeInitialized (0x302)
  951. StateHistory[00] = DeviceNodeUninitialized (0x301)
  952. StateHistory[19] = Unknown State (0x0)
  953. StateHistory[18] = Unknown State (0x0)
  954. StateHistory[17] = Unknown State (0x0)
  955. StateHistory[16] = Unknown State (0x0)
  956. StateHistory[15] = Unknown State (0x0)
  957. StateHistory[14] = Unknown State (0x0)
  958. StateHistory[13] = Unknown State (0x0)
  959. Flags (0x6c000130) DNF_ENUMERATED, DNF_IDS_QUERIED,
  960. DNF_NO_RESOURCE_REQUIRED, DNF_NO_LOWER_DEVICE_FILTERS,
  961. DNF_NO_LOWER_CLASS_FILTERS, DNF_NO_UPPER_DEVICE_FILTERS,
  962. DNF_NO_UPPER_CLASS_FILTERS
  963. CapabilityFlags (0x00001e53) DeviceD1, DeviceD2,
  964. Removable, UniqueID,
  965. SurpriseRemovalOK, WakeFromD0,
  966. WakeFromD1, WakeFromD2
  967. 0: kd> !devnode ffffad0f511639a0
  968. DevNode 0xffffad0f511639a0 for PDO 0xffffad0f51019d80
  969. Parent 0xffffad0f59579c40 Sibling 0000000000 Child 0xffffad0f5129bcb0
  970. InstancePath is "USB\VID_03EB&PID_8A6E\L20R019413"
  971. ServiceName is "usbccgp"
  972. State = DeviceNodeStarted (0x308)
  973. Previous State = DeviceNodeEnumerateCompletion (0x30d)
  974. StateHistory[12] = DeviceNodeEnumerateCompletion (0x30d)
  975. StateHistory[11] = DeviceNodeEnumeratePending (0x30c)
  976. StateHistory[10] = DeviceNodeStarted (0x308)
  977. StateHistory[09] = DeviceNodeEnumerateCompletion (0x30d)
  978. StateHistory[08] = DeviceNodeEnumeratePending (0x30c)
  979. StateHistory[07] = DeviceNodeStarted (0x308)
  980. StateHistory[06] = DeviceNodeStartPostWork (0x307)
  981. StateHistory[05] = DeviceNodeStartCompletion (0x306)
  982. StateHistory[04] = DeviceNodeStartPending (0x305)
  983. StateHistory[03] = DeviceNodeResourcesAssigned (0x304)
  984. StateHistory[02] = DeviceNodeDriversAdded (0x303)
  985. StateHistory[01] = DeviceNodeInitialized (0x302)
  986. StateHistory[00] = DeviceNodeUninitialized (0x301)
  987. StateHistory[19] = Unknown State (0x0)
  988. StateHistory[18] = Unknown State (0x0)
  989. StateHistory[17] = Unknown State (0x0)
  990. StateHistory[16] = Unknown State (0x0)
  991. StateHistory[15] = Unknown State (0x0)
  992. StateHistory[14] = Unknown State (0x0)
  993. StateHistory[13] = Unknown State (0x0)
  994. Flags (0x6c000130) DNF_ENUMERATED, DNF_IDS_QUERIED,
  995. DNF_NO_RESOURCE_REQUIRED, DNF_NO_LOWER_DEVICE_FILTERS,
  996. DNF_NO_LOWER_CLASS_FILTERS, DNF_NO_UPPER_DEVICE_FILTERS,
  997. DNF_NO_UPPER_CLASS_FILTERS
  998. CapabilityFlags (0x00001e53) DeviceD1, DeviceD2,
  999. Removable, UniqueID,
  1000. SurpriseRemovalOK, WakeFromD0,
  1001. WakeFromD1, WakeFromD2
  1002. 0: kd> !devstack ffffad0f5102cd80
  1003. !DevObj !DrvObj !DevExt ObjectName
  1004. > ffffad0f5102cd80 \Driver\USBXHCI ffffad0f4ef61ba0 USBFDO-0
  1005. ffffad0f4edc7570 \Driver\pci ffffad0f4edc76c0 NTPNP_PCI0017
  1006. !DevNode ffffad0f4ee156e0 :
  1007. DeviceInst is "PCI\VEN_1912&DEV_0014&SUBSYS_00000000&REV_03\4&382692a7&0&0008"
  1008. ServiceName is "USBXHCI"
  1009. 0: kd> !devstack ffffad0f4edc7570
  1010. !DevObj !DrvObj !DevExt ObjectName
  1011. ffffad0f5102cd80 \Driver\USBXHCI ffffad0f4ef61ba0 USBFDO-0
  1012. > ffffad0f4edc7570 \Driver\pci ffffad0f4edc76c0 NTPNP_PCI0017
  1013. !DevNode ffffad0f4ee156e0 :
  1014. DeviceInst is "PCI\VEN_1912&DEV_0014&SUBSYS_00000000&REV_03\4&382692a7&0&0008"
  1015. ServiceName is "USBXHCI"
  1016. 0: kd> !devobj ffffad0f4edc7570
  1017. Device object (ffffad0f4edc7570) is for:
  1018. NTPNP_PCI0017 \Driver\pci DriverObject ffffad0f4e4e4cf0
  1019. Current Irp 00000000 RefCount 0 Type 00000022 Flags 00001040
  1020. SecurityDescriptor ffffde89f62029a0 DevExt ffffad0f4edc76c0 DevObjExt ffffad0f4edc7d80 DevNode ffffad0f4ee156e0
  1021. ExtensionFlags (0x00000800) DOE_DEFAULT_SD_PRESENT
  1022. Characteristics (0x00000100) FILE_DEVICE_SECURE_OPEN
  1023. AttachedDevice (Upper) ffffad0f5102cd80 \Driver\USBXHCI
  1024. Device queue is not busy.
  1025. 0: kd> !drvobj \Driver\USBXHCI
  1026. Driver object (ffffad0f4ef4dd00) is for:
  1027. \Driver\USBXHCI
  1028. Driver Extension List: (id , addr)
  1029. (fffff8046a367960 ffffad0f510e7ad0)
  1030. Device Object list:
  1031. ffffad0f5102bd80 ffffad0f5102cd80
  1032. 0: kd> !devobj ffffad0f5102bd80
  1033. Device object (ffffad0f5102bd80) is for:
  1034. USBPDO-0 \Driver\USBXHCI DriverObject ffffad0f4ef4dd00
  1035. Current Irp 00000000 RefCount 0 Type 00000022 Flags 00003044
  1036. SecurityDescriptor ffffde89f63741a0 DevExt ffffad0f4efbcba0 DevObjExt ffffad0f5102bef8 DevNode ffffad0f59579c40
  1037. ExtensionFlags (0000000000)
  1038. Characteristics (0x00000100) FILE_DEVICE_SECURE_OPEN
  1039. AttachedDevice (Upper) ffffad0f4ef738d0 \Driver\USBHUB3
  1040. Device queue is not busy.
  1041. 0: kd> !devnode ffffad0f59579c40
  1042. DevNode 0xffffad0f59579c40 for PDO 0xffffad0f5102bd80
  1043. Parent 0xffffad0f4ee156e0 Sibling 0000000000 Child 0xffffad0f511639a0
  1044. InstancePath is "USB\ROOT_HUB30\5&23341d40&0&0"
  1045. ServiceName is "USBHUB3"
  1046. State = DeviceNodeStarted (0x308)
  1047. Previous State = DeviceNodeEnumerateCompletion (0x30d)
  1048. StateHistory[15] = DeviceNodeEnumerateCompletion (0x30d)
  1049. StateHistory[14] = DeviceNodeEnumeratePending (0x30c)
  1050. StateHistory[13] = DeviceNodeStarted (0x308)
  1051. StateHistory[12] = DeviceNodeEnumerateCompletion (0x30d)
  1052. StateHistory[11] = DeviceNodeEnumeratePending (0x30c)
  1053. StateHistory[10] = DeviceNodeStarted (0x308)
  1054. StateHistory[09] = DeviceNodeEnumerateCompletion (0x30d)
  1055. StateHistory[08] = DeviceNodeEnumeratePending (0x30c)
  1056. StateHistory[07] = DeviceNodeStarted (0x308)
  1057. StateHistory[06] = DeviceNodeStartPostWork (0x307)
  1058. StateHistory[05] = DeviceNodeStartCompletion (0x306)
  1059. StateHistory[04] = DeviceNodeStartPending (0x305)
  1060. StateHistory[03] = DeviceNodeResourcesAssigned (0x304)
  1061. StateHistory[02] = DeviceNodeDriversAdded (0x303)
  1062. StateHistory[01] = DeviceNodeInitialized (0x302)
  1063. StateHistory[00] = DeviceNodeUninitialized (0x301)
  1064. StateHistory[19] = Unknown State (0x0)
  1065. StateHistory[18] = Unknown State (0x0)
  1066. StateHistory[17] = Unknown State (0x0)
  1067. StateHistory[16] = Unknown State (0x0)
  1068. Flags (0x6c000130) DNF_ENUMERATED, DNF_IDS_QUERIED,
  1069. DNF_NO_RESOURCE_REQUIRED, DNF_NO_LOWER_DEVICE_FILTERS,
  1070. DNF_NO_LOWER_CLASS_FILTERS, DNF_NO_UPPER_DEVICE_FILTERS,
  1071. DNF_NO_UPPER_CLASS_FILTERS
  1072. CapabilityFlags (0x00001602) DeviceD2, SurpriseRemovalOK,
  1073. WakeFromD0, WakeFromD2
  1074. 0: kd> !poaction
  1075. PopAction: fffff80467cc9660
  1076. State..........: 0 - Idle
  1077. Updates........: 0
  1078. Action.........: None
  1079. Lightest State.: Unspecified
  1080. Flags..........: 10000003 QueryApps|UIAllowed
  1081. Irp minor......: ??
  1082. System State...: Unspecified
  1083. Hiber Context..: 0000000000000000
  1084. Allocated power irps (PopIrpList - fffff80467cc9d10)
  1085. IRP: ffffad0f4e4d3ca0 (wait-wake/S4), PDO: ffffad0f4e6eddd0
  1086. IRP: ffffad0f4ef408a0 (wait-wake/S4), PDO: ffffad0f4ee04060
  1087. IRP: ffffad0f4ef108a0 (wait-wake/S4), PDO: ffffad0f4ee17060
  1088. IRP: ffffad0f4ee688a0 (wait-wake/S4), PDO: ffffad0f4ee1a060
  1089. IRP: ffffad0f4ef328a0 (wait-wake/S4), PDO: ffffad0f4ee1d060
  1090. IRP: ffffad0f4ef3d8a0 (wait-wake/S4), PDO: ffffad0f4ee20060
  1091. IRP: ffffad0f594f4a30 (wait-wake/S4), PDO: ffffad0f4eddf060
  1092. IRP: ffffad0f6dd86b20 (wait-wake/S4), PDO: ffffad0f511710a0
  1093. IRP: ffffad0f71db5010 (wait-wake/S4), PDO: ffffad0f513f1050
  1094. IRP: ffffad0f5d3059e0 (wait-wake/S4), PDO: ffffad0f597130a0
  1095. IRP: ffffad0f77feeaa0 (wait-wake/S4), PDO: ffffad0f5117e110
  1096. IRP: ffffad0f6dd4ab20 (wait-wake/S4), PDO: ffffad0f51019d80
  1097. IRP: ffffad0f75b0faa0 (wait-wake/S4), PDO: ffffad0f5117f060
  1098. IRP: ffffad0f6a388b20 (wait-wake/S0), PDO: ffffad0f5102bd80
  1099. IRP: ffffad0f4ef318a0 (set/D0,), PDO: ffffad0f4edc7570, CURRENT: ffffad0f5102cd80
  1100. Irp worker threads (PopIrpThreadList - fffff80467cc23f0)
  1101. THREAD: ffffad0f4e521040 (static), IRP: ffffad0f4ef318a0, DEVICE: ffffad0f5102cd80
  1102. THREAD: ffffad0f4e520040 (static)
  1103. Broadcast in progress: FALSE
  1104. No Device State present
  1105. 0: kd> !devstack ffffad0f4ef318a0
  1106. !DevObj !DrvObj !DevExt ObjectName
  1107. Invalid type for DeviceObject 0xffffad0f4ef318a0
  1108. 0: kd> !irp ffffad0f4ef318a0
  1109. Irp is active with 6 stacks 5 is current (= 0xffffad0f4ef31a90)
  1110. No Mdl: No System Buffer: Thread 00000000: Irp stack trace. Pending has been returned
  1111. cmd flg cl Device File Completion-Context
  1112. [N/A(0), N/A(0)]
  1113. 0 0 00000000 00000000 00000000-00000000
  1114. Args: 00000000 00000000 00000000 00000000
  1115. [N/A(0), N/A(0)]
  1116. 0 0 00000000 00000000 00000000-00000000
  1117. Args: 00000000 00000000 00000000 00000000
  1118. [N/A(0), N/A(0)]
  1119. 0 0 00000000 00000000 00000000-00000000
  1120. Args: 00000000 00000000 00000000 00000000
  1121. [IRP_MJ_POWER(16), IRP_MN_WAIT_WAKE(0)]
  1122. 0 0 ffffad0f4edc7570 00000000 00000000-00000000
  1123. \Driver\pci
  1124. Args: 00000000 00000000 00000000 00000000
  1125. >[IRP_MJ_POWER(16), IRP_MN_SET_POWER(2)]
  1126. 0 e1 ffffad0f5102cd80 00000000 fffff80467a253b0-ffffad0f5130d200 Success Error Cancel pending
  1127. \Driver\USBXHCI nt!PopRequestCompletion
  1128. Args: 00000000 00000001 00000001 00000000
  1129. [N/A(0), N/A(0)]
  1130. 0 0 00000000 00000000 00000000-ffffad0f5130d200
  1131. Args: 00000000 00000000 00000000 00000000
  1132. 0: kd> !devstack ffffad0f5102cd80
  1133. !DevObj !DrvObj !DevExt ObjectName
  1134. > ffffad0f5102cd80 \Driver\USBXHCI ffffad0f4ef61ba0 USBFDO-0
  1135. ffffad0f4edc7570 \Driver\pci ffffad0f4edc76c0 NTPNP_PCI0017
  1136. !DevNode ffffad0f4ee156e0 :
  1137. DeviceInst is "PCI\VEN_1912&DEV_0014&SUBSYS_00000000&REV_03\4&382692a7&0&0008"
  1138. ServiceName is "USBXHCI"
  1139. 0: kd> !thread ffffad0f4e521040
  1140. THREAD ffffad0f4e521040 Cid 0004.0014 Teb: 0000000000000000 Win32Thread: 0000000000000000 READY on processor 2
  1141. Not impersonating
  1142. DeviceMap ffffde89f5015480
  1143. Owning Process ffffad0f4e475200 Image: System
  1144. Attached Process N/A Image: N/A
  1145. Wait Start TickCount 48748800 Ticks: 5622 (0:00:01:27.843)
  1146. Context Switch Count 20389 IdealProcessor: 0
  1147. UserTime 00:00:00.000
  1148. KernelTime 00:00:00.281
  1149. Win32 Start Address nt!PopIrpWorker (0xfffff80467a25ca0)
  1150. Stack Init ffff8b842a61bc90 Current ffff8b842a61ac20
  1151. Base ffff8b842a61c000 Limit ffff8b842a616000 Call 0000000000000000
  1152. Priority 15 BasePriority 13 PriorityDecrement 32 IoPriority 2 PagePriority 5
  1153. Child-SP RetAddr : Args to Child : Call Site
  1154. ffff8b84`2a61ac60 fffff804`679e23a8 : ffffad0f`5d7d5080 ffff8b84`2a61add8 ffffad0f`4e521040 00000000`00000000 : nt!KiSwapContext+0x76
  1155. ffff8b84`2a61ada0 fffff804`67a221ba : ffffad0f`00000000 ffff8b84`2a61ae90 00000000`00000000 00000000`00000000 : nt!KeSetSystemGroupAffinityThread+0x268
  1156. ffff8b84`2a61ae20 fffff804`67a22085 : 00000000`6e696f49 ffff8b84`00000000 ffffad0f`4edc7570 00000000`00000000 : nt!KiAcquireInterruptConnectLock+0x42
  1157. ffff8b84`2a61ae60 fffff804`67a21ed8 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiConnectInterrupt+0x85
  1158. ffff8b84`2a61aed0 fffff804`67fbc2b9 : ffff8b84`2a61b004 ffff8b84`2a61b030 ffffad0f`75dc7e10 00000000`00000004 : nt!KeConnectInterrupt+0x58
  1159. ffff8b84`2a61af30 fffff804`67fbbf0a : ffff8b84`2a61b168 fffff804`6a3140a0 00000000`00000000 ffffad0f`51112bc0 : nt!IopConnectInterrupt+0x30d
  1160. ffff8b84`2a61b080 fffff804`6a32356c : ffffad0f`4ef618b0 00000000`00000000 ffffad0f`51112bc0 ffffad0f`4ef038b0 : nt!IoConnectInterruptEx+0x1da
  1161. ffff8b84`2a61b160 fffff804`6a3233fa : ffffad0f`51112bc0 ffffad0f`4ef4cc90 ffffad0f`4ef038b0 fffff804`6a3151ca : Wdf01000!FxInterrupt::ConnectInternal+0xd4 [minkernel\wdf\framework\shared\irphandlers\pnp\km\interruptobjectkm.cpp @ 173]
  1162. ffff8b84`2a61b1e0 fffff804`6a323623 : ffffad0f`51112d78 00000000`00000000 ffffad0f`51112bc0 ffff8b84`2a61b308 : Wdf01000!FxInterrupt::Connect+0x62 [minkernel\wdf\framework\shared\irphandlers\pnp\interruptobject.cpp @ 1263]
  1163. (Inline Function) --------`-------- : --------`-------- --------`-------- --------`-------- --------`-------- : Wdf01000!FxPkgPnp::NotifyResourceObjectsD0+0x7b (Inline Function @ fffff804`6a323623)
  1164. ffff8b84`2a61b270 fffff804`6a3218a6 : ffffad0f`4ef038b0 ffff8b84`2a61b3e0 00000000`00000000 fffff804`6a3aa518 : Wdf01000!FxPkgPnp::PowerWakingConnectInterrupt+0x93 [minkernel\wdf\framework\shared\irphandlers\pnp\powerstatemachine.cpp @ 3614]
  1165. (Inline Function) --------`-------- : --------`-------- --------`-------- --------`-------- --------`-------- : Wdf01000!FxPkgPnp::PowerEnterNewState+0x100 (Inline Function @ fffff804`6a3218a6)
  1166. ffff8b84`2a61b2e0 fffff804`6a320c6c : ffffad0f`4ef03ab0 ffffad0f`00000000 ffffad0f`4ef03a88 ffffad0f`4ed59a00 : Wdf01000!FxPkgPnp::PowerProcessEventInner+0x1f6 [minkernel\wdf\framework\shared\irphandlers\pnp\powerstatemachine.cpp @ 1557]
  1167. ffff8b84`2a61b450 fffff804`6a31ffb9 : 00000000`00000000 ffffad0f`5102cd80 ffffad0f`4ef318a0 00000000`00000000 : Wdf01000!FxPkgPnp::PowerProcessEvent+0x15c [minkernel\wdf\framework\shared\irphandlers\pnp\powerstatemachine.cpp @ 1338]
  1168. ffff8b84`2a61b4f0 fffff804`679d4f06 : ffffad0f`5102cd80 ffffad0f`5e1c7670 ffffad0f`4ef31a4b ffffad0f`5102cd80 : Wdf01000!FxPkgFdo::RaiseDevicePowerCompletion+0x39 [minkernel\wdf\framework\shared\irphandlers\pnp\fdopower.cpp @ 396]
  1169. ffff8b84`2a61b520 fffff804`67938b3d : ffffad0f`4ef31a4b ffff8b84`2a61b5f9 00000000`00000002 ffffad0f`5102cd80 : nt!IopUnloadSafeCompletion+0x56
  1170. ffff8b84`2a61b550 fffff804`67938957 : ffffad0f`4ef318a0 00000000`00000000 00000000`00000000 ffffad0f`4edc76c0 : nt!IopfCompleteRequest+0x1cd
  1171. ffff8b84`2a61b660 fffff804`6ab4b826 : 00000000`00000103 ffffad0f`4edc7be8 00000000`00000103 fffff804`6a412053 : nt!IofCompleteRequest+0x17
  1172. ffff8b84`2a61b690 fffff804`6ab41d1e : 00000000`00000000 ffffad0f`4ef31801 ffffad0f`4ef31801 00000000`00000103 : pci!PciPowerUpDeviceTimerCallback+0x426
  1173. ffff8b84`2a61b790 fffff804`6ab42577 : ffffad0f`4edc76c0 ffffad0f`4edc76c0 00000000`00000002 fffff804`6a31faa4 : pci!PciDevice_RetireD0Irp+0xe2
  1174. ffff8b84`2a61b7f0 fffff804`6ab4371d : ffffad0f`4ef318a0 00000000`00000000 ffffad0f`4ef31a48 00000000`00000000 : pci!PciDevice_SetPower+0x177
  1175. ffff8b84`2a61b850 fffff804`67a260e2 : ffffad0f`4ef318a0 ffffad0f`4ef4ce40 fffff804`6a31ff80 00000000`00000000 : pci!PciDispatchPnpPower+0xad
  1176. ffff8b84`2a61b8c0 fffff804`67930d90 : ffffad0f`4ef318a0 fffff804`6a31ff80 00000000`00000000 ffffad0f`5102cd80 : nt!IopPoHandleIrp+0x36
  1177. ffff8b84`2a61b8f0 fffff804`67a2a879 : ffffad0f`4ef03801 ffff8b84`2a61b9f0 00000000`00000000 ffffad0f`4ef61a20 : nt!IofCallDriver+0x70
  1178. ffff8b84`2a61b930 fffff804`6a31fbf4 : ffff8b84`2a61ba70 ffffad0f`4ef4ce40 fffff804`6a31ff80 ffffad0f`4ef038b0 : nt!IoCallDriver+0x9
  1179. (Inline Function) --------`-------- : --------`-------- --------`-------- --------`-------- --------`-------- : Wdf01000!FxIrp::PoCallDriver+0x1a (Inline Function @ fffff804`6a31fbf4)
  1180. ffff8b84`2a61b960 fffff804`6a31fc81 : ffff8b84`2a61ba70 00000000`00000000 00000000`00000001 ffff8b84`2a61ba40 : Wdf01000!FxPkgFdo::RaiseDevicePower+0xb4 [minkernel\wdf\framework\shared\irphandlers\pnp\fdopower.cpp @ 367]
  1181. (Inline Function) --------`-------- : --------`-------- --------`-------- --------`-------- --------`-------- : Wdf01000!FxPkgFdo::DispatchDeviceSetPower+0x41 (Inline Function @ fffff804`6a31fc81)
  1182. ffff8b84`2a61b9b0 fffff804`6a312ef3 : ffffad0f`4ef038b0 fffff804`67a26442 ffffad0f`5117d001 fffff804`67a2a879 : Wdf01000!FxPkgFdo::_DispatchSetPower+0x71 [minkernel\wdf\framework\shared\irphandlers\pnp\fdopower.cpp @ 122]
  1183. ffff8b84`2a61ba00 fffff804`6a3114cf : ffffad0f`4ef318a0 ffffad0f`4ef318a0 ffffad0f`4ef4cc90 fffff804`67922ed0 : Wdf01000!FxPkgPnp::Dispatch+0xb3 [minkernel\wdf\framework\shared\irphandlers\pnp\fxpkgpnp.cpp @ 745]
  1184. (Inline Function) --------`-------- : --------`-------- --------`-------- --------`-------- --------`-------- : Wdf01000!DispatchWorker+0x3a (Inline Function @ fffff804`6a3114cf)
  1185. (Inline Function) --------`-------- : --------`-------- --------`-------- --------`-------- --------`-------- : Wdf01000!FxDevice::DispatchPreprocessedIrp+0x93 (Inline Function @ fffff804`6a3114cf)
  1186. ffff8b84`2a61ba70 fffff804`6c6b12ca : ffffad0f`51017960 ffffad0f`4ef618b0 ffffad0f`4ef61ba0 ffffad0f`510e7c50 : Wdf01000!imp_WdfDeviceWdmDispatchPreprocessedIrp+0x10f [minkernel\wdf\framework\shared\core\km\fxdeviceapikm.cpp @ 255]
  1187. ffff8b84`2a61bac0 fffff804`6a311c4d : ffffad0f`4ef318a0 00000000`00000016 00000000`00000210 ffffad0f`4ef618b0 : USBXHCI!Controller_WdfEvtPreprocessSetPowerIrp+0x14a
  1188. (Inline Function) --------`-------- : --------`-------- --------`-------- --------`-------- --------`-------- : Wdf01000!PreprocessIrp+0x2d (Inline Function @ fffff804`6a311c4d)
  1189. (Inline Function) --------`-------- : --------`-------- --------`-------- --------`-------- --------`-------- : Wdf01000!DispatchWorker+0x178 (Inline Function @ fffff804`6a311c4d)
  1190. (Inline Function) --------`-------- : --------`-------- --------`-------- --------`-------- --------`-------- : Wdf01000!FxDevice::Dispatch+0x196 (Inline Function @ fffff804`6a311c4d)
  1191. ffff8b84`2a61bb00 fffff804`67a25ec6 : ffff8b84`2a61bbe0 ffffad0f`4ef318a0 00000000`00000000 ffffad0f`5102cd80 : Wdf01000!FxDevice::DispatchWithLock+0x1ed [minkernel\wdf\framework\shared\core\fxdevice.cpp @ 1430]
  1192. ffff8b84`2a61bb60 fffff804`679d43a5 : ffffad0f`4e521040 fffff804`67a25ca0 00000000`00000000 002d0064`00610070 : nt!PopIrpWorker+0x226
  1193. ffff8b84`2a61bc10 fffff804`67a7545c : ffffbd00`deb40180 ffffad0f`4e521040 fffff804`679d4350 00200020`0020000a : nt!PspSystemThreadStartup+0x55

其他资源

Bug 检查 0x9F DRIVER_POWER_STATE_FAILURE - Windows drivers | Microsoft Learn

虫趣:抓一个Intel显卡驱动的臭虫_张佩的博客-CSDN博客

联想中国(Lenovo China)联想知识库

Windows蓝屏分析-DRIVER_POWER_STATE_FAILURE键盘电源切换引起的蓝屏 - 内核开发

HID 体系结构 - USB中文网

windbg使用超详细教程(我是新手,大佬轻虐) - 知乎

Windows下的USB设备描述符分析工具-UsbTreeView - USB中文网

电脑主板原理图讲解(电脑主板构造图文详解)CPU和北桥芯片(随着发展有的北桥已经被设计到CPU内部了)南桥芯片_qq_25814297-npl的博客-CSDN博客_电脑主板原理图

Bushound数据分析及使用指南_Swell_Fish的博客-CSDN博客_bus hound数据分析

Linux驱动开发(十三)---USB驱动HID开发学习(鼠标)_linux hid 应用编程_胖哥王老师的博客-CSDN博客

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/130240
推荐阅读
相关标签
  

闽ICP备14008679号