Thanks very much!
CLOCK_WATCHDOG_TIMEOUT (101)
This indicates that an expected clock interrupt on a secondary processor, in a multi-processor system, was not received within the allocated interval.
So there's the basic definition of this particular bug check. Let's get into the debugging now.
Code:
BugCheck 101, {[COLOR=#ff0000]19[/COLOR], 0, [COLOR=#4b0082]fffff8800316a180[/COLOR], 7}
19 clock ticks in regards to the timeout.
fffff8800316a180 is the PRCB address of the hung processor, let's keep this address in mind.
Code:
0: kd> !prcb 7
PRCB for Processor 7 at [COLOR=#4b0082]fffff8800316a180[/COLOR]:
Current IRQL -- 0
Threads-- Current fffff880031750c0 Next 0000000000000000 Idle fffff880031750c0
Processor Index 7 Number (0, 7) GroupSetMember 80
Interrupt Count -- 001a54c3
Times -- Dpc 00000192 Interrupt 0000017c
Kernel 00022c7b User 00000008
As this matches the 3rd parameter of the bug check, processor #7 is the responsible processor. Now with the information we have here thus far, we know that processor #7 reached 19 clock ticks without responding, therefore the system crashed. Before we go further, what is a clock tick? A clock interrupt is a form of interrupt which involves counting the the cycles of the processor core, which is running a clock on the processors to keep them all in sync. A clock interrupt is handed out to all processors and then they must report in, and when one doesn't report in, you then crash.
Code:
0: kd> kv
Child-SP RetAddr : Args to Child : Call Site
fffff880`033e7528 fffff800`0331ea4a : 00000000`00000101 00000000`00000019 00000000`00000000 fffff880`0316a180 : nt!KeBugCheckEx
fffff880`033e7530 fffff800`032d16f7 : fffffa80`00000000 fffff800`00000007 00000000`00002711 00000000`00000000 : nt! ?? ::FNODOBFM::`string'+0x4e3e
fffff880`033e75c0 fffff800`03213895 : fffff800`03239460 fffff880`033e7770 fffff800`03239460 00001f80`00000000 : nt!KeUpdateSystemTime+0x377
fffff880`033e76c0 fffff800`032c4113 : 00000000`49a8e493 fffff800`03442e80 fffff8a0`09e9b000 00000000`00000000 : hal!HalpHpetClockInterrupt+0x8d
fffff880`033e76f0 fffff800`032cc9f0 : fffff800`03442e80 00000000`00000001 00000000`00000000 fffff800`0343ec48 : nt!KiInterruptDispatchNoLock+0x163 ([COLOR=#ff0000]TrapFrame @ fffff880`033e76f0[/COLOR])
fffff880`033e7880 fffff800`032b19d4 : 00000000`00000002 00000000`00000001 fffff880`033e7ba0 00000000`000021b5 : nt!KeFlushMultipleRangeTb+0x260
fffff880`033e7950 fffff800`03348f25 : fffff800`03502b00 fffff800`00000001 00000000`00000001 fffff880`033e7bb0 : nt!MiAgeWorkingSet+0x64a
fffff880`033e7b00 fffff800`032b1b06 : 00000000`000008b1 00000000`00000000 fffffa80`00000000 00000000`00000004 : nt! ?? ::FNODOBFM::`string'+0x4c7f6
fffff880`033e7b80 fffff800`032b1fb3 : 00000000`00000008 fffff880`033e7c10 00000000`00000001 fffffa80`00000000 : nt!MmWorkingSetManager+0x6e
fffff880`033e7bd0 fffff800`035642ea : fffffa80`08b43850 00000000`00000080 fffffa80`08ac9840 00000000`00000001 : nt!KeBalanceSetManager+0x1c3
fffff880`033e7d40 fffff800`032b88e6 : fffff880`009b2180 fffffa80`08b43850 fffff880`009bd0c0 00000000`00000000 : nt!PspSystemThreadStartup+0x5a
fffff880`033e7d80 00000000`00000000 : fffff880`033e8000 fffff880`033e2000 fffff880`033e7640 00000000`00000000 : nt!KxStartSystemThread+0x16
Code:
0: kd> .trap [COLOR=#ff0000]fffff880`033e76f0[/COLOR]
NOTE: The trap frame does not contain all registers.
Some register values may be zeroed or incorrect.
rax=0000000000000001 rbx=0000000000000000 rcx=fffff880033e78c0
rdx=fffff8000343ec50 rsi=0000000000000000 rdi=0000000000000000
[COLOR=#4b0082]rip=fffff800032cc9f0[/COLOR] rsp=fffff880033e7880 rbp=0000000000000001
r8=fffff8000343ec50 r9=ffffffffffffffdf r10=0000000000000008
r11=fffff800032d6760 r12=0000000000000000 r13=0000000000000000
r14=0000000000000000 r15=0000000000000000
iopl=0 nv up ei pl nz na po nc
[COLOR=#ff0000]nt!KeFlushMultipleRangeTb+0x260[/COLOR]:
[COLOR=#4b0082]fffff800`032cc9f0[/COLOR] 8b8780200000 mov eax,dword ptr [rdi+2080h] ds:00000000`00002080=????????
Code:
0: kd> u @rip
nt!KeFlushMultipleRangeTb+0x260:
fffff800`032cc9f0 8b8780200000 mov eax,dword ptr [rdi+2080h]
fffff800`032cc9f6 85c0 [COLOR=#ff0000] test eax,eax[/COLOR] [COLOR=#4b0082]<--- Checking if value is non-zero.[/COLOR]
fffff800`032cc9f8 75e6 [COLOR=#ff0000]jne[/COLOR] [COLOR=#ff0000]nt!KeFlushMultipleRangeTb+0x250 (fffff800`032cc9e0)[/COLOR] [COLOR=#4b0082]<--- Jump if not zero.[/COLOR]
fffff800`032cc9fa e955ffffff [COLOR=#ff0000]jmp[/COLOR] [COLOR=#ff0000]nt!KeFlushMultipleRangeTb+0x1c4 (fffff800`032cc954)[/COLOR] [COLOR=#4b0082]<--- Jump up into nt!KeFlushMultipleRangeTb.[/COLOR]
fffff800`032cc9ff 41f6c304 test r11b,4
fffff800`032cca03 0f85d93c0500 jne nt! ?? ::FNODOBFM::`string'+0xaaab (fffff800`033206e2)
fffff800`032cca09 41f6c306 test r11b,6
fffff800`032cca0d 0f85a73d0500 jne nt! ?? ::FNODOBFM::`string'+0xab8f (fffff800`033207ba)
Code:
0: kd> u fffff800`032cc9e0 fffff800`032cc9fa
nt!KeFlushMultipleRangeTb+0x250:
fffff800`032cc9e0 ffc3 inc ebx
fffff800`032cc9e2 851de0292300 test dword ptr [nt!HvlLongSpinCountMask (fffff800`034ff3c8)],ebx
fffff800`032cc9e8 0f84da3c0500 je nt! ?? ::FNODOBFM::`string'+0xaa91 (fffff800`033206c8)
fffff800`032cc9ee f390 [COLOR=#ff0000]pause[/COLOR]
fffff800`032cc9f0 8b8780200000 mov eax,dword ptr [rdi+2080h]
fffff800`032cc9f6 85c0 test eax,eax
fffff800`032cc9f8 75e6 jne nt!KeFlushMultipleRangeTb+0x250 (fffff800`032cc9e0)
fffff800`032cc9fa e955ffffff jmp nt!KeFlushMultipleRangeTb+0x1c4 (fffff800`032cc954)
It appears at the time of the bug check, the thread was executing a pause (a CPU delay), and doing this in a loop waiting for a release with
nt!KeFlushMultipleRangeTb.
Code:
1: kd> kv
Child-SP RetAddr : Args to Child : Call Site
fffff880`02f1bc98 fffff800`032d0709 : 00000000`00298451 fffffa80`0a2019b8 fffff880`009f50c0 00000000`00000001 : intelppm!C1Halt+0x2
fffff880`02f1bca0 fffff800`032bf89c : fffff880`009ea180 fffff880`00000000 00000000`00000000 fffff880`04002db0 : nt!PoIdle+0x52a
fffff880`02f1bd80 00000000`00000000 : fffff880`02f1c000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiIdleLoop+0x2c
Processor #1 was idle.
Code:
2: kd> kv
Child-SP RetAddr : Args to Child : Call Site
fffff880`02f8cc68 fffff880`0419f9c2 : fffff800`032d0709 00000000`00298451 fffffa80`0a1d1ca8 fffff880`02f6f0c0 : [COLOR=#ff0000]nt!KiSecondaryClockInterrupt (TrapFrame @ fffff880`02f8cb00)[/COLOR]
fffff880`02f8cc98 fffff800`032d0709 : 00000000`00298451 fffffa80`0a1d1ca8 fffff880`02f6f0c0 00000000`00000001 : intelppm!C1Halt+0x2
fffff880`02f8cca0 fffff800`032bf89c : fffff880`02f64180 fffff880`00000000 00000000`00000000 fffff880`0fda74d0 : nt!PoIdle+0x52a
fffff880`02f8cd80 00000000`00000000 : fffff880`02f8d000 fffff880`02f87000 fffff880`02f8cd40 00000000`00000000 : nt!KiIdleLoop+0x2c
Processor #2 was idle and then received a secondary clock interrupt.
Code:
3: kd> k
Child-SP RetAddr Call Site
fffff880`02a73340 fffff880`0f94d149 [COLOR=#4b0082]nvlddmkm+0x5cf1[/COLOR]
fffff880`02a73370 fffff880`0f0bc8a5[COLOR=#4b0082] nvlddmkm!nvDumpConfig+0x2aad71[/COLOR]
fffff880`02a733f0 fffff880`0f929070 [COLOR=#4b0082]nvlddmkm+0x948a5[/COLOR]
fffff880`02a734f0 fffff880`0fc9db3c [COLOR=#4b0082]nvlddmkm!nvDumpConfig+0x286c98[/COLOR]
fffff880`02a73590 fffff880`0fcccaec [COLOR=#008000]dxgkrnl!DXGADAPTER::DdiSetPointerShape+0x50[/COLOR]
fffff880`02a735c0 fffff960`006e0e2a [COLOR=#008000]dxgkrnl!DxgkCddSetPointerShape+0x130[/COLOR]
fffff880`02a73620 fffff960`006e0c76 [COLOR=#ff0000]cdd!bSetHardwarePointerShape+0xe2[/COLOR]
fffff880`02a73670 fffff960`000b5ad1 [COLOR=#ff0000]cdd!DrvSetPointerShape+0x13e[/COLOR]
fffff880`02a736e0 fffff960`000b5417 win32k!vSetPointer+0x531
fffff880`02a73800 fffff960`00125c7e win32k!GreSetPointer+0x177
fffff880`02a738b0 fffff960`00108939 win32k!zzzUpdateCursorImage+0x28e
fffff880`02a738f0 fffff960`0016da4c win32k!zzzSetFMouseMoved+0x379
fffff880`02a73a60 fffff960`001357b4 win32k!ProcessQueuedMouseEvents+0x27c
fffff880`02a73af0 fffff960`000c5078 win32k!RawInputThread+0x878
fffff880`02a73bc0 fffff960`0014619a win32k!xxxCreateSystemThreads+0x58
fffff880`02a73bf0 fffff800`032c6e53 win32k!NtUserCallNoParam+0x36
fffff880`02a73c20 000007fe`fd821eea nt!KiSystemServiceCopyEnd+0x13
00000000`0158fe48 00000000`00000000 0x000007fe`fd821eea
Some display stuff going on here with processor #3, such as the Canonical Display driver, DirectX Kernel settings pointer shapes, and then the nVidia video driver.
Code:
4: kd> kv
Child-SP RetAddr : Args to Child : Call Site
fffff880`0550c5c0 fffff800`0328431a : fffff6fc`5004f4e0 fffffa80`090ce060 fffff800`03502600 ffffffff`ffffffff : [COLOR=#ff0000]nt!KeFlushMultipleRangeTb+0x260[/COLOR]
fffff880`0550c690 fffff800`03283f18 : fffff8a0`09e9b000 00000000`00000000 00000000`00000005 fffff8a0`00bf5000 : nt!MiProtectPool+0x3a6
fffff880`0550c7c0 fffff800`035640b7 : 00000000`03715000 00000000`0001b8a8 00000000`00001000 fffff8a0`00000000 : nt!ExProtectPool+0x178
fffff880`0550c830 fffff800`03561845 : 00000000`00000008 00000000`0001b8af fffff8a0`09e9c184 00000000`00000004 : nt!HvpSetRangeProtection+0x12f
fffff880`0550c890 fffff800`0356161c : fffff8a0`00bf5010 fffff8a0`00bf5010 fffff8a0`00d142a0 00000000`03715a48 : nt!HvMarkDirty+0x176
fffff880`0550c8f0 fffff800`0357aba7 : 01cf6330`73befad3 fffff880`0550cca0 fffff8a0`01ec3008 00000000`00000000 : nt!HvMarkCellDirty+0x150
fffff880`0550c940 fffff800`0357b40e : fffff8a0`02868060 fffff880`0550cac8 00000000`00000004 00000000`0203e940 : nt!CmSetValueKey+0x2e3
fffff880`0550ca80 fffff800`032c6e53 : 00000000`00000504 00000000`00000007 00000000`00000000 00000000`00000004 : nt!NtSetValueKey+0x349
fffff880`0550cbb0 00000000`77a918ba : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiSystemServiceCopyEnd+0x13 (TrapFrame @ fffff880`0550cc20)
00000000`0203e718 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : 0x77a918ba
Processor #4 seems to be waiting on the loop occurring in processor #1, as we can see the
nt!KeFlushMultipleRangeTb function at the top of the stack.
Code:
5: kd> k
Child-SP RetAddr Call Site
fffff880`030b0c98 fffff800`032d0709 intelppm!C1Halt+0x2
fffff880`030b0ca0 fffff800`032bf89c nt!PoIdle+0x52a
fffff880`030b0d80 00000000`00000000 nt!KiIdleLoop+0x2c
Processor #5 is idle.
Code:
6: kd> kv
Child-SP RetAddr : Args to Child : Call Site
fffff880`03128e60 fffff800`032d23c7 : fffffa80`08b5b6c5 fffff880`00022def 00000000`00000001 00000000`00000022 : nt!KiTimerExpiration+0x139 [COLOR=#4b0082]<--- Looks like the CPU is way behind.[/COLOR]
fffff880`03128f00 fffff800`032cad15 : 00000000`00000000 fffffa80`08b5b660 00000000`00000000 fffff880`014a9800 : nt!KiRetireDpcList+0x277 [COLOR=#4b0082]<--- See below.[/COLOR]
fffff880`03128fb0 fffff800`032cab2c : fffff880`030f9180 fffff800`032d31b8 00000000`00000010 fffff880`030f9180 : nt!KxRetireDpcList+0x5 (TrapFrame @ fffff880`03128e70) [COLOR=#4b0082]<--- Retiring DPC list.[/COLOR]
fffff880`033c4a40 fffff800`03312b53 : fffff800`032d2f4c fffff800`032d2fb8 fffffa80`08b5b660 fffff880`033c4b00 : nt!KiDispatchInterruptContinue [COLOR=#4b0082]<--- Allowing software interrupt to continue?[/COLOR]
fffff880`033c4a70 fffff800`032d2fb8 : fffffa80`08b5b660 fffff880`033c4b00 fffffa80`08b5b720 00000000`00000000 : nt!KiDpcInterruptBypass+0x13 [COLOR=#4b0082]<--- Bypassed software interrupt at dispatch level.[/COLOR]
fffff880`033c4a80 fffff800`032bd614 : 00000000`00000000 fffffa80`08b5b660 00000000`00000000 fffff800`03281a5c : nt!KiSecondaryClockInterrupt+0x1a8 (TrapFrame @ fffff880`033c4a80) [COLOR=#4b0082]<--- Receiving an interrupt.[/COLOR]
fffff880`033c4c10 fffff800`0328a4fb : 00000000`00000000 fffff880`009b7040 00000000`00000000 fffff800`03281aa0 : nt!KiCommitThreadWait+0x1f4 [COLOR=#4b0082]<--- Committing the thread to waiting.[/COLOR]
fffff880`033c4ca0 fffff800`03281b3d : fffff880`030f9180 00000000`00000001 fffffa80`08b5b660 fffff800`03281b90 : nt!KeWaitForGate+0xfb [COLOR=#4b0082]<---Allocating a wait block on the stack, it seems.[/COLOR]
fffff880`033c4cf0 fffff800`035642ea : 00000000`00000000 fffffa80`08b5b660 00000000`00000080 fffffa80`08ac9840 : nt!KiExecuteDpc+0x9d [COLOR=#4b0082]<--- Executing a DPC (Deferred Procedure Call).[/COLOR]
fffff880`033c4d40 fffff800`032b88e6 : fffff880`009b2180 fffffa80`08b5b660 fffff880`009bd0c0 00000000`00000000 : nt!PspSystemThreadStartup+0x5a [COLOR=#4b0082]<--- System thread starting up.[/COLOR]
fffff880`033c4d80 00000000`00000000 : fffff880`033c5000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KxStartSystemThread+0x16 [COLOR=#4b0082]<-- Starting a system thread.[/COLOR]
Code:
6: kd> !dpcs
CPU Type KDPC Function
6: Threaded: 0xfffff880030fda98 0xfffff80003281b90 nt!KiDpcWatchdog
7: Normal : 0xfffff8800316e9e8 0xfffff800033e8a90 nt!PpmPerfAction
Yep, the CPU is
very behind - (2) pending DPCs.
Code:
6: kd> !timer
Dump system timers
Interrupt time: 344f69d8 00000005 [ 4/28/2014 18:23:28.199]
List Timer Interrupt Low/High Fire Time DPC/thread
PROCESSOR 0 (nt!_KTIMER_TABLE fffff80003445080)
0 fffffa800a319950 2de06ed3 00000005 [ 4/28/2014 18:23:17.405] ndis!ndisMTimerObjectDpc (DPC @ fffffa800a319990)
fffff88001068500 7d13c8cc 0000000a [ 4/28/2014 19:01:17.766] cng!seedFileDpcRoutine (DPC @ fffff880010684c0)
2 fffffa8008f75c10 3e8fcbb3 00000005 [ 4/28/2014 18:23:45.398] thread fffffa8008f75b50
fffffa80091ca120 3e8fcbb3 00000005 [ 4/28/2014 18:23:45.398] thread fffffa80091ca060
3 fffff88002cc8760 2de7c340 00000005 [ 4/28/2014 18:23:17.453] afd!AfdTimerWheelHandler (DPC @ fffff88002cc8720)
7 fffffa8009597c10 3e9bd9d0 00000005 [ 4/28/2014 18:23:45.477] thread fffffa8009597b50
8 fffffa80092c0c10 3e9dae97 00000005 [ 4/28/2014 18:23:45.489] thread fffffa80092c0b50
16 fffffa800b6a0760 P 32cafc8d 00000005 [ 4/28/2014 18:23:25.654] nt!ExpTimerDpcRoutine (DPC @ fffffa800b6a07f8)
17 fffffa800ba0ae38 352e7cdc 00000005 [ 4/28/2014 18:23:29.661] srvnet!SrvNetScavengerTimerRoutine (DPC @ fffffa800ba0ae78)
fffffa800c21dc10 4113e7f1 00000005 [ 4/28/2014 18:23:49.620] thread fffffa800c21db50
18 fffff800034477d8 P 35300554 00000005 [ 4/28/2014 18:23:29.671] nt!KiDpcWatchdog (DPC @ fffff80003447798)
19 fffffa80092b8120 2e0e3e24 00000005 [ 4/28/2014 18:23:17.706] thread fffffa80092b8060
fffffa8009174c10 37950aba 00000005 [ 4/28/2014 18:23:33.689] thread fffffa8009174b50
22 fffffa800995d8b0 P 2e168443 00000005 [ 4/28/2014 18:23:17.760] fltmgr!FltpIrpCtrlStackProfilerTimer (DPC @ fffffa800995d8f0)
25 fffffa800b004c98 307ecafc 00000005 [ 4/28/2014 18:23:21.799] Wdf01000!FxTimer::_FxTimerDpcThunk (DPC @ fffffa800b004cd8)
26 fffff880080b7f50 307f7886 00000005 [ 4/28/2014 18:23:21.803] srv!ScavengerTimerRoutine (DPC @ fffff880080b7f90)
fffffa800bb25250 307fd1d3 00000005 [ 4/28/2014 18:23:21.805] srv!ComputeAvgQueueDepth (DPC @ fffffa800bb25210)
28 fffffa800a182278 314ddeb0 00000131 [ 4/30/2014 06:10:52.175] ndis!ndisMWakeUpDpcX (DPC @ fffffa800a1822b8)
29 fffffa800a197278 31504011 00000131 [ 4/30/2014 06:10:52.190] ndis!ndisMWakeUpDpcX (DPC @ fffffa800a1972b8)
fffffa800a195278 31504011 00000131 [ 4/30/2014 06:10:52.190] ndis!ndisMWakeUpDpcX (DPC @ fffffa800a1952b8)
fffffa800a154278 31504011 00000131 [ 4/30/2014 06:10:52.190] ndis!ndisMWakeUpDpcX (DPC @ fffffa800a1542b8)
34 fffffa800b6d5c10 6144c466 00000006 [ 4/28/2014 18:31:53.124] thread fffffa800b6d5b50
35 fffff8000346e840 P 2e340e80 00000005 [ 4/28/2014 18:23:17.953] nt!EtwpAdjustBuffersDpcRoutine (DPC @ fffff8000346e800)
fffff88006142710 2e340e80 00000005 [ 4/28/2014 18:23:17.953] luafv!ScavengerTimerRoutine (DPC @ fffff88006142750)
fffffa800b6a05f0 P 9e14ce8d 00000005 [ 4/28/2014 18:26:25.654] nt!ExpTimerDpcRoutine (DPC @ fffffa800b6a0688)
36 fffffa8009e96278 2e36f166 00000005 [ 4/28/2014 18:23:17.972] ndis!ndisMWakeUpDpcX (DPC @ fffffa8009e962b8)
fffffa8009e6f278 2e36f166 00000005 [ 4/28/2014 18:23:17.972] ndis!ndisMWakeUpDpcX (DPC @ fffffa8009e6f2b8)
fffffa8009e77278 2e36f166 00000005 [ 4/28/2014 18:23:17.972] ndis!ndisMWakeUpDpcX (DPC @ fffffa8009e772b8)
fffff88004656680 P 32fa9813 00000005 [ 4/28/2014 18:23:25.966] HTTP!UlZombieTimerDpcRoutine (DPC @ fffff880046566c0)
fffff8800465e9c0 P 32fa9813 00000005 [ 4/28/2014 18:23:25.966] HTTP!UlpAuthCacheScavengerDpc (DPC @ fffff8800465ea00)
fffff88004655580 P 32fa9813 00000005 [ 4/28/2014 18:23:25.966] HTTP!UlpErrorLogBufferTimerDpcRoutine (DPC @ fffff880046555c0)
41 fffff88001098220 P 99605643 00000005 [ 4/28/2014 18:26:17.760] rdyboost!SmdReadVolumeRangesDpc (DPC @ fffff88001098260)
43 fffff88001290198 9964b949 00000005 [ 4/28/2014 18:26:17.789] Ntfs!NtfsUsnTimeOutDpc (DPC @ fffff88001290158)
fffffa800b6a8220 P c1dcd74e 00000005 [ 4/28/2014 18:27:25.685] nt!ExpTimerDpcRoutine (DPC @ fffffa800b6a82b8)
44 fffffa800bbfa570 2e4b15f2 00000005 [ 4/28/2014 18:23:18.104] thread fffffa800bbfa4b0
45 fffffa800ae87d20 P aab9f049 0000000a [ 4/28/2014 19:02:34.352] thread fffffa800aea59e0
48 fffff8800465f260 56cc1071 00000005 [ 4/28/2014 18:24:26.059] HTTP!UlpScavengerTimerDpcRoutine (DPC @ fffff8800465f220)
50 fffffa800a828770 P 30ba8b11 00000005 [ 4/28/2014 18:23:22.190] ndis!ndisMTimerDpc (DPC @ fffffa800a8287b0)
51 fffff8000346d7c0 aaa9ab79 0000c26d [ 1/ 1/2015 03:00:00.001] nt!ExpNextYearDpcRoutine (DPC @ fffff8000346d800)
55 fffffa80091f4120 4631f2b0 00000005 [ 4/28/2014 18:23:58.205] thread fffffa80091f4060
59 fffffa8008d90c10 5ba7d855 00000005 [ 4/28/2014 18:24:34.210] thread fffffa8008d90b50
69 fffffa8009448790 3a6bc4a1 00000005 [ 4/28/2014 18:23:38.451] thread fffffa8009326b50
fffffa800934ea00 3a6c87f4 00000005 [ 4/28/2014 18:23:38.456] thread fffffa800934e940
fffffa80090a6c10 3a6d7258 00000005 [ 4/28/2014 18:23:38.462] thread fffffa80090a6b50
71 fffffa800a7c8530 2e89f37f 00000005 [ 4/28/2014 18:23:18.516] netbt!TimerExpiry (DPC @ fffffa800a7c84f0)
73 fffffa8009326120 43faceb6 00000005 [ 4/28/2014 18:23:54.488] thread fffffa8009326060
75 fffffa800a14f278 33566383 00000005 [ 4/28/2014 18:23:26.567] ndis!ndisMWakeUpDpcX (DPC @ fffffa800a14f2b8)
84 fffffa800ae81950 81f86aff 00000005 [ 4/28/2014 18:25:38.491] thread fffffa800ae81b50
fffffa8009654c10 81fa6710 00000005 [ 4/28/2014 18:25:38.504] thread fffffa8009654b50
fffff8800411f480 4eb09880 00000006 [ 4/28/2014 18:31:21.953] dfsc!DfscTimerDispatch (DPC @ fffff8800411f4c0)
87 fffff800034cc5b0 P 500279cc 00000005 [ 4/28/2014 18:24:14.671] nt!IopIrpStackProfilerTimer (DPC @ fffff800034cc5f0)
91 fffffa8009336900 5bf4045d 00000005 [ 4/28/2014 18:24:34.709] thread fffffa80092ca060
99 fffff88002c1c960 2ecca500 00000005 [ 4/28/2014 18:23:18.953] rdbss!RxTimerDispatch (DPC @ fffff88002c1c9c0)
101 fffffa8009e37b78 P 3d1ac100 00000005 [ 4/28/2014 18:23:42.953] afd!AfdCheckLookasideLists (DPC @ fffffa8009e37bb8)
fffffa8008cec870 46a0949f 00000005 [ 4/28/2014 18:23:58.930] thread fffffa8008cec7b0
121 fffff8000346d900 7d695469 00009358 [11/ 2/2014 05:00:00.000] nt!ExpTimeZoneDpcRoutine (DPC @ fffff8000346d940)
122 fffffa800a0ae418 P 4f07bd71 00000032 [ 4/28/2014 23:46:20.381] dxgkrnl!DxgkSqmDpc (DPC @ fffffa800a0ae470)
124 fffff80003477f80 P 2f09509f 00000005 [ 4/28/2014 18:23:19.351] nt!PopCheckForIdleness (DPC @ fffff80003477f40)
131 fffffa800b8a0120 33db2912 00000005 [ 4/28/2014 18:23:27.437] thread fffffa800b8a0060
135 fffffa800931bc10 4bb26a30 00000005 [ 4/28/2014 18:24:07.436] thread fffffa800931bb50
140 fffffa800b641c10 50819077 00000005 [ 4/28/2014 18:24:15.504] thread fffffa800b641b50
141 fffffa800b8b7120 093e757d 00002710 [ 6/17/2014 10:49:15.758] thread fffffa800b8b7060
144 fffffa80096632c0 d1149ae6 00000005 [ 4/28/2014 18:27:51.216] thread fffffa8009663200
151 fffffa8009202c10 d12711bc 00000005 [ 4/28/2014 18:27:51.337] thread fffffa8009202b50
156 fffff880010685b0 P 2f53f41d 00000005 [ 4/28/2014 18:23:19.840] cng!scavengeDpcRoutine (DPC @ fffff880010685f0)
157 fffffa800b6a0060 P 69566d9d 00000008 [ 4/28/2014 18:46:25.655] nt!ExpTimerDpcRoutine (DPC @ fffffa800b6a00f8)
160 fffffa800adf05a0 51c599ca 00000006 [ 4/28/2014 18:31:27.124] thread fffffa800aceb060
163 fffffa800aea2120 2f6547aa 00000005 [ 4/28/2014 18:23:19.954] thread fffffa800aea2060
165 fffffa800902cc10 531eb353 00000005 [ 4/28/2014 18:24:19.889] thread fffffa800902cb50
fffffa800ba20c10 531eb353 00000005 [ 4/28/2014 18:24:19.889] thread fffffa800ba20b50
171 fffffa800b97d940 0000222a 00002710 [ 6/17/2014 10:49:00.250] thread fffffa800b97d880
176 fffffa800ae9a120 ab4bf318 00000005 [ 4/28/2014 18:26:47.825] thread fffffa800ae9a060
177 fffffa800ada2d88 P 2f867fd3 00000005 [ 4/28/2014 18:23:20.172] usbccgp!CheckParentIdleDpc (DPC @ fffffa800ada2de0)
182 fffff880012900e8 2f930240 00000005 [ 4/28/2014 18:23:20.253] Ntfs!NtfsVolumeCheckpointDpc (DPC @ fffff880012900a8)
192 fffffa800a20bf10 67483671 00000008 [ 4/28/2014 18:46:22.206] netbt!TimerExpiry (DPC @ fffffa800a20bed0)
fffffa8009c969d0 c36c71e3 0000009d [ 4/29/2014 12:35:31.806] afd!AfdTimeoutPoll (DPC @ fffffa8009c96990)
208 fffffa8009286c10 49fee76f 00000005 [ 4/28/2014 18:24:04.581] thread fffffa8009286b50
216 fffff8000346d720 62be96eb 00000008 [ 4/28/2014 18:46:14.593] nt!ExpTimeRefreshDpcRoutine (DPC @ fffff8000346d760)
218 fffffa800af953e8 P 2fe8183f 00000005 [ 4/28/2014 18:23:20.811] usbccgp!CheckParentIdleDpc (DPC @ fffffa800af95440)
fffffa800b8b8810 9fc93f49 00000005 [ 4/28/2014 18:26:28.514] thread fffffa800b8b8750
223 fffffa800b9cfc90 P 586a7501 00000005 [ 4/28/2014 18:24:28.774] nt!ExpTimerDpcRoutine (DPC @ fffffa800b9cfd28)
224 fffffa8009b490e0 P 2d94bfec 00000005 [ 4/28/2014 18:23:16.909] tcpip!TcpPeriodicTimeoutHandler (DPC @ fffffa8009b490a0)
fffff80003469f70 P 2d955d80 00000005 [ 4/28/2014 18:23:16.913] nt!PpmCheckStart (DPC @ fffff80003469fb0)
227 fffff880033e7c38 P 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] nt!KiScanReadyQueues (DPC @ fffff880033e7c90)
fffff88004190cb8 P 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] tunnel!TunnelTimeoutRoutine (DPC @ fffff88004190cf8)
fffffa800a817c88 P 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] Wdf01000!FxTimer::_FxTimerDpcThunk (DPC @ fffffa800a817cc8)
fffffa800a7db3e8 P 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] Wdf01000!FxTimer::_FxTimerDpcThunk (DPC @ fffffa800a7db428)
fffffa800aa39860 P 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] nvlddmkm (DPC @ fffffa800a860860)+1d00a0
fffff800034cc820 P 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] nt!IopTimerDispatch (DPC @ fffff800034cc860)
fffff800034ce740 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] nt!CcScanDpc (DPC @ fffff800034ce700)
229 fffff8000346d860 3f542b79 00600e7b [ 1/ 1/2100 03:00:00.001] nt!ExpCenturyDpcRoutine (DPC @ fffff8000346d8a0)
233 fffff8800177d670 2daaba40 00000005 [ 4/28/2014 18:23:17.053] NETIO!WfpSysTimerCallback (DPC @ fffff8800177d6b0)
fffffa8008b60db0 2daaba40 00000005 [ 4/28/2014 18:23:17.053] NETIO!WfpSysTimerCallback (DPC @ fffffa8008b60df0)
fffff880017878f0 2daaba40 00000005 [ 4/28/2014 18:23:17.053] NETIO!WfpSysTimerCallback (DPC @ fffff88001787930)
fffff8800177c5b0 2daaba40 00000005 [ 4/28/2014 18:23:17.053] NETIO!WfpSysTimerCallback (DPC @ fffff8800177c5f0)
fffff8800177b4f0 2daaba40 00000005 [ 4/28/2014 18:23:17.053] NETIO!WfpSysTimerCallback (DPC @ fffff8800177b530)
241 fffffa800a0da278 2dbe8b53 00000005 [ 4/28/2014 18:23:17.183] ndis!ndisMWakeUpDpcX (DPC @ fffffa800a0da2b8)
242 fffff800034cd680 2dbedbb0 00000005 [ 4/28/2014 18:23:17.185] nt!CmpDelayDerefKCBDpcRoutine (DPC @ fffff800034cd640)
fffff8800178a960 P 2dbfce1d 00000005 [ 4/28/2014 18:23:17.192] tcpip!IppTimeout (DPC @ fffff8800178a9a0)
244 fffffa800a19b278 2dc51b1c 00000005 [ 4/28/2014 18:23:17.226] ndis!ndisMWakeUpDpcX (DPC @ fffffa800a19b2b8)
fffffa800a1a9278 2dc51b1c 00000005 [ 4/28/2014 18:23:17.226] ndis!ndisMWakeUpDpcX (DPC @ fffffa800a1a92b8)
fffffa800a19d278 2dc51b1c 00000005 [ 4/28/2014 18:23:17.226] ndis!ndisMWakeUpDpcX (DPC @ fffffa800a19d2b8)
245 fffffa800c1fd120 ae50b1c2 00000005 [ 4/28/2014 18:26:52.890] thread fffffa800c1fd060
246 fffffa8008ab3460 P 2dc8873f 00000005 [ 4/28/2014 18:23:17.249] ataport!IdePortTickHandler (DPC @ fffffa8008ab34a0)
fffffa8008ac7460 P 2dc8873f 00000005 [ 4/28/2014 18:23:17.249] ataport!IdePortTickHandler (DPC @ fffffa8008ac74a0)
fffffa8009936460 P 2dc8873f 00000005 [ 4/28/2014 18:23:17.249] ataport!IdePortTickHandler (DPC @ fffffa80099364a0)
fffffa800993c460 P 2dc8873f 00000005 [ 4/28/2014 18:23:17.249] ataport!IdePortTickHandler (DPC @ fffffa800993c4a0)
248 fffff8800465eba0 2dce635a 00000005 [ 4/28/2014 18:23:17.287] HTTP!UlpTimeoutMonitorDpcRoutine (DPC @ fffff8800465ebe0)
252 fffffa800a2eac10 3e806229 00000005 [ 4/28/2014 18:23:45.297] thread fffffa800a2eab50
fffffa800aeae280 P a01a33e5 00000005 [ 4/28/2014 18:26:29.044] nt!ExpTimerDpcRoutine (DPC @ fffffa800aeae318)
254 fffffa800b812310 2ddb9d61 00000005 [ 4/28/2014 18:23:17.374] thread fffffa800af9f9d0
fffffa80091efc10 34ff891a 00000005 [ 4/28/2014 18:23:29.353] thread fffffa80091efb50
PROCESSOR 1 (nt!_KTIMER_TABLE fffff880009ec380)
17 fffffa8009b49248 P 352ea514 00000005 [ 4/28/2014 18:23:29.662] tcpip!TcpPeriodicTimeoutHandler (DPC @ fffffa8009b49208)
28 fffff880009eead8 P 3547d31e 00000005 [ 4/28/2014 18:23:29.827] nt!KiDpcWatchdog (DPC @ fffff880009eea98)
149 fffffa800bb25570 36674a04 00000005 [ 4/28/2014 18:23:31.711] srv!ComputeAvgQueueDepth (DPC @ fffffa800bb25530)
190 fffffa800aea5ef0 53f51e19 000000ba [ 4/29/2014 16:00:00.203] thread fffffa800aea59e0
222 fffffa800b86aef0 b923d729 0000000d [ 4/28/2014 19:24:27.024] thread fffffa8009109a00
PROCESSOR 2 (nt!_KTIMER_TABLE fffff88002f66380)
38 fffff88002f68ad8 P 355fa0e8 00000005 [ 4/28/2014 18:23:29.983] nt!KiDpcWatchdog (DPC @ fffff88002f68a98)
73 fffffa800b6e79b0 e918d990 00000008 [ 4/28/2014 18:49:59.999] thread fffffa800b6e78f0
84 fffffa800bb25890 336c4e58 00000005 [ 4/28/2014 18:23:26.711] srv!ComputeAvgQueueDepth (DPC @ fffffa800bb25850)
145 fffffa8009b493b0 P 319ac28b 00000005 [ 4/28/2014 18:23:23.660] tcpip!TcpPeriodicTimeoutHandler (DPC @ fffffa8009b49370)
173 fffffa800b9f3790 ee1737b8 0000333c [ 7/ 2/2014 22:40:51.509] thread fffffa800ba01060
PROCESSOR 3 (nt!_KTIMER_TABLE fffff88002fd7380)
3 fffffa8008df9120 45b5e30f 00000005 [ 4/28/2014 18:23:57.392] thread fffffa8008df9060
27 fffffa800b97eb90 412bb60b 00000005 [ 4/28/2014 18:23:49.776] thread fffffa800b97ead0
29 fffffa800bb78c10 2a1c7a96 80000001 [ NEVER ] thread fffffa800bb78b50
31 fffffa800ad87060 590350df 00000005 [ 4/28/2014 18:24:29.776] thread fffffa800ad91b50
38 fffffa80091dcc10 486b2226 00000005 [ 4/28/2014 18:24:01.935] thread fffffa80091dcb50
fffffa80092bec10 486b2226 00000005 [ 4/28/2014 18:24:01.935] thread fffffa80092beb50
47 fffffa800b6d8120 9e30f955 00000005 [ 4/28/2014 18:26:25.838] thread fffffa800b6d8060
48 fffff88002fd9ad8 P 35776eb2 00000005 [ 4/28/2014 18:23:30.139] nt!KiDpcWatchdog (DPC @ fffff88002fd9a98)
56 fffffa800c4f88a0 30c76e22 00000005 [ 4/28/2014 18:23:22.275] thread fffffa800c4f87e0
fffffa800b88fb80 8b3c7932 00000005 [ 4/28/2014 18:25:54.037] thread fffffa800b88d8c0
62 fffffa800ac34c30 30d55021 00000005 [ 4/28/2014 18:23:22.366]
63 fffffa800adb1d90 30d938f0 00000005 [ 4/28/2014 18:23:22.391] thread fffffa800af9f9d0
64 fffffa8008e51c10 548f1198 00000005 [ 4/28/2014 18:24:22.303] thread fffffa8008e51b50
65 fffffa800b968290 549245f4 00000005 [ 4/28/2014 18:24:22.324] thread fffffa800b9681d0
67 fffffa8009cca120 54961692 00000005 [ 4/28/2014 18:24:22.349] thread fffffa8009cca060
fffffa80092cfae0 5496b2d4 00000005 [ 4/28/2014 18:24:22.353] thread fffffa80092cfa20
68 fffffa800aeb4430 0831e0e8 00000033 [ 4/28/2014 23:51:31.035] thread fffffa800aeb4370
72 fffffa800bc58ae0 43f92106 00000005 [ 4/28/2014 18:23:54.477] thread fffffa800bc58a20
fffffa800bae76b0 43f92106 00000005 [ 4/28/2014 18:23:54.477] thread fffffa800bae75f0
78 fffffa80092fc120 81ea1322 00000005 [ 4/28/2014 18:25:38.397] thread fffffa80092fc060
83 fffffa8008d0cc70 3108d960 00000005 [ 4/28/2014 18:23:22.703] thread fffffa8008d53640
88 fffffa80090b1a60 48e18c62 00000005 [ 4/28/2014 18:24:02.711] thread fffffa80090b19a0
90 fffffa800c164c10 31189a8f 00000005 [ 4/28/2014 18:23:22.807] thread fffffa800c164b50
fffffa800bb25bb0 337acd7f 00000005 [ 4/28/2014 18:23:26.806] srv!ComputeAvgQueueDepth (DPC @ fffffa800bb25b70)
98 fffffa8008e26c10 5742f119 00000005 [ 4/28/2014 18:24:26.838] thread fffffa8008e26b50
99 fffffa8009d74100 312f1c08 00000005 [ 4/28/2014 18:23:22.954] thread fffffa8009d74040
100 fffffa8009189c10 35f43009 00000005 [ 4/28/2014 18:23:30.957] thread fffffa8009189b50
101 fffffa800924cc10 46a0949f 00000005 [ 4/28/2014 18:23:58.930] thread fffffa800924cb50
102 fffffa8009386c10 3f7d3c6d 00000005 [ 4/28/2014 18:23:46.954] thread fffffa8009386b50
104 fffffa800b9c1c10 339c5491 00000005 [ 4/28/2014 18:23:27.025] thread fffffa800b9c1b50
112 fffffa8008d53700 314d8d93 00000005 [ 4/28/2014 18:23:23.154] thread fffffa8008d53640
113 fffffa8008ed18b0 2f536689 0000138d [ 5/23/2014 14:54:43.485] thread fffffa8008ed17f0
119 fffffa800acbe1f0 315d4375 00000005 [ 4/28/2014 18:23:23.257] thread fffffa800acc8060
120 fffffa8008e26120 b9ccc468 7e309cd4 [ NEVER ] thread fffffa8008e26060
122 fffffa8009274c10 577c2a60 00000005 [ 4/28/2014 18:24:27.213] thread fffffa8009274b50
fffffa8009388c10 577c2a60 00000005 [ 4/28/2014 18:24:27.213] thread fffffa8009388b50
125 fffffa800ad1f700 316c0354 00000005 [ 4/28/2014 18:23:23.353] thread fffffa800ad26060
fffffa800af14c10 57830849 00000005 [ 4/28/2014 18:24:27.258] thread fffffa800af14b50
fffffa800927fc10 57830849 00000005 [ 4/28/2014 18:24:27.258] thread fffffa800927fb50
127 fffffa80092b5120 50631b28 00000005 [ 4/28/2014 18:24:15.304] thread fffffa80092b5060
130 fffffa80090e9390 5068d7fa 00000005 [ 4/28/2014 18:24:15.342] thread fffffa80090e92d0
140 fffffa80092ac4f0 33f0fff8 00000005 [ 4/28/2014 18:23:27.580] thread fffffa80092b4540
144 fffffa8009b49518 P 319a4d5a 00000005 [ 4/28/2014 18:23:23.657] tcpip!TcpPeriodicTimeoutHandler (DPC @ fffffa8009b494d8)
145 fffffa800babb120 319ae2e8 00000005 [ 4/28/2014 18:23:23.661] thread fffffa800babb060
153 fffffa8008be5b80 38d35bc3 00000005 [ 4/28/2014 18:23:35.775] thread fffffa8008be5ac0
160 fffffa8009662c10 55746be3 00000005 [ 4/28/2014 18:24:23.806] thread fffffa8009662b50
fffffa80090a7120 55746be3 00000005 [ 4/28/2014 18:24:23.806] thread fffffa80090a7060
fffffa800c176120 55746be3 00000005 [ 4/28/2014 18:24:23.806] thread fffffa800c176060
fffffa8009089c10 55746be3 00000005 [ 4/28/2014 18:24:23.806] thread fffffa8009089b50
165 fffffa8009c2eab0 531eb353 00000005 [ 4/28/2014 18:24:19.889] thread fffffa8009c2e9f0
fffffa800c22d120 531fcb7b 00000005 [ 4/28/2014 18:24:19.896] thread fffffa800c22d060
166 fffffa800ba2fc10 42783819 00000005 [ 4/28/2014 18:23:51.955] thread fffffa800ba2fb50
171 fffffa8009332700 44e3e9fc 00000005 [ 4/28/2014 18:23:56.016] thread fffffa8009332640
177 fffffa8009125c10 559c66d9 00000005 [ 4/28/2014 18:24:24.068] thread fffffa8009125b50
185 fffffa8009f23c10 4e8b375c 00000005 [ 4/28/2014 18:24:12.212] thread fffffa8009f23b50
fffffa8009160120 58102f2a 00000005 [ 4/28/2014 18:24:28.183] thread fffffa8009160060
197 fffffa8009c32120 582cdf56 00000005 [ 4/28/2014 18:24:28.371] thread fffffa8009c32060
fffffa8008e42120 582d5488 00000005 [ 4/28/2014 18:24:28.374] thread fffffa8008e42060
fffffa800c1bc710 582d5488 00000005 [ 4/28/2014 18:24:28.374] thread fffffa800c1bc650
fffffa80093b0c10 582d5488 00000005 [ 4/28/2014 18:24:28.374] thread fffffa80093b0b50
198 fffffa8009c44120 583013b2 00000005 [ 4/28/2014 18:24:28.392] thread fffffa8009c44060
fffffa80093ad810 583013b2 00000005 [ 4/28/2014 18:24:28.392] thread fffffa80093ad750
208 fffffa800926f120 49fee76f 00000005 [ 4/28/2014 18:24:04.581] thread fffffa800926f060
223 fffffa800b9f3c10 3255ae9c 00000005 [ 4/28/2014 18:23:24.885] thread fffffa800b9f3b50
229 fffffa800adecab0 32631c4e 00000005 [ 4/28/2014 18:23:24.973] thread fffffa800adec9f0
244 fffffa800b941780 32879525 00000005 [ 4/28/2014 18:23:25.212] thread fffffa8008ccf750
254 fffffa800b9fe9e0 3e86cf6c 00000005 [ 4/28/2014 18:23:45.339] thread fffffa800b9feb50
255 fffffa800c1cf0d0 3e88f254 00000005 [ 4/28/2014 18:23:45.353] thread fffffa800c1ce730
PROCESSOR 4 (nt!_KTIMER_TABLE fffff880009b4380)
2 fffffa8009666120 3e8fcbb3 00000005 [ 4/28/2014 18:23:45.398] thread fffffa8009666060
fffffa800b8cdb80 40f1e082 00000005 [ 4/28/2014 18:23:49.396] thread fffffa800b8cdac0
6 fffffa800b6c6310 2defe3c5 00000005 [ 4/28/2014 18:23:17.507] thread fffffa800b6bcb50
9 fffffa800af15120 32b9178d 00000005 [ 4/28/2014 18:23:25.536] thread fffffa800af15060
fffffa800911a270 3e9ff890 00000005 [ 4/28/2014 18:23:45.504] thread fffffa800911a1b0
16 fffffa8009b49680 P 2e07a406 00000005 [ 4/28/2014 18:23:17.662] tcpip!TcpPeriodicTimeoutHandler (DPC @ fffffa8009b49640)
21 fffffa80090b0c10 2e123ffd 00000005 [ 4/28/2014 18:23:17.732] thread fffffa80090b0b50
fffffa8008bcbc10 437fc503 00000005 [ 4/28/2014 18:23:53.682] thread fffffa8008bcbb50
23 fffffa8009e2ac10 379cd307 00000005 [ 4/28/2014 18:23:33.740] thread fffffa8009e2ab50
fffffa800ada4210 a59927e5 0000025c [ 5/ 1/2014 17:54:26.806] thread fffffa800ad91b50
25 fffffa800bdb5930 2e1d77d3 00000005 [ 4/28/2014 18:23:17.805] thread fffffa800bdb5870
fffff88003393cf0 2e1d77d3 00000005 [ 4/28/2014 18:23:17.805] thread fffffa8008b42660
fffffa800939f120 2e1d9ee3 00000005 [ 4/28/2014 18:23:17.806] thread fffffa800939f060
fffffa800c16cc10 2e1d9ee3 00000005 [ 4/28/2014 18:23:17.806] thread fffffa800c16cb50
fffffa800b9fd800 932c542c 00000006 [ 4/28/2014 18:33:16.849] thread fffffa800b9fd740
26 fffffa800bb25ed0 307fd1d3 00000005 [ 4/28/2014 18:23:21.805] srv!ComputeAvgQueueDepth (DPC @ fffffa800bb25e90)
35 fffffa8008b8ee70 2e340e80 00000005 [ 4/28/2014 18:23:17.953] thread fffffa8008b99040
37 fffffa800909e2b0 883f41c8 00000009 [ 4/28/2014 18:54:27.009]
39 fffffa800a2f6c10 4acd8516 00000005 [ 4/28/2014 18:24:05.935] thread fffffa800a2f6b50
43 fffffa800ac9c5d0 50ad1101 00000032 [ 4/28/2014 23:46:23.142] thread fffffa800ac9c510
45 fffffa800addd120 3c93cd33 00000005 [ 4/28/2014 18:23:42.069] thread fffffa800addd060
48 fffffa80099b0440 2e549b86 00000005 [ 4/28/2014 18:23:18.167] thread fffffa80099b0380
58 fffff880009b6ad8 P 358f3c7c 00000005 [ 4/28/2014 18:23:30.295] nt!KiDpcWatchdog (DPC @ fffff880009b6a98)
61 fffffa800ad824f0 84222a02 00000010 [ 4/28/2014 19:44:26.584] thread fffffa800ad85060
73 fffffa8009089120 43faceb6 00000005 [ 4/28/2014 18:23:54.488] thread fffffa8009089060
87 fffffa8009cdc120 bfe40617 00000005 [ 4/28/2014 18:27:22.376] thread fffffa8009cdc060
89 fffffa800c002120 2eb60e53 00000005 [ 4/28/2014 18:23:18.805] thread fffffa800c002060
94 fffffa8009203c10 48efe477 00000005 [ 4/28/2014 18:24:02.805] thread fffffa8009203b50
fffffa800b649c10 1f53fac6 00008f0d [10/27/2014 18:50:25.248] thread fffffa800b649b50
99 fffffa800bb0c350 41d713bd 00000005 [ 4/28/2014 18:23:50.899] thread fffffa800bb0c290
119 fffffa8008bd16d0 5050a453 00000005 [ 4/28/2014 18:24:15.183] thread fffffa8008bd1610
122 fffffa8009e5d100 33c6ed1a 00000005 [ 4/28/2014 18:23:27.305] thread fffffa8009e5d040
123 fffffa800acc5060 577e610c 00000005 [ 4/28/2014 18:24:27.227] thread fffffa800ac79210
125 fffffa800ac8e750 505d3f0e 00000005 [ 4/28/2014 18:24:15.266] thread fffffa800ac8e690
137 fffffa80092af120 5079a119 00000005 [ 4/28/2014 18:24:15.452] thread fffffa80092af060
157 fffffa80091c1700 42612d53 00000005 [ 4/28/2014 18:23:51.804] thread fffffa80091c1640
160 fffffa8009390120 55746be3 00000005 [ 4/28/2014 18:24:23.806] thread fffffa8009390060
fffffa80093ca120 55746be3 00000005 [ 4/28/2014 18:24:23.806] thread fffffa80093ca060
fffffa800afa3640 557492f4 00000005 [ 4/28/2014 18:24:23.807] thread fffffa800afa3580
163 fffffa800b6739e0 2f6547aa 00000005 [ 4/28/2014 18:23:19.954] thread fffffa800b673920
fffffa8008dbec10 2f656eba 00000005 [ 4/28/2014 18:23:19.955] thread fffffa8008dbeb50
174 fffffa8008caf840 d3bdf2f0 00000005 [ 4/28/2014 18:27:55.681] thread fffffa8008caf780
178 fffffa800a79b6c0 2f884ed3 00000005 [ 4/28/2014 18:23:20.183] thread fffffa800a79b600
fffffa80093c0120 2f884ed3 00000005 [ 4/28/2014 18:23:20.183] thread fffffa80093c0060
183 fffffa8009396750 429f96cd 00000005 [ 4/28/2014 18:23:52.213] thread fffffa8009396690
223 fffffa800ade5120 2d93d5a5 00000005 [ 4/28/2014 18:23:16.903] thread fffffa800ade5060
224 fffffa8008e30120 2d942393 00000005 [ 4/28/2014 18:23:16.905] thread fffffa8008e30060
227 fffffa800baa3310 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] thread fffffa800b8d8b50
fffffa8008bbe3f0 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] thread fffffa8008bbfb50
fffffa8008b8fe70 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] thread fffffa8008b99b50
fffffa8008bb0770 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] thread fffffa8008bb1040
fffffa8008bb1e70 2d9b7800 00000005 [ 4/28/2014 18:23:16.953] thread fffffa8008bb1790
228 fffffa800b956120 3000b4e6 00000005 [ 4/28/2014 18:23:20.972] thread fffffa800b956060
248 fffffa800bac5060 2dcebf8d 00000005 [ 4/28/2014 18:23:17.290] thread fffffa800bab9060
253 fffffa800a47fc18 P 2dd9c9b4 00000005 [ 4/28/2014 18:23:17.362] thread fffffa800a489b50
PROCESSOR 5 (nt!_KTIMER_TABLE fffff8800308a380)
17 fffffa8009b497e8 P 352de1c2 00000005 [ 4/28/2014 18:23:29.657] tcpip!TcpPeriodicTimeoutHandler (DPC @ fffffa8009b497a8)
68 fffff8800308cad8 P 35a70a46 00000005 [ 4/28/2014 18:23:30.451] nt!KiDpcWatchdog (DPC @ fffff8800308ca98)
112 fffffa800c125120 1224016b 00000007 [ 4/28/2014 18:36:49.866] thread fffffa800c125060
149 fffffa800bb261f0 36674a04 00000005 [ 4/28/2014 18:23:31.711] srv!ComputeAvgQueueDepth (DPC @ fffffa800bb261b0)
PROCESSOR 6 (nt!_KTIMER_TABLE fffff880030fb380)
1 fffffa80092fec10 3e8cbe68 00000005 [ 4/28/2014 18:23:45.378] thread fffffa80092feb50
5 fffffa8008d38c10 3e97bb11 00000005 [ 4/28/2014 18:23:45.450] thread fffffa8008d38b50
14 fffffa800ae8d380 611528e0 00000006 [ 4/28/2014 18:31:52.812] thread fffffa800ae8d2c0
fffffa800aec4c60 4d1dad21 000000c9 [ 4/29/2014 17:47:11.175] thread fffffa800aedab50
23 fffffa800b73d120 4d0a3708 00000005 [ 4/28/2014 18:24:09.689] thread fffffa800b73d060
fffffa800ac792d0 60153754 00000005 [ 4/28/2014 18:24:41.637] thread fffffa800ac79210
37 fffffa800bb26510 309aad37 00000005 [ 4/28/2014 18:23:21.981] srv!ComputeAvgQueueDepth (DPC @ fffffa800bb264d0)
42 fffffa800918c600 30a609bc 00000005 [ 4/28/2014 18:23:22.056] thread fffffa800918c540
55 fffffa800ae2fc10 43cf8c4a 00000005 [ 4/28/2014 18:23:54.205] thread fffffa800ae2fb50
59 fffffa8009118ae0 a0aed3ec 00000005 [ 4/28/2014 18:26:30.018] thread fffffa8009c32af0
62 fffffa800c17c660 3a5afb82 00000005 [ 4/28/2014 18:23:38.341] thread fffffa80090d6060
72 fffffa8009c60060 3a73b3ff 00000005 [ 4/28/2014 18:23:38.503] thread fffffa8009293060
77 fffffa8009348c10 30f95b14 00000005 [ 4/28/2014 18:23:22.602] thread fffffa8009348b50
78 fffff880030fdad8 P 35bed810 00000005 [ 4/28/2014 18:23:30.607] nt!KiDpcWatchdog (DPC @ fffff880030fda98)
81 fffffa8008c70a00 3f4b2f31 00000005 [ 4/28/2014 18:23:46.626] thread fffffa8008c70940
84 fffffa800ae62120 598248f7 00000005 [ 4/28/2014 18:24:30.608] thread fffffa800ae62060
89 fffffa800932bc10 bfe8c119 00000005 [ 4/28/2014 18:27:22.407] thread fffffa800932bb50
99 fffffa8008d42460 312eff00 00000005 [ 4/28/2014 18:23:22.953] thread fffffa8008d53b50
fffffa8009181100 312f1c08 00000005 [ 4/28/2014 18:23:22.954] thread fffffa8009181040
101 fffffa80093bec10 46a0949f 00000005 [ 4/28/2014 18:23:58.930] thread fffffa80093beb50
130 fffffa8009215c10 5068d7fa 00000005 [ 4/28/2014 18:24:15.342] thread fffffa8009215b50
132 fffffa800b6439f0 691ac426 00000008 [ 4/28/2014 18:46:25.264]
138 fffffa8009270c10 46f6a521 00000005 [ 4/28/2014 18:23:59.494] thread fffffa8009270b50
fffffa8008d11900 c2f61a59 0000000e [ 4/28/2014 19:31:52.999] thread fffffa8008d11840
140 fffffa8009249700 50819077 00000005 [ 4/28/2014 18:24:15.504] thread fffffa8009249640
149 fffffa800ae6b120 44b0daf0 00000005 [ 4/28/2014 18:23:55.681] thread fffffa800ae6b060
161 fffffa800adbc9e0 98bdd30e 00000062 [ 4/29/2014 05:31:59.891] thread fffffa800adbcb50
163 fffffa800ad07420 2f6547aa 00000005 [ 4/28/2014 18:23:19.954] thread fffffa800ad07360
fffffa8009030c10 2f6547aa 00000005 [ 4/28/2014 18:23:19.954] thread fffffa8009030b50
fffffa80094f4460 2f656eba 00000005 [ 4/28/2014 18:23:19.955] thread fffffa80094f43a0
fffffa80091c1c10 2f656eba 00000005 [ 4/28/2014 18:23:19.955] thread fffffa80091c1b50
164 fffffa8008d53c10 368c644c 00000005 [ 4/28/2014 18:23:31.954] thread fffffa8008d53b50
184 fffffa800b842640 534b1b29 00000005 [ 4/28/2014 18:24:20.180] thread fffffa800b842580
203 fffffa800917e120 479160c5 00000005 [ 4/28/2014 18:24:00.508] thread fffffa800917e060
205 fffffa8008e2b460 537d0154 00000005 [ 4/28/2014 18:24:20.507] thread fffffa8008e2b3a0
232 fffffa8009125120 398ee652 00000005 [ 4/28/2014 18:23:37.004] thread fffffa8009125060
fffffa800b6d3600 8b5bd22e 00000008 [ 4/28/2014 18:47:22.732] thread fffffa800b6d3540
PROCESSOR 7 (nt!_KTIMER_TABLE fffff8800316c380)
144 fffffa8009b49ab8 P 2cd5877a 00000005 [ 4/28/2014 18:23:15.656] tcpip!TcpPeriodicTimeoutHandler (DPC @ fffffa8009b49a78)
150 fffff8800316ead8 P 2ce5d45a 00000005 [ 4/28/2014 18:23:15.763] nt!KiDpcWatchdog (DPC @ fffff8800316ea98)
211 fffffa800bb26830 2d765700 00000005 [ 4/28/2014 18:23:16.710] srv!ComputeAvgQueueDepth (DPC @ fffffa800bb267f0)
Total Timers: [COLOR=#ff0000]289[/COLOR], Maximum List: 7
Code:
7: kd> k
Child-SP RetAddr Call Site
fffff880`03192138 fffff800`03216245 hal!HalpPciReadMmConfigUlong+0x7
fffff880`03192140 fffff800`03216b32 hal!HalpPCIPerformConfigAccess+0x55
fffff880`03192170 fffff800`0321602c hal!HalpPciAccessMmConfigSpace+0x196
fffff880`031921c0 fffff800`03215e06 hal!HalpPCIConfig+0x9c
fffff880`03192230 fffff800`03215986 hal!HalpReadPCIConfig+0x5e
fffff880`03192270 fffff800`03216c12 hal!HalpGetPCIData+0x8e
fffff880`03192340 fffff880`0f1f74b8 hal!HalGetBusDataByOffset+0x86
fffff880`03192430 fffff880`0f22f76a nvlddmkm+0x1cf4b8
fffff880`03192470 fffff880`0f1c56de nvlddmkm+0x20776a
fffff880`031924d0 fffff880`0f1f2efa nvlddmkm+0x19d6de
fffff880`03192540 fffff880`0f23d88b nvlddmkm+0x1caefa
fffff880`03192570 fffff880`0f396f72 nvlddmkm+0x21588b
fffff880`031925d0 fffff880`0f397507 nvlddmkm+0x36ef72
fffff880`03192620 fffff880`0fae60a4 nvlddmkm+0x36f507
fffff880`03192670 fffff880`0f2b92df nvlddmkm!nvDumpConfig+0x443ccc
fffff880`03192710 fffff880`0f400c01 nvlddmkm+0x2912df
fffff880`03192740 fffff880`0f41b656 nvlddmkm+0x3d8c01
fffff880`031927a0 fffff880`0f41ccb7 nvlddmkm+0x3f3656
fffff880`03192800 fffff880`0f2c16f1 nvlddmkm+0x3f4cb7
fffff880`03192840 fffff880`0f2c1ca5 nvlddmkm+0x2996f1
fffff880`03192890 fffff880`0f41c855 nvlddmkm+0x299ca5
fffff880`03192920 fffff880`0f40395d nvlddmkm+0x3f4855
fffff880`03192960 fffff880`0f4033fc nvlddmkm+0x3db95d
fffff880`03192990 fffff880`0f4035f0 nvlddmkm+0x3db3fc
fffff880`031929e0 fffff880`0f40404a nvlddmkm+0x3db5f0
fffff880`03192a20 fffff880`0f4944c7 nvlddmkm+0x3dc04a
fffff880`03192a50 fffff880`0f1c8c91 nvlddmkm+0x46c4c7
fffff880`03192a80 fffff880`0f0ef7b6 nvlddmkm+0x1a0c91
fffff880`03192ba0 fffff880`0f14d9bb nvlddmkm+0xc77b6
fffff880`03192c40 fffff800`032d230c nvlddmkm+0x1259bb
fffff880`03192cd0 fffff800`032bf8ca nt!KiRetireDpcList+0x1bc
fffff880`03192d80 00000000`00000000 nt!KiIdleLoop+0x5a
On processor #7, it looks like the nVidia video driver is in a loop, and then we have some Hardware Abstraction Layer calls, starting with what looks like a call to list all the PCI (maybe e as well) devices on the system? Possibly trying to recovery nvlddmkm... unsure.
1. Ensure you have the latest video card drivers. If you are already on the latest video card drivers, uninstall and install a version or a few versions behind the latest to ensure it's not a latest driver only issue. If you have already experimented with the latest video card driver and many previous versions, please give the beta driver for your card a try.
2. Remove and replace Avira with Microsoft Security Essentials for temporary troubleshooting purposes as it may be causing conflicts:
Avira removal - How do I uninstall my Avira product?
MSE - Microsoft Security Essentials - Microsoft Windows
3. if you crash after the above, please enable Driver Verifier:
Driver Verifier:
What is Driver Verifier?
Driver Verifier is included in Windows 8/8.1, 7, Windows Server 2008 R2, Windows Vista, Windows Server 2008, Windows 2000, Windows XP, and Windows Server 2003 to promote stability and reliability; you can use this tool to troubleshoot driver issues. Windows kernel-mode components can cause system corruption or system failures as a result of an improperly written driver, such as an earlier version of a Windows Driver Model (WDM) driver.
Essentially, if there's a 3rd party driver believed to be at issue, enabling Driver Verifier will help flush out the rogue driver if it detects a violation.
Before enabling Driver Verifier, it is recommended to create a System Restore Point:
Vista - START | type rstrui - create a restore point
Windows 7 - START | type create | select "Create a Restore Point"
Windows 8/8.1 -
Restore Point - Create in Windows 8
How to enable Driver Verifier:
Start > type "verifier" without the quotes > Select the following options -
1. Select - "Create custom settings (for code developers)"
2. Select - "Select individual settings from a full list"
3. Check the following boxes -
- Special Pool
- Pool Tracking
- Force IRQL Checking
- Deadlock Detection
- Security Checks (Windows 7 & 8)
- DDI compliance checking (Windows 8)
- Miscellaneous Checks
4. Select - "Select driver names from a list"
5. Click on the "Provider" tab. This will sort all of the drivers by the provider.
6. Check EVERY box that is
NOT provided by Microsoft / Microsoft Corporation.
7. Click on Finish.
8. Restart.
Important information regarding Driver Verifier:
- If Driver Verifier finds a violation, the system will BSOD. To expand on this a bit more for the interested, specifically what Driver Verifier actually does is it looks for any driver making illegal function calls, causing memory leaks, etc. When and/if this happens, system corruption occurs if allowed to continue. When Driver Verifier is enabled, it is monitoring
all 3rd party drivers (as we have it set that way) and when it catches a driver attempting to do this, it will quickly flag that driver as being a troublemaker, and bring down the system safely before any corruption can occur.
- After enabling Driver Verifier and restarting the system, depending on the culprit, if for example the driver is on start-up, you may not be able to get back into normal Windows because Driver Verifier will detect it in violation almost straight away, and as stated above, that will cause / force a BSOD.
If this happens, do
not panic, do the following:
- Boot into Safe Mode by repeatedly tapping the F8 key during boot-up.
- Once in Safe Mode - Start > Search > type "cmd" without the quotes.
- To turn off Driver Verifier, type in cmd "verifier /reset" without the quotes.
・ Restart and boot into normal Windows.
If your OS became corrupt or you cannot boot into Windows after disabling verifier via Safe Mode:
- Boot into Safe Mode by repeatedly tapping the F8 key during boot-up.
- Once in Safe Mode - Start > type "system restore" without the quotes.
- Choose the restore point you created earlier.
-- Note that Safe Mode for Windows 8/8.1 is a bit different, and you may need to try different methods:
5 Ways to Boot into Safe Mode in Windows 8 & Windows 8.1
How long should I keep Driver Verifier enabled for?
I recommend keeping it enabled for at least 24 hours. If you don't BSOD by then, disable Driver Verifier. I will usually say whether or not I'd like for you to keep it enabled any longer.
My system BSOD'd with Driver Verifier enabled, where can I find the crash dumps?
They will be located in %systemroot%\Minidump
Any other questions can most likely be answered by this article:
Using Driver Verifier to identify issues with Windows drivers for advanced users
Regards,
Patrick