dieniewienie143
New Member
- Joined
- Aug 5, 2012
- Messages
- 6
- Thread Author
- #1
BugCheck 100000EA, {fffffa80087a7a00, 0, 0, 0}
Unable to load image \SystemRoot\system32\DRIVERS\ [B]atikmdag.sys[/B] , Win32 error 0n2
*** WARNING: Unable to verify timestamp for [U][B]atikmdag.sys[/B][/U]
*** ERROR: Module load completed but symbols could not be loaded for [U][B]atikmdag.sys[/B][/U]
*** WARNING: Unable to verify timestamp for win32k.sys
*** ERROR: Module load completed but symbols could not be loaded for win32k.sys
Probably caused by : dxgkrnl.sys ( dxgkrnl!TdrTimedOperationBugcheckOnTimeout+37 )
THREAD_STUCK_IN_DEVICE_DRIVER_M (100000ea)
The device driver is spinning in an infinite loop, most likely waiting for
hardware to become idle. This usually indicates problem with the hardware
itself or with the device driver programming the hardware incorrectly.
If the kernel debugger is connected and running when watchdog detects a
timeout condition then DbgBreakPoint() will be called instead of KeBugCheckEx()
and detailed message including bugcheck arguments will be printed to the
debugger. This way we can identify an offending thread, set breakpoints in it,
and hit go to return to the spinning code to debug it further. Because
KeBugCheckEx() is not called the .bugcheck directive will not return bugcheck
information in this case. The arguments are already printed out to the kernel
debugger. You can also retrieve them from a global variable via
"dd watchdog!g_WdBugCheckData l5" (use dq on NT64).
On MP machines it is possible to hit a timeout when the spinning thread is
interrupted by hardware interrupt and ISR or DPC routine is running at the time
of the bugcheck (this is because the timeout's work item can be delivered and
handled on the second CPU and the same time). If this is the case you will have
to look deeper at the offending thread's stack (e.g. using dds) to determine
spinning code which caused the timeout to occur.
Arguments:
Arg1: fffffa80087a7a00, Pointer to a stuck thread object. Do .thread then kb on it to find
the hung location.
Arg2: 0000000000000000, Pointer to a DEFERRED_WATCHDOG object.
Arg3: 0000000000000000, Pointer to offending driver name.
Arg4: 0000000000000000, Number of times "intercepted" bugcheck 0xEA was hit (see notes).
FAULTING_THREAD: fffffa80087a7a00
DEFAULT_BUCKET_ID: GRAPHICS_DRIVER_FAULT
CUSTOMER_CRASH_COUNT: 1
BUGCHECK_STR: 0xEA
PROCESS_NAME: System
CURRENT_IRQL: 0
LAST_CONTROL_TRANSFER: from fffff88006234f63 to fffff80002cdb1c0
STACK_TEXT:
fffff880`07d0a608 fffff880`06234f63 : 00000000`000000ea fffffa80`087a7a00 00000000`00000000 00000000`00000000 : nt!KeBugCheckEx
fffff880`07d0a610 fffff880`06235112 : fffff880`07d0a6e0 fffff880`06a24a2b fffff880`07d0a6e0 00000000`00003f00 : dxgkrnl!TdrTimedOperationBugcheckOnTimeout+0x37
fffff880`07d0a680 fffff880`0683bf72 : 00000000`00000000 fffff880`06a24a10 fffff880`07d0a800 00000000`01c9c380 : dxgkrnl!TdrTimedOperationDelay+0xbe
fffff880`07d0a6c0 00000000`00000000 : fffff880`06a24a10 fffff880`07d0a800 00000000`01c9c380 fffff800`02ce0028 : [U][B]atikmdag[/B][/U]+0x2bf72
STACK_COMMAND: .thread 0xfffffa80087a7a00 ; kb
FOLLOWUP_IP:
dxgkrnl!TdrTimedOperationBugcheckOnTimeout+37
fffff880`06234f63 cc int 3
SYMBOL_STACK_INDEX: 1
SYMBOL_NAME: dxgkrnl!TdrTimedOperationBugcheckOnTimeout+37
FOLLOWUP_NAME: MachineOwner
MODULE_NAME: dxgkrnl
IMAGE_NAME: dxgkrnl.sys
DEBUG_FLR_IMAGE_TIMESTAMP: 4ce799fa
FAILURE_BUCKET_ID: X64_0xEA_IMAGE_dxgkrnl.sys
BUCKET_ID: X64_0xEA_IMAGE_dxgkrnl.sys
Update the Driver for your Video Card (ATI Radeon HD 4870 X2) from here Link Removed
Code:BugCheck 100000EA, {fffffa80087a7a00, 0, 0, 0} Unable to load image \SystemRoot\system32\DRIVERS\ [B]atikmdag.sys[/B] , Win32 error 0n2 *** WARNING: Unable to verify timestamp for [U][B]atikmdag.sys[/B][/U] *** ERROR: Module load completed but symbols could not be loaded for [U][B]atikmdag.sys[/B][/U] *** WARNING: Unable to verify timestamp for win32k.sys *** ERROR: Module load completed but symbols could not be loaded for win32k.sys Probably caused by : dxgkrnl.sys ( dxgkrnl!TdrTimedOperationBugcheckOnTimeout+37 ) THREAD_STUCK_IN_DEVICE_DRIVER_M (100000ea) The device driver is spinning in an infinite loop, most likely waiting for hardware to become idle. This usually indicates problem with the hardware itself or with the device driver programming the hardware incorrectly. If the kernel debugger is connected and running when watchdog detects a timeout condition then DbgBreakPoint() will be called instead of KeBugCheckEx() and detailed message including bugcheck arguments will be printed to the debugger. This way we can identify an offending thread, set breakpoints in it, and hit go to return to the spinning code to debug it further. Because KeBugCheckEx() is not called the .bugcheck directive will not return bugcheck information in this case. The arguments are already printed out to the kernel debugger. You can also retrieve them from a global variable via "dd watchdog!g_WdBugCheckData l5" (use dq on NT64). On MP machines it is possible to hit a timeout when the spinning thread is interrupted by hardware interrupt and ISR or DPC routine is running at the time of the bugcheck (this is because the timeout's work item can be delivered and handled on the second CPU and the same time). If this is the case you will have to look deeper at the offending thread's stack (e.g. using dds) to determine spinning code which caused the timeout to occur. Arguments: Arg1: fffffa80087a7a00, Pointer to a stuck thread object. Do .thread then kb on it to find the hung location. Arg2: 0000000000000000, Pointer to a DEFERRED_WATCHDOG object. Arg3: 0000000000000000, Pointer to offending driver name. Arg4: 0000000000000000, Number of times "intercepted" bugcheck 0xEA was hit (see notes). FAULTING_THREAD: fffffa80087a7a00 DEFAULT_BUCKET_ID: GRAPHICS_DRIVER_FAULT CUSTOMER_CRASH_COUNT: 1 BUGCHECK_STR: 0xEA PROCESS_NAME: System CURRENT_IRQL: 0 LAST_CONTROL_TRANSFER: from fffff88006234f63 to fffff80002cdb1c0 STACK_TEXT: fffff880`07d0a608 fffff880`06234f63 : 00000000`000000ea fffffa80`087a7a00 00000000`00000000 00000000`00000000 : nt!KeBugCheckEx fffff880`07d0a610 fffff880`06235112 : fffff880`07d0a6e0 fffff880`06a24a2b fffff880`07d0a6e0 00000000`00003f00 : dxgkrnl!TdrTimedOperationBugcheckOnTimeout+0x37 fffff880`07d0a680 fffff880`0683bf72 : 00000000`00000000 fffff880`06a24a10 fffff880`07d0a800 00000000`01c9c380 : dxgkrnl!TdrTimedOperationDelay+0xbe fffff880`07d0a6c0 00000000`00000000 : fffff880`06a24a10 fffff880`07d0a800 00000000`01c9c380 fffff800`02ce0028 : [U][B]atikmdag[/B][/U]+0x2bf72 STACK_COMMAND: .thread 0xfffffa80087a7a00 ; kb FOLLOWUP_IP: dxgkrnl!TdrTimedOperationBugcheckOnTimeout+37 fffff880`06234f63 cc int 3 SYMBOL_STACK_INDEX: 1 SYMBOL_NAME: dxgkrnl!TdrTimedOperationBugcheckOnTimeout+37 FOLLOWUP_NAME: MachineOwner MODULE_NAME: dxgkrnl IMAGE_NAME: dxgkrnl.sys DEBUG_FLR_IMAGE_TIMESTAMP: 4ce799fa FAILURE_BUCKET_ID: X64_0xEA_IMAGE_dxgkrnl.sys BUCKET_ID: X64_0xEA_IMAGE_dxgkrnl.sys
BiosVendor = American Megatrends Inc.
BiosVersion = 0402
BiosReleaseDate = 07/30/2010