BLUE SCREEN UNEXPECTED_KERNEL_MODE_TRAP (7f) when launching a game from the Xbox app

T

Trivagoski

I downloaded the game Wreckfest from the xbox app with gamepass.

Every time I try to launch it (No matter from where or how) windows lags, frezees and crash with BSOD and UNEXPECTED_KERNEL_MODE_TRAP (7f).


Crash Dump with msinfo:



WinDbg bugchek analysis:



UNEXPECTED_KERNEL_MODE_TRAP (7f)
This means a trap occurred in kernel mode, and it's a trap of a kind
that the kernel isn't allowed to have/catch (bound trap) or that
is always instant death (double fault). The first number in the
bugcheck params is the number of the trap (8 = double fault, etc)
Consult an Intel x86 family manual to learn more about what these
traps are. Here is a *portion* of those codes:
If kv shows a taskGate
use .tss on the part before the colon, then kv.
Else if kv shows a trapframe
use .trap on that value
Else
.trap on the appropriate frame will show where the trap was taken
(on x86, this will be the ebp that goes with the procedure KiTrap)
Endif
kb will then show the corrected stack.
Arguments:
Arg1: 0000000000000008, EXCEPTION_DOUBLE_FAULT
Arg2: ffffd50012f0b090
Arg3: ffff9f84c22a1fd0
Arg4: fffff80147c4e6b8


dps gives 3 drivers:

nvlddmkm.sys

gameflt.sys

WdFilter.sys


Also, BlueScreenView gives ntoskrnl.exe as the cause of the BSOD

Help

Continue reading...
 
Back
Top Bottom