BSOD DPC and Thread Exception

Hi Jarlotee & Welcome to the forums ^_^

I have analysed your dump files and below has been provided an analysis of the same for informative purposes :-

SYSTEM_THREAD_EXCEPTION_NOT_HANDLED_M (1000007e)
This means a hard coded breakpoint or assertion was hit, but this system was booted /NODEBUG. This is not supposed to happen as developers should never have hardcoded breakpoints in retail code, but ...
Code:
4: kd> .cxr 0xffffd000213adfa0;r
rax=0000000000000000 rbx=fffff801d96ed2a0 rcx=0000000000000000
rdx=ffffd000213aea58 rsi=0000000000000000 rdi=0000000000001000
rip=fffff801d96dbd7b rsp=ffffd000213ae9d8 rbp=ffffe001db0550a8
 r8=ffffd000213aea60  r9=0000000000000000 r10=0000000000000000
r11=ffffd000213ae920 r12=ffffe001d818b3e0 r13=ffffe001db0570d8
r14=ffffe001db057260 r15=0000000000000000
iopl=0         nv up ei ng nz na pe nc
cs=0010  ss=0018  ds=002b  es=002b  fs=0053  gs=002b             efl=00010282
bckd+0x1d7b:
fffff801`d96dbd7b 448a09          mov     r9b,byte ptr [rcx] ds:002b:00000000`00000000=??
Last set context:
rax=0000000000000000 rbx=fffff801d96ed2a0 rcx=0000000000000000
rdx=ffffd000213aea58 rsi=0000000000000000 rdi=0000000000001000
rip=fffff801d96dbd7b rsp=ffffd000213ae9d8 rbp=ffffe001db0550a8
 r8=ffffd000213aea60  r9=0000000000000000 r10=0000000000000000
r11=ffffd000213ae920 r12=ffffe001d818b3e0 r13=ffffe001db0570d8
r14=ffffe001db057260 r15=0000000000000000
iopl=0         nv up ei ng nz na pe nc
cs=0010  ss=0018  ds=002b  es=002b  fs=0053  gs=002b             efl=00010282
bckd+0x1d7b:
fffff801`d96dbd7b 448a09          mov     [COLOR=#008000]r9b[/COLOR],by[COLOR=#008000][/COLOR]te ptr [[COLOR=#0000FF]rcx[/COLOR]] ds:002b:[COLOR=#FF0000]00000000`00000000[/COLOR]=??
Code:
DEFAULT_BUCKET_ID:  NULL_DEREFERENCE
As we can see from the above dump analysis, the driver "BCKD.sys" is moving a NULL byte pointer from RCX Register to R9B register or we can say that it is trying to dereference (Check Default Bucket ID) NULL value which is not allowed.


DPC_WATCHDOG_VIOLATION (133)
The DPC watchdog detected a prolonged run time at an IRQL of DISPATCH_LEVEL or above.
Code:
5: kd> .bugcheck
Bugcheck code 00000133
Arguments 00000000`00000001 00000000`0000[B][COLOR=#0000FF]1e00[/COLOR][/B] 00000000`00000000 00000000`00000000
The driver was running for 7680 ticks without response which caused the DPC to crash the system.
Code:
5: kd> knL
 # Child-SP          RetAddr           Call Site
00 ffffd000`d16f8c88 fffff800`51b6c02e nt!KeBugCheckEx
01 ffffd000`d16f8c90 fffff800`51a3c165 nt! ?? ::FNODOBFM::`string'+0xb97e
02 ffffd000`d16f8d20 fffff800`5219f67f nt!KeClockInterruptNotify+0x785
03 ffffd000`d16f8f40 fffff800`51ae276a hal!HalpTimerClockInterrupt+0x4f
04 ffffd000`d16f8f70 fffff800`51b5162a nt!KiCallInterruptServiceRoutine+0x8a
05 ffffd000`d16f8fb0 fffff800`51b51a0f nt!KiInterruptSubDispatchNoLockNoEtw+0xea
06 ffffd000`211c8050 fffff800`51aafbcc nt!KiInterruptDispatchLBControl+0x11f
07 ffffd000`211c81e0 fffff800`51be1358 nt!KxWaitForLockOwnerShipWithIrql+0x3c
08 ffffd000`211c8210 fffff801`9ffba180 nt!KiAcquireQueuedSpinLockInstrumented+0x68
09 ffffd000`211c8260 ffffe000`aee2ac38 [B][U][COLOR=#FF0000]a[U]sw[/U]Stm[/COLOR]+[/U][/B]0x2180
0a ffffd000`211c8268 ffffe000`aee2abe0 0xffffe000`aee2ac38
0b ffffd000`211c8270 ffffe000`aee4ee40 0xffffe000`aee2abe0
0c ffffd000`211c8278 fffff801`9ffc154e 0xffffe000`aee4ee40
0d ffffd000`211c8280 ffffe000`aee2ac38 aswStm+0x954e
0e ffffd000`211c8288 00000000`00000000 0xffffe000`aee2ac38
We can see from the above stack that the Avast Driver acquired a lock on a resource and then an interrupt was called in but it did not respond which caused the bugcheck.

Kindly follow the below steps -

  1. Please remove K9 Parental Web Filter.
  2. If the crashes still continue, kindly remove Avast using this **TOOL**.
  3. Kindly update Intel WatchDog Timer. See if you find it here (Probably a part of the Chipset Software) - Motherboard - SABERTOOTH X79 - ASUS


Let me know how it goes ^_^

-Pranav
 

My Computer

System One

  • OS
    Windows 8.1 Industry Pro B-)
    Computer type
    Laptop
    System Manufacturer/Model
    Toshiba
    CPU
    Core I5 2430M @ 2.4GHz
    Memory
    8 GB DDR3 @ 1600MHz Dual Channel ^_^
    Graphics Card(s)
    Intel HD 3000 B-)
    Screen Resolution
    1366x768
    Hard Drives
    Toshiba 500 GB
    Browser
    Google Chrome
    Antivirus
    Windows Defender & Common Sense!
Back
Top