2L应该是用的bluescreenview查看的,显示是notskrnl.exe、Null.SYS和UsbHub2.sys造成的!
我用windbg看,认为也是驱动造成的!
相关信息如下:
- *******************************************************************************
- * *
- * Bugcheck Analysis *
- * *
- *******************************************************************************
- Use !analyze -v to get detailed debugging information.
- BugCheck 44, {ffffe000c0430b80, 1e8c, 0, 0}
- Probably caused by : ntkrnlmp.exe ( nt! ?? ::FNODOBFM::`string'+a03a )
- Followup: MachineOwner
- ---------
- 2: kd> !analyze -v
- *******************************************************************************
- * *
- * Bugcheck Analysis *
- * *
- *******************************************************************************
- MULTIPLE_IRP_COMPLETE_REQUESTS (44)
- A driver has requested that an IRP be completed (IoCompleteRequest()), but
- the packet has already been completed. This is a tough bug to find because
- the easiest case, a driver actually attempted to complete its own packet
- twice, is generally not what happened. Rather, two separate drivers each
- believe that they own the packet, and each attempts to complete it. The
- first actually works, and the second fails. Tracking down which drivers
- in the system actually did this is difficult, generally because the trails
- of the first driver have been covered by the second. However, the driver
- stack for the current request can be found by examining the DeviceObject
- fields in each of the stack locations.
- Arguments:
- Arg1: ffffe000c0430b80, Address of the IRP
- Arg2: 0000000000001e8c
- Arg3: 0000000000000000
- Arg4: 0000000000000000
- Debugging Details:
- ------------------
- IRP_ADDRESS: ffffe000c0430b80
- FOLLOWUP_IP:
- nt! ?? ::FNODOBFM::`string'+a03a
- fffff801`4c1e4fea cc int 3
- CUSTOMER_CRASH_COUNT: 1
- DEFAULT_BUCKET_ID: VISTA_DRIVER_FAULT
- BUGCHECK_STR: 0x44
- PROCESS_NAME: csrss.exe
- CURRENT_IRQL: 1
- LAST_CONTROL_TRANSFER: from fffff8014c1e4fea to fffff8014c1caaa0
- STACK_TEXT:
- ffffd000`2280e578 fffff801`4c1e4fea : 00000000`00000044 ffffe000`c0430b80 00000000`00001e8c 00000000`00000000 : nt!KeBugCheckEx
- ffffd000`2280e580 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt! ?? ::FNODOBFM::`string'+0xa03a
- STACK_COMMAND: kb
- SYMBOL_STACK_INDEX: 1
- SYMBOL_NAME: nt! ?? ::FNODOBFM::`string'+a03a
- FOLLOWUP_NAME: MachineOwner
- MODULE_NAME: nt
- IMAGE_NAME: ntkrnlmp.exe
- DEBUG_FLR_IMAGE_TIMESTAMP: 545167e0
- FAILURE_BUCKET_ID: X64_0x44_nt!_??_::FNODOBFM::_string_+a03a
- BUCKET_ID: X64_0x44_nt!_??_::FNODOBFM::_string_+a03a
- Followup: MachineOwner
- ---------
复制代码 |