DPC_WATCHDOG_VIOLATION no Windows 8.1


0

Às vezes, recebo um erro DPC_WATCHDOG_VIOLATION (nem sempre) quando inicio um PC no qual o Windows 8.1 foi instalado recentemente.

Eu tenho alguns arquivos minidump e acho que foram encontradas algumas informações sobre o que causou a falha, mas não sei como lê-las. Compartilhei os arquivos minidump aqui: https://www.dropbox.com/s/8q9luuvcnbk28a6/minidump.zip?dl=0 Qualquer ajuda com a interpretação desses arquivos será muito apreciada.


Você pode usar o windbg para determinar qual é provavelmente um driver de dispositivo incorreto. Atualize sua pergunta depois de identificar o driver.
Ramhound 15/07/16

@ Ramhound Eu já postei o que vejo no dmp. É um driver firewire a partir de 2010 que provoca o acidente
magicandre1981

@sasbs ans atualização sobre o assunto? A remoção do driver corrige isso?
magicandre1981

Respostas:


1

Analisando o despejo com Windbg , mostra que o driver firedrv.sys(driver firewire) causa a falha:

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: 0000000000000501, The DPC time count (in ticks).
Arg3: 0000000000000500, The DPC time allotment (in ticks).
Arg4: 0000000000000000

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

*** WARNING: Unable to verify timestamp for firedrv.sys
*** ERROR: Module load completed but symbols could not be loaded for firedrv.sys

DUMP_CLASS: 1

DUMP_QUALIFIER: 400

BUILD_VERSION_STRING:  6.3.9600.18292 (winblue_ltsb.160330-1744)

SYSTEM_MANUFACTURER:  Acer

SYSTEM_PRODUCT_NAME:  Veriton X2632G 

BIOS_VENDOR:  Acer                    

BIOS_VERSION:  P21-B4                 

BIOS_DATE:  04/03/2015

BASEBOARD_MANUFACTURER:  Acer

BASEBOARD_PRODUCT:  Veriton X2632G

ANALYSIS_VERSION: 10.0.14321.1024 amd64fre

STACK_TEXT:  
00 nt!KeBugCheckEx
01 nt! ?? ::FNODOBFM::`string'
02 nt!KeClockInterruptNotify
03 hal!HalpTimerClockIpiRoutine
04 nt!KiCallInterruptServiceRoutine
05 nt!KiInterruptSubDispatchNoLockNoEtw
06 nt!KiInterruptDispatchLBControl
07 firedrv
08 0x0
09 firedrv
0a 0x0

IMAGE_NAME:  firedrv.sys

DEBUG_FLR_IMAGE_TIMESTAMP:  4c21cc64

BUCKET_ID_FUNC_OFFSET:  af0c

FAILURE_BUCKET_ID:  0x133_DPC_firedrv!unknown_function

BUCKET_ID:  0x133_DPC_firedrv!unknown_function

PRIMARY_PROBLEM_CLASS:  0x133_DPC_firedrv!unknown_function

FAILURE_ID_HASH_STRING:  km:0x133_dpc_firedrv!unknown_function


fffff800`6314e000 fffff800`63170000   firedrv  T (no symbols)           
    Loaded symbol image file: firedrv.sys
    Image path: \SystemRoot\system32\DRIVERS\firedrv.sys
    Image name: firedrv.sys
    Browse all global symbols  functions  data
    Timestamp:        Wed Jun 23 10:57:08 2010 

Atualize ou remova o driver e o problema deve ter desaparecido.

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.