如何在睡眠或休眠期间找出导致Windows 10崩溃的原因(DRIVER_POWER_STATE_FAILURE,ntoskrnl.exe + 14d220)?


3

当我在Windows 10中从睡眠/休眠状态恢复时,它会正常启动(因为它已关闭)。在事件日志中,我发现以下错误:

计算机已从错误检查重新启动。错误检查是:0x0000009f(0x0000000000000003,0xffffe000b0233060,0xffffd00035bba990,0xffffe000abc76010)。转储保存在:C:\ WINDOWS \ MEMORY.DMP中。报告ID:081015-39234-01。

如何找出导致问题的原因,例如哪个驱动程序?(Windows 10已从Windows 8.1更新,它正常工作。)

更新: BSOD消息是这样的:

Bug Check String: DRIVER_POWER_STATE_FAILURE
Bug Check Code: 0x0000009f
Parameter 1: 00000000`00000003
Parameter 2: ffffe001`2795a060
Parameter 3: ffffd001`024ab990
Parameter 4: ffffe001`33776980
Caused By Driver: ntoskrnl.exe
Caused By Address: ntoskrnl.exe+14d220
File Description: NT Kernel & System
Product Name: Microsoft® Windows® Operating System
Company: Microsoft Corporation
File Version: 10.0.10240.16412 (th1.150729-1800)
Processor: x64
Crash Address: ntoskrnl.exe+14d220

什么是完整的BSOD错误消息?BlueScreenView应提供此信息。请编辑您的问题以包含此内容。
DavidPostill

@DavidPostill看到编辑。
TN。

BlueScreenView是垃圾,从C:\ Windows \ Minidump共享dmp文件
magicandre1981 2015年

1
@ magicandre1981,如何分析minidump中的原因?
TN。

@ magicandre1981 Minidump在这里:dropbox.com/s/jcu4nrzwv5qe61a/081015-21875-01.dmp
TN。

Answers:


3

碰撞接缝是由驾驶员引起的btfilter.sys(Atheros蓝牙驱动程序):

*******************************************************************************
*                                                                             *
*                        Bugcheck Analysis                                    *
*                                                                             *
*******************************************************************************

    DRIVER_POWER_STATE_FAILURE (9f)
    A driver has failed to complete a power IRP within a specific time.
    Arguments:
    Arg1: 0000000000000003, A device object has been blocking an Irp for too long a time
    Arg2: ffffe0012795a060, Physical Device Object of the stack
    Arg3: ffffd001024ab990, nt!TRIAGE_9F_POWER on Win7 and higher, otherwise the Functional Device Object of the stack
    Arg4: ffffe00133776980, The blocked IRP

    Debugging Details:
    ------------------


    SYSTEM_SKU:  PSKK6E

    SYSTEM_VERSION:  PSKK6E-02H05KCZ

    BIOS_DATE:  09/19/2014

    BASEBOARD_PRODUCT:  VG10S

    BASEBOARD_VERSION:  To be filled by O.E.M.

    CUSTOMER_CRASH_COUNT:  1

    DEFAULT_BUCKET_ID:  WIN8_DRIVER_FAULT

    BUGCHECK_STR:  0x9F

    PROCESS_NAME:  System

    CURRENT_IRQL:  2

    ANALYSIS_VERSION: 10.0.10240.9 amd64fre

    STACK_TEXT:  
    00 nt!KeBugCheckEx
    01 nt!PopIrpWatchdogBugcheck
    02 nt!PopIrpWatchdog
    03 nt!KiRetireDpcList
    04 nt!KiIdleLoop


    IMAGE_VERSION:  10.0.10240.16401

    FAILURE_BUCKET_ID:  0x9F_3_POWER_DOWN_btfilter_IMAGE_usbhub.sys

    5: kd> !irp ffffe00133776980
    Irp is active with 15 stacks 14 is current (= 0xffffe00133776df8)
     No Mdl: No System Buffer: Thread 00000000:  Irp stack trace.  
         cmd  flg cl Device   File     Completion-Context

     [N/A(0), N/A(0)]
                0  0 00000000 00000000 00000000-00000000    

                Args: 00000000 00000000 00000000 00000000
    >[IRP_MJ_POWER(16), IRP_MN_SET_POWER(2)]
                0 e1 ffffe0012792b030 00000000 fffff800907ecd40-ffffe0012ec4f7d0 Success Error Cancel pending
              Unable to load image \SystemRoot\system32\DRIVERS\btfilter.sys, Win32 error 0n2
    *** WARNING: Unable to verify timestamp for btfilter.sys
    *** ERROR: Module load completed but symbols could not be loaded for btfilter.sys
     \Driver\BtFilter   nt!PopSystemIrpCompletion
                Args: 00014400 00000000 00000004 00000002
     [N/A(0), N/A(0)]
                0  0 00000000 00000000 00000000-ffffe0012ec4f7d0    

                Args: 00000000 00000000 00000000 00000000

        Loaded symbol image file: btfilter.sys
        Image path: \SystemRoot\system32\DRIVERS\btfilter.sys
        Image name: btfilter.sys
        Browse all global symbols  functions  data
        Timestamp:        Fri Aug 09 11:41:27 2013 

司机是2岁。查找驱动程序更新或删除它,看看通用Windows驱动程序是否有效。


我正在尝试卸载旧驱动程序,它似乎在内核中循环。(卸载需要永远,一个核心是100%。)是否有另一种保存方法来删除无法通过设备管理器卸载的驱动程序?
TN。

最后在几次强制关闭后,我设法禁用并卸载驱动程序。(不幸的是,我无法以保存模式启动。)
TN。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.