web-dev-qa-db-ja.com

Windows8で頻繁に発生するDPC_WATCHDOG_VIOLATIONBSOD

新しいWindows8 Dell XPS 13UltraBookでブルースクリーンが頻繁に発生しています。詳細:

ハードウェア(最も関連性の高い項目が展開されていると思うデバイスマネージャーのスクリーンショット):

enter image description here

ソフトウェア:OS:Windows 8アプリケーション:Webブラウザー、開発ツール(Prolog、Eclipseなど)

より具体的には、BSODは、起動時にマシンにログインしようとすると、ほとんどの場合3回ごとに発生します。パスワードを入力するとき、またはパスワードの入力が終了した直後に、常に「DPC_WATCHDOG_VIOLATION」でBSODを取得します。時々、それは毎秒発生しますが、私がログインした連続した時間に発生したことはありません。それが関連性があるのか​​、それとも有効なパターンであるのかわかりません。

問題を診断するために、私はダウンロードしました WhoCrashed そしてそれは私にこれを教えてくれました:

On Sun 2013-03-24 2:52:26 PM GMT your computer crashed
crash dump file: C:\Windows\Minidump\032413-6218-01.dmp
This was probably caused by the following module: ntoskrnl.exe (nt+0x7A040) 
Bugcheck code: 0x133 (0x0, 0x281, 0x280, 0x0)
Error: DPC_WATCHDOG_VIOLATION
file path: C:\Windows\system32\ntoskrnl.exe
product: Microsoft® Windows® Operating System
company: Microsoft Corporation
description: NT Kernel & System
Bug check description: The DPC watchdog detected a prolonged run time at an IRQL of DISPATCH_LEVEL or above.
This appears to be a typical software driver bug and is not likely to be caused by a hardware problem. This problem might be caused by a thermal issue. 
The crash took place in the Windows kernel. Possibly this problem is caused by another driver that cannot be identified at this time. 

On Sun 2013-03-24 2:52:26 PM GMT your computer crashed
crash dump file: C:\Windows\memory.dmp
This was probably caused by the following module: usbmac64.sys (USBMAC64+0x5B96) 
Bugcheck code: 0x133 (0x0, 0x281, 0x280, 0x0)
Error: DPC_WATCHDOG_VIOLATION
file path: C:\Windows\system32\drivers\usbmac64.sys
product: --
company: --
description: NDIS 5.0 driver
Bug check description: The DPC watchdog detected a prolonged run time at an IRQL of DISPATCH_LEVEL or above.
This appears to be a typical software driver bug and is not likely to be caused by a hardware problem. This problem might be caused by a thermal issue. 
A third party driver was identified as the probable root cause of this system error. It is suggested you look for an update for the following driver: usbmac64.sys (NDIS 5.0 driver, --). 
Google query: -- DPC_WATCHDOG_VIOLATION

どうすればいいのかよくわかりません。 Dell System Detect を使用して、自分のマシン用に更新されたすべてのドライバがあるかどうかを確認しました。

これに関する入力に感謝します。

編集:この問題に関連するすべての.dmpファイルへのリンクを追加しました ここ

4
karancan

クラッシュは、ドライバーUSBMAC64.SYSが原因で発生します

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

DPC_WATCHDOG_VIOLATION (133)
The DPC watchdog detected a prolonged run time at an IRQL of DISPATCH_LEVEL
or above.
Arguments:
Arg1: 0000000000000000, A single DPC or ISR exceeded its time allotment. The offending
    component can usually be identified with a stack trace.
Arg2: 0000000000000281, The DPC time count (in ticks).
Arg3: 0000000000000280, The DPC time allotment (in ticks).
Arg4: 0000000000000000

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


DPC_TIMEOUT_TYPE:  SINGLE_DPC_TIMEOUT_EXCEEDED

CUSTOMER_CRASH_COUNT:  1

DEFAULT_BUCKET_ID:  WIN8_DRIVER_FAULT

BUGCHECK_STR:  0x133

PROCESS_NAME:  svchost.exe

CURRENT_IRQL:  d

TAG_NOT_DEFINED_c000000f:  FFFFF880009C5FB0

LAST_CONTROL_TRANSFER:  from fffff8035a9dd6ef to fffff8035a884040

STACK_TEXT:  
nt!KeBugCheckEx
nt! ?? ::FNODOBFM::`string'
nt!KeUpdateRunTime
hal!HalpTimerClockInterrupt
nt!KiInterruptDispatchLBControl
nt!KeAcquireSpinLockRaiseToDpc
ACPI!ACPIDispatchIrp
USBMAC64
0x0
0x0
0x0


IMAGE_NAME:  USBMAC64.SYS

FAILURE_BUCKET_ID:  0x133_DPC_USBMAC64+6b68

BUCKET_ID:  0x133_DPC_USBMAC64+6b68

    Loaded symbol image file: USBMAC64.SYS
    Image path: \SystemRoot\system32\DRIVERS\USBMAC64.SYS
    Image name: USBMAC64.SYS
    Timestamp:        Fri May 25 11:35:13 2012

この継ぎ目は ドライバー forMosChip 7830高速USB-イーサネットアダプターです。更新があるかどうかを確認します。

4
magicandre1981