web-dev-qa-db-ja.com

スリープまたは休止状態(DRIVER_POWER_STATE_FAILURE、ntoskrnl.exe + 14d220)中にWindows 10でクラッシュを引き起こす原因を見つける方法は?

Windows 10でスリープ/休止状態から再開すると、正常に起動します(オフになっているため)。イベントログで、次のエラーが見つかりました。

コンピュータがバグチェックから再起動しました。バグチェックは0x0000009f(0x0000000000000003、0xffffe000b0233060、0xffffd00035bba990、0xffffe000abc76010)でした。ダンプはC:\ WINDOWS\MEMORY.DMPに保存されました。レポートID:081015-39234-01。

問題の原因を特定する方法。例:どのドライバー? (Windows 10は、正常に動作していたWindows 8.1から更新されました。)

PDATE: 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
3
TN.

クラッシュシームはドライバーによって引き起こされますbtfilter.sys(Atheros Bluetoothドライバー):

*******************************************************************************
*                                                                             *
*                        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ドライバーが機能するかどうかを確認します。

3
magicandre1981