Question unexpected kernel mode trap looping

PassMark

Distinguished
Crash dump showed this:
UNEXPECTED_KERNEL_MODE_TRAP (7f)
Arg1: 0000000000000008, EXCEPTION_DOUBLE_FAULT
STACK_OVERFLOW: Stack Limit: ffffa70340df2000

So it seems your kernel ran out of stack space and faulted. The fault handling code then tried to push more data onto the stack which resulted in a double fault BSOD.

The kernel doesn't have much stack space (maybe 12KB in this case). In my opinion it is crazy to make it so small on modern hardware, but here we are.

Some more technical background detail is here
https://www.osronline.com/article.cfm^article=347.htm

Only the kernel itself and device driver can use the kernel stack. From your crash dump we can see this usage (list below) sorted by lots of usage to not much usage.

So something called bindflt & FLTMGR are using most of the stack. You need to add up all the FLTMGR!* entries to get a feel for the total usage. FLTMGR is surely from the fltmgr.sys device driver. This is a Windows driver that contains functions to help filtering file system access. Doesn't help much however.

Looking at the stack trace (also below), we see the process that started this mess was, "amdkmdag". AMD kernel mode driver. So this is probably the best hint. People are saying this can have incompatibilities with some video card drivers. So maybe one or the other got updated last night. Can you boot into safe mode and update all the AMD drivers to the latest releases.

Stack Usage By Function
=================================================================================
Size Count Module
0x000003A0 1 bindflt!BfPreCreate
0x00000300 6 FLTMGR!FltpCreateFileNameInformation
0x000002C0 4 FLTMGR!FltpGetFileNameInformation
0x00000270 2 nt!HalpInterruptSendIpi
0x00000240 4 FLTMGR!FltGetFileNameInformation
0x00000230 1 nt!MiClearNonPagedPtes
0x00000210 3 FLTMGR!FltpGetFileNameInformation
0x00000208 1 nt!KiSystemServiceCopyEnd
0x000001E0 6 FLTMGR!FltvGenerateFileName
0x000001D0 1 nt!ObpLookupObjectName
0x00000170 1 nt!IopParseDevice
0x00000130 1 nt!ObOpenObjectByNameEx
0x00000120 1 FLTMGR!FltpPerformPreCallbacksWorker
0x00000120 1 FLTMGR!FltvPreOperation
0x00000110 1 nt!KiIpiSendRequest
0x00000100 4 FLTMGR!HandleStreamListNotSupported
0x00000100 2 FLTMGR!FltGetFileNameInformationUnsafe
0x000000F0 1 VerifierExt!ZwCreateFile_wrapper
0x000000E0 1 nt!ExFreeHeapPool
0x000000D0 1 nt!RtlpHpSegMgrCommit
0x000000C0 4 FLTMGR!FltvGetFileNameInformation
0x000000C0 3 FLTMGR!FltvGetFileNameInformationUnsafe
0x000000C0 1 nt!IopCreateFile
0x000000C0 1 bindflt!BfGenerateFileNameCallback
0x000000C0 1 bindflt!BfGetPreCreateFileName
0x000000B0 1 FLTMGR!FltpCreate
0x000000A0 1 nt!KeFlushMultipleRangeTb
0x000000A0 1 nt!RtlpHpSegPageRangeCommit
0x00000090 1 nt!NtCreateFile
0x00000080 1 FLTMGR!FltGetFileNameInformationUnsafe
0x00000080 1 FLTMGR!FltpGetFileNameFromFileObject
0x00000080 1 FLTMGR!FltpCreateFileNameInformation
0x00000080 1 nt!RtlpHpSegPageRangeCoalesce
0x00000080 1 nt!MmFreePoolMemory
0x00000080 1 nt!VfZwCreateFile
0x00000070 1 nt!RtlpHpSegPageRangeShrink
0x00000070 1 nt!IopParseFile
0x00000050 1 FLTMGR!FltpPassThroughInternal
0x00000050 1 nt!IoCallDriverWithTracing
0x00000050 1 nt!HalRequestIpiSpecifyVector
0x00000050 1 nt!RtlpHpFreeHeap
0x00000050 1 nt!ExpFreeHeapSpecialPool
0x00000040 1 nt!RtlpHpSegFree
0x00000040 1 nt!RtlpHpFreeVA
0x00000040 1 nt!IopfCallDriver
0x00000040 1 nt!IofCallDriver
0x00000040 1 nt!IovCallDriver
0x00000040 1 VerifierExt!ExFreePool_wrapper
0x00000030 1 FLTMGR!FltpFreeNameGenerationContext
0x00000030 1 nt!MiFlushTbList
0x00000030 1 nt!RtlpHpEnvFreeVA
0x00000030 1 nt!MiDeleteNonPagedPoolTail
0x00000030 1 nt!ExFreePool
0x00000030 1 nt!VerifierExFreePool
0x00000030 1 luafv!LuafvGenerateFileName
0x00000030 1 wcifs!WcGenerateFileName
0x00000030 1 wcifs!WcGenerateFileName
0x00000008 1 nt!KiServiceLinkage
0x00000008 1 gameflt
0x00000008 1 gameflt

10: kd> kF
# Memory Child-SP RetAddr Call Site
00 fffffb01`25a0f000 fffff807`4c05c2ae nt!HalpInterruptSendIpi+0x39
01 270 fffffb01`25a0f270 fffff807`4c059acb nt!HalRequestIpiSpecifyVector+0x7e
02 50 fffffb01`25a0f2c0 fffff807`4c09939b nt!KiIpiSendRequest+0x38b
03 110 fffffb01`25a0f3d0 fffff807`4c0991e8 nt!KeFlushMultipleRangeTb+0x12b
04 a0 fffffb01`25a0f470 fffff807`4c1398b9 nt!MiFlushTbList+0x88
05 30 fffffb01`25a0f4a0 fffff807`4c139411 nt!MiDeleteNonPagedPoolTail+0x19
06 30 fffffb01`25a0f4d0 fffff807`4c0ae67e nt!MiClearNonPagedPtes+0x181
07 230 fffffb01`25a0f700 fffff807`4c0ae6e6 nt!MmFreePoolMemory+0x1aa
08 80 fffffb01`25a0f780 fffff807`4c0ae752 nt!RtlpHpEnvFreeVA+0x12
09 30 fffffb01`25a0f7b0 fffff807`4c0a6f83 nt!RtlpHpFreeVA+0x3a
0a 40 fffffb01`25a0f7f0 fffff807`4c0a6c2e nt!RtlpHpSegMgrCommit+0x1e3
0b d0 fffffb01`25a0f8c0 fffff807`4c0a7a91 nt!RtlpHpSegPageRangeCommit+0x1ee
0c a0 fffffb01`25a0f960 fffff807`4c0a752b nt!RtlpHpSegPageRangeCoalesce+0x1b1
0d 80 fffffb01`25a0f9e0 fffff807`4c0aa990 nt!RtlpHpSegPageRangeShrink+0xeb
0e 70 fffffb01`25a0fa50 fffff807`4c0ad39c nt!RtlpHpSegFree+0x9c
0f 40 fffffb01`25a0fa90 fffff807`4c3ce5a1 nt!RtlpHpFreeHeap+0xac
10 50 fffffb01`25a0fae0 fffff807`4c23f9b0 nt!ExpFreeHeapSpecialPool+0x221
11 50 fffffb01`25a0fb30 fffff807`4c7ca0b9 nt!ExFreeHeapPool+0x1f9260
12 e0 fffffb01`25a0fc10 fffff807`4d1c8be5 nt!ExFreePool+0x9
13 30 fffffb01`25a0fc40 fffff807`4c7eb1db VerifierExt!ExFreePool_wrapper+0x135
14 40 fffffb01`25a0fc80 fffff807`4bb322b3 nt!VerifierExFreePool+0x4b
15 30 fffffb01`25a0fcb0 fffff807`4bb6922f FLTMGR!FltpFreeNameGenerationContext+0xc7
16 30 fffffb01`25a0fce0 fffff807`4bb90753 FLTMGR!FltGetFileNameInformationUnsafe+0x9f
17 80 fffffb01`25a0fd60 fffff80c`fb884e9c FLTMGR!FltvGetFileNameInformationUnsafe+0x63
18 40 fffffb01`25a0fda0 ffffb388`c7c54f00 gameflt+0x14e9c
19 8 fffffb01`25a0fda8 00000000`00000102 0xffffb388`c7c54f00
1a 8 fffffb01`25a0fdb0 ffffb388`bea3ce90 0x102
1b 8 fffffb01`25a0fdb8 ffffb388`9f4bebc0 0xffffb388`bea3ce90
1c 8 fffffb01`25a0fdc0 ffffb388`9f4bebc0 0xffffb388`9f4bebc0
1d 8 fffffb01`25a0fdc8 fffff807`4bb90500 0xffffb388`9f4bebc0
1e 8 fffffb01`25a0fdd0 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
1f 50 fffffb01`25a0fe20 fffff807`4bb3366f FLTMGR!FltpCreateFileNameInformation+0x1ae
20 80 fffffb01`25a0fea0 fffff807`4bb6921a FLTMGR!FltpGetFileNameInformation+0x6ef
21 b0 fffffb01`25a0ff50 fffff807`4bb90753 FLTMGR!FltGetFileNameInformationUnsafe+0x8a
22 80 fffffb01`25a0ffd0 fffff80d`1125d9a8 FLTMGR!FltvGetFileNameInformationUnsafe+0x63
23 40 fffffb01`25a10010 fffff807`4bb90500 wcifs!WcGenerateFileName+0x38
24 30 fffffb01`25a10040 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
25 50 fffffb01`25a10090 fffff807`4bb3366f FLTMGR!FltpCreateFileNameInformation+0x1ae
26 80 fffffb01`25a10110 fffff807`4bb6921a FLTMGR!FltpGetFileNameInformation+0x6ef
27 b0 fffffb01`25a101c0 fffff807`4bb90753 FLTMGR!FltGetFileNameInformationUnsafe+0x8a
28 80 fffffb01`25a10240 fffff80d`1132e26f FLTMGR!FltvGetFileNameInformationUnsafe+0x63
29 40 fffffb01`25a10280 fffff807`4bb90500 bindflt!BfGenerateFileNameCallback+0x4df
2a c0 fffffb01`25a10340 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
2b 50 fffffb01`25a10390 fffff807`4bb3366f FLTMGR!FltpCreateFileNameInformation+0x1ae
2c 80 fffffb01`25a10410 fffff807`4bb693e9 FLTMGR!FltpGetFileNameInformation+0x6ef
2d b0 fffffb01`25a104c0 fffff807`4bb69c32 FLTMGR!FltpGetFileNameFromFileObject+0x189
2e 80 fffffb01`25a10540 fffff807`4bb32504 FLTMGR!FltpCreateFileNameInformation+0x132
2f 80 fffffb01`25a105c0 fffff807`4bb3329b FLTMGR!HandleStreamListNotSupported+0x134
30 40 fffffb01`25a10600 fffff807`4bb34211 FLTMGR!FltpGetFileNameInformation+0x31b
31 b0 fffffb01`25a106b0 fffff807`4bb8d4a6 FLTMGR!FltGetFileNameInformation+0x101
32 90 fffffb01`25a10740 fffff80d`11210750 FLTMGR!FltvGetFileNameInformation+0x56
33 30 fffffb01`25a10770 fffff807`4bb90500 luafv!LuafvGenerateFileName+0x60
34 30 fffffb01`25a107a0 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
35 50 fffffb01`25a107f0 fffff807`4bb32504 FLTMGR!FltpCreateFileNameInformation+0x1ae
36 80 fffffb01`25a10870 fffff807`4bb3329b FLTMGR!HandleStreamListNotSupported+0x134
37 40 fffffb01`25a108b0 fffff807`4bb34211 FLTMGR!FltpGetFileNameInformation+0x31b
38 b0 fffffb01`25a10960 fffff807`4bb8d4a6 FLTMGR!FltGetFileNameInformation+0x101
39 90 fffffb01`25a109f0 fffff80c`fb884e86 FLTMGR!FltvGetFileNameInformation+0x56
3a 30 fffffb01`25a10a20 ffffb388`c7fc4f00 gameflt+0x14e86
3b 8 fffffb01`25a10a28 00000000`00000102 0xffffb388`c7fc4f00
3c 8 fffffb01`25a10a30 ffffb388`c1b44710 0x102
3d 8 fffffb01`25a10a38 ffffb388`c7fb8fb0 0xffffb388`c1b44710
3e 8 fffffb01`25a10a40 ffffb388`9f4bebc0 0xffffb388`c7fb8fb0
3f 8 fffffb01`25a10a48 fffff807`4bb90500 0xffffb388`9f4bebc0
40 8 fffffb01`25a10a50 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
41 50 fffffb01`25a10aa0 fffff807`4bb32504 FLTMGR!FltpCreateFileNameInformation+0x1ae
42 80 fffffb01`25a10b20 fffff807`4bb3329b FLTMGR!HandleStreamListNotSupported+0x134
43 40 fffffb01`25a10b60 fffff807`4bb34211 FLTMGR!FltpGetFileNameInformation+0x31b
44 b0 fffffb01`25a10c10 fffff807`4bb8d4a6 FLTMGR!FltGetFileNameInformation+0x101
45 90 fffffb01`25a10ca0 fffff80d`1125d9c0 FLTMGR!FltvGetFileNameInformation+0x56
46 30 fffffb01`25a10cd0 fffff807`4bb90500 wcifs!WcGenerateFileName+0x50
47 30 fffffb01`25a10d00 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
48 50 fffffb01`25a10d50 fffff807`4bb32504 FLTMGR!FltpCreateFileNameInformation+0x1ae
49 80 fffffb01`25a10dd0 fffff807`4bb3329b FLTMGR!HandleStreamListNotSupported+0x134
4a 40 fffffb01`25a10e10 fffff807`4bb34211 FLTMGR!FltpGetFileNameInformation+0x31b
4b b0 fffffb01`25a10ec0 fffff807`4bb8d4a6 FLTMGR!FltGetFileNameInformation+0x101
4c 90 fffffb01`25a10f50 fffff80d`113380ed FLTMGR!FltvGetFileNameInformation+0x56
4d 30 fffffb01`25a10f80 fffff80d`113386db bindflt!BfGetPreCreateFileName+0x45d
4e c0 fffffb01`25a11040 fffff807`4bb8df66 bindflt!BfPreCreate+0x40b
4f 3a0 fffffb01`25a113e0 fffff807`4bb364cb FLTMGR!FltvPreOperation+0xe6
50 120 fffffb01`25a11500 fffff807`4bb35f7a FLTMGR!FltpPerformPreCallbacksWorker+0x36b
51 120 fffffb01`25a11620 fffff807`4bb6aed0 FLTMGR!FltpPassThroughInternal+0xca
52 50 fffffb01`25a11670 fffff807`4c184197 FLTMGR!FltpCreate+0x310
53 b0 fffffb01`25a11720 fffff807`4c7daf1a nt!IopfCallDriver+0x53
54 40 fffffb01`25a11760 fffff807`4c23dff9 nt!IovCallDriver+0x266
55 40 fffffb01`25a117a0 fffff807`4c0571c4 nt!IofCallDriver+0x1fdc59
56 40 fffffb01`25a117e0 fffff807`4c43fe9b nt!IoCallDriverWithTracing+0x34
57 50 fffffb01`25a11830 fffff807`4c4ef8c7 nt!IopParseDevice+0x11bb
58 170 fffffb01`25a119a0 fffff807`4c433ff7 nt!IopParseFile+0xc7
59 70 fffffb01`25a11a10 fffff807`4c43c59a nt!ObpLookupObjectName+0x1117
5a 1d0 fffffb01`25a11be0 fffff807`4c42b95b nt!ObOpenObjectByNameEx+0x1fa
5b 130 fffffb01`25a11d10 fffff807`4c429a89 nt!IopCreateFile+0x132b
5c c0 fffffb01`25a11dd0 fffff807`4c224d08 nt!NtCreateFile+0x79
5d 90 fffffb01`25a11e60 fffff807`4c215bd0 nt!KiSystemServiceCopyEnd+0x28
5e 208 fffffb01`25a12068 fffff807`4d1b39d4 nt!KiServiceLinkage
5f 8 fffffb01`25a12070 fffff807`4c7fef97 VerifierExt!ZwCreateFile_wrapper+0x224
60 f0 fffffb01`25a12160 fffff80d`1197006e nt!VfZwCreateFile+0xd7
61 80 fffffb01`25a121e0 00000000`00000000 amdkmdag+0xa006e
 

PassMark

Distinguished
Just to add the stack trace shows multiple file system filter drivers running.
wcifs - Windows Container Isolation FS Filter Driver
gameflt - Windows X-box gaming service
bindflt - Windows Bind Filter Driver
luafv - Microsoft Windows LUA file virtualization filter driver. LAU = Least-Authorized User Account

Maybe all of it altogether is just too much, making the stack too deep, running out of stack space. Doesn't help much however.
 
Aug 26, 2024
2
0
10
Crash dump showed this:
UNEXPECTED_KERNEL_MODE_TRAP (7f)
Arg1: 0000000000000008, EXCEPTION_DOUBLE_FAULT
STACK_OVERFLOW: Stack Limit: ffffa70340df2000

So it seems your kernel ran out of stack space and faulted. The fault handling code then tried to push more data onto the stack which resulted in a double fault BSOD.

The kernel doesn't have much stack space (maybe 12KB in this case). In my opinion it is crazy to make it so small on modern hardware, but here we are.

Some more technical background detail is here
https://www.osronline.com/article.cfm^article=347.htm

Only the kernel itself and device driver can use the kernel stack. From your crash dump we can see this usage (list below) sorted by lots of usage to not much usage.

So something called bindflt & FLTMGR are using most of the stack. You need to add up all the FLTMGR!* entries to get a feel for the total usage. FLTMGR is surely from the fltmgr.sys device driver. This is a Windows driver that contains functions to help filtering file system access. Doesn't help much however.

Looking at the stack trace (also below), we see the process that started this mess was, "amdkmdag". AMD kernel mode driver. So this is probably the best hint. People are saying this can have incompatibilities with some video card drivers. So maybe one or the other got updated last night. Can you boot into safe mode and update all the AMD drivers to the latest releases.

Stack Usage By Function
=================================================================================
Size Count Module
0x000003A0 1 bindflt!BfPreCreate
0x00000300 6 FLTMGR!FltpCreateFileNameInformation
0x000002C0 4 FLTMGR!FltpGetFileNameInformation
0x00000270 2 nt!HalpInterruptSendIpi
0x00000240 4 FLTMGR!FltGetFileNameInformation
0x00000230 1 nt!MiClearNonPagedPtes
0x00000210 3 FLTMGR!FltpGetFileNameInformation
0x00000208 1 nt!KiSystemServiceCopyEnd
0x000001E0 6 FLTMGR!FltvGenerateFileName
0x000001D0 1 nt!ObpLookupObjectName
0x00000170 1 nt!IopParseDevice
0x00000130 1 nt!ObOpenObjectByNameEx
0x00000120 1 FLTMGR!FltpPerformPreCallbacksWorker
0x00000120 1 FLTMGR!FltvPreOperation
0x00000110 1 nt!KiIpiSendRequest
0x00000100 4 FLTMGR!HandleStreamListNotSupported
0x00000100 2 FLTMGR!FltGetFileNameInformationUnsafe
0x000000F0 1 VerifierExt!ZwCreateFile_wrapper
0x000000E0 1 nt!ExFreeHeapPool
0x000000D0 1 nt!RtlpHpSegMgrCommit
0x000000C0 4 FLTMGR!FltvGetFileNameInformation
0x000000C0 3 FLTMGR!FltvGetFileNameInformationUnsafe
0x000000C0 1 nt!IopCreateFile
0x000000C0 1 bindflt!BfGenerateFileNameCallback
0x000000C0 1 bindflt!BfGetPreCreateFileName
0x000000B0 1 FLTMGR!FltpCreate
0x000000A0 1 nt!KeFlushMultipleRangeTb
0x000000A0 1 nt!RtlpHpSegPageRangeCommit
0x00000090 1 nt!NtCreateFile
0x00000080 1 FLTMGR!FltGetFileNameInformationUnsafe
0x00000080 1 FLTMGR!FltpGetFileNameFromFileObject
0x00000080 1 FLTMGR!FltpCreateFileNameInformation
0x00000080 1 nt!RtlpHpSegPageRangeCoalesce
0x00000080 1 nt!MmFreePoolMemory
0x00000080 1 nt!VfZwCreateFile
0x00000070 1 nt!RtlpHpSegPageRangeShrink
0x00000070 1 nt!IopParseFile
0x00000050 1 FLTMGR!FltpPassThroughInternal
0x00000050 1 nt!IoCallDriverWithTracing
0x00000050 1 nt!HalRequestIpiSpecifyVector
0x00000050 1 nt!RtlpHpFreeHeap
0x00000050 1 nt!ExpFreeHeapSpecialPool
0x00000040 1 nt!RtlpHpSegFree
0x00000040 1 nt!RtlpHpFreeVA
0x00000040 1 nt!IopfCallDriver
0x00000040 1 nt!IofCallDriver
0x00000040 1 nt!IovCallDriver
0x00000040 1 VerifierExt!ExFreePool_wrapper
0x00000030 1 FLTMGR!FltpFreeNameGenerationContext
0x00000030 1 nt!MiFlushTbList
0x00000030 1 nt!RtlpHpEnvFreeVA
0x00000030 1 nt!MiDeleteNonPagedPoolTail
0x00000030 1 nt!ExFreePool
0x00000030 1 nt!VerifierExFreePool
0x00000030 1 luafv!LuafvGenerateFileName
0x00000030 1 wcifs!WcGenerateFileName
0x00000030 1 wcifs!WcGenerateFileName
0x00000008 1 nt!KiServiceLinkage
0x00000008 1 gameflt
0x00000008 1 gameflt

10: kd> kF
# Memory Child-SP RetAddr Call Site
00 fffffb01`25a0f000 fffff807`4c05c2ae nt!HalpInterruptSendIpi+0x39
01 270 fffffb01`25a0f270 fffff807`4c059acb nt!HalRequestIpiSpecifyVector+0x7e
02 50 fffffb01`25a0f2c0 fffff807`4c09939b nt!KiIpiSendRequest+0x38b
03 110 fffffb01`25a0f3d0 fffff807`4c0991e8 nt!KeFlushMultipleRangeTb+0x12b
04 a0 fffffb01`25a0f470 fffff807`4c1398b9 nt!MiFlushTbList+0x88
05 30 fffffb01`25a0f4a0 fffff807`4c139411 nt!MiDeleteNonPagedPoolTail+0x19
06 30 fffffb01`25a0f4d0 fffff807`4c0ae67e nt!MiClearNonPagedPtes+0x181
07 230 fffffb01`25a0f700 fffff807`4c0ae6e6 nt!MmFreePoolMemory+0x1aa
08 80 fffffb01`25a0f780 fffff807`4c0ae752 nt!RtlpHpEnvFreeVA+0x12
09 30 fffffb01`25a0f7b0 fffff807`4c0a6f83 nt!RtlpHpFreeVA+0x3a
0a 40 fffffb01`25a0f7f0 fffff807`4c0a6c2e nt!RtlpHpSegMgrCommit+0x1e3
0b d0 fffffb01`25a0f8c0 fffff807`4c0a7a91 nt!RtlpHpSegPageRangeCommit+0x1ee
0c a0 fffffb01`25a0f960 fffff807`4c0a752b nt!RtlpHpSegPageRangeCoalesce+0x1b1
0d 80 fffffb01`25a0f9e0 fffff807`4c0aa990 nt!RtlpHpSegPageRangeShrink+0xeb
0e 70 fffffb01`25a0fa50 fffff807`4c0ad39c nt!RtlpHpSegFree+0x9c
0f 40 fffffb01`25a0fa90 fffff807`4c3ce5a1 nt!RtlpHpFreeHeap+0xac
10 50 fffffb01`25a0fae0 fffff807`4c23f9b0 nt!ExpFreeHeapSpecialPool+0x221
11 50 fffffb01`25a0fb30 fffff807`4c7ca0b9 nt!ExFreeHeapPool+0x1f9260
12 e0 fffffb01`25a0fc10 fffff807`4d1c8be5 nt!ExFreePool+0x9
13 30 fffffb01`25a0fc40 fffff807`4c7eb1db VerifierExt!ExFreePool_wrapper+0x135
14 40 fffffb01`25a0fc80 fffff807`4bb322b3 nt!VerifierExFreePool+0x4b
15 30 fffffb01`25a0fcb0 fffff807`4bb6922f FLTMGR!FltpFreeNameGenerationContext+0xc7
16 30 fffffb01`25a0fce0 fffff807`4bb90753 FLTMGR!FltGetFileNameInformationUnsafe+0x9f
17 80 fffffb01`25a0fd60 fffff80c`fb884e9c FLTMGR!FltvGetFileNameInformationUnsafe+0x63
18 40 fffffb01`25a0fda0 ffffb388`c7c54f00 gameflt+0x14e9c
19 8 fffffb01`25a0fda8 00000000`00000102 0xffffb388`c7c54f00
1a 8 fffffb01`25a0fdb0 ffffb388`bea3ce90 0x102
1b 8 fffffb01`25a0fdb8 ffffb388`9f4bebc0 0xffffb388`bea3ce90
1c 8 fffffb01`25a0fdc0 ffffb388`9f4bebc0 0xffffb388`9f4bebc0
1d 8 fffffb01`25a0fdc8 fffff807`4bb90500 0xffffb388`9f4bebc0
1e 8 fffffb01`25a0fdd0 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
1f 50 fffffb01`25a0fe20 fffff807`4bb3366f FLTMGR!FltpCreateFileNameInformation+0x1ae
20 80 fffffb01`25a0fea0 fffff807`4bb6921a FLTMGR!FltpGetFileNameInformation+0x6ef
21 b0 fffffb01`25a0ff50 fffff807`4bb90753 FLTMGR!FltGetFileNameInformationUnsafe+0x8a
22 80 fffffb01`25a0ffd0 fffff80d`1125d9a8 FLTMGR!FltvGetFileNameInformationUnsafe+0x63
23 40 fffffb01`25a10010 fffff807`4bb90500 wcifs!WcGenerateFileName+0x38
24 30 fffffb01`25a10040 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
25 50 fffffb01`25a10090 fffff807`4bb3366f FLTMGR!FltpCreateFileNameInformation+0x1ae
26 80 fffffb01`25a10110 fffff807`4bb6921a FLTMGR!FltpGetFileNameInformation+0x6ef
27 b0 fffffb01`25a101c0 fffff807`4bb90753 FLTMGR!FltGetFileNameInformationUnsafe+0x8a
28 80 fffffb01`25a10240 fffff80d`1132e26f FLTMGR!FltvGetFileNameInformationUnsafe+0x63
29 40 fffffb01`25a10280 fffff807`4bb90500 bindflt!BfGenerateFileNameCallback+0x4df
2a c0 fffffb01`25a10340 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
2b 50 fffffb01`25a10390 fffff807`4bb3366f FLTMGR!FltpCreateFileNameInformation+0x1ae
2c 80 fffffb01`25a10410 fffff807`4bb693e9 FLTMGR!FltpGetFileNameInformation+0x6ef
2d b0 fffffb01`25a104c0 fffff807`4bb69c32 FLTMGR!FltpGetFileNameFromFileObject+0x189
2e 80 fffffb01`25a10540 fffff807`4bb32504 FLTMGR!FltpCreateFileNameInformation+0x132
2f 80 fffffb01`25a105c0 fffff807`4bb3329b FLTMGR!HandleStreamListNotSupported+0x134
30 40 fffffb01`25a10600 fffff807`4bb34211 FLTMGR!FltpGetFileNameInformation+0x31b
31 b0 fffffb01`25a106b0 fffff807`4bb8d4a6 FLTMGR!FltGetFileNameInformation+0x101
32 90 fffffb01`25a10740 fffff80d`11210750 FLTMGR!FltvGetFileNameInformation+0x56
33 30 fffffb01`25a10770 fffff807`4bb90500 luafv!LuafvGenerateFileName+0x60
34 30 fffffb01`25a107a0 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
35 50 fffffb01`25a107f0 fffff807`4bb32504 FLTMGR!FltpCreateFileNameInformation+0x1ae
36 80 fffffb01`25a10870 fffff807`4bb3329b FLTMGR!HandleStreamListNotSupported+0x134
37 40 fffffb01`25a108b0 fffff807`4bb34211 FLTMGR!FltpGetFileNameInformation+0x31b
38 b0 fffffb01`25a10960 fffff807`4bb8d4a6 FLTMGR!FltGetFileNameInformation+0x101
39 90 fffffb01`25a109f0 fffff80c`fb884e86 FLTMGR!FltvGetFileNameInformation+0x56
3a 30 fffffb01`25a10a20 ffffb388`c7fc4f00 gameflt+0x14e86
3b 8 fffffb01`25a10a28 00000000`00000102 0xffffb388`c7fc4f00
3c 8 fffffb01`25a10a30 ffffb388`c1b44710 0x102
3d 8 fffffb01`25a10a38 ffffb388`c7fb8fb0 0xffffb388`c1b44710
3e 8 fffffb01`25a10a40 ffffb388`9f4bebc0 0xffffb388`c7fb8fb0
3f 8 fffffb01`25a10a48 fffff807`4bb90500 0xffffb388`9f4bebc0
40 8 fffffb01`25a10a50 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
41 50 fffffb01`25a10aa0 fffff807`4bb32504 FLTMGR!FltpCreateFileNameInformation+0x1ae
42 80 fffffb01`25a10b20 fffff807`4bb3329b FLTMGR!HandleStreamListNotSupported+0x134
43 40 fffffb01`25a10b60 fffff807`4bb34211 FLTMGR!FltpGetFileNameInformation+0x31b
44 b0 fffffb01`25a10c10 fffff807`4bb8d4a6 FLTMGR!FltGetFileNameInformation+0x101
45 90 fffffb01`25a10ca0 fffff80d`1125d9c0 FLTMGR!FltvGetFileNameInformation+0x56
46 30 fffffb01`25a10cd0 fffff807`4bb90500 wcifs!WcGenerateFileName+0x50
47 30 fffffb01`25a10d00 fffff807`4bb69cae FLTMGR!FltvGenerateFileName+0x40
48 50 fffffb01`25a10d50 fffff807`4bb32504 FLTMGR!FltpCreateFileNameInformation+0x1ae
49 80 fffffb01`25a10dd0 fffff807`4bb3329b FLTMGR!HandleStreamListNotSupported+0x134
4a 40 fffffb01`25a10e10 fffff807`4bb34211 FLTMGR!FltpGetFileNameInformation+0x31b
4b b0 fffffb01`25a10ec0 fffff807`4bb8d4a6 FLTMGR!FltGetFileNameInformation+0x101
4c 90 fffffb01`25a10f50 fffff80d`113380ed FLTMGR!FltvGetFileNameInformation+0x56
4d 30 fffffb01`25a10f80 fffff80d`113386db bindflt!BfGetPreCreateFileName+0x45d
4e c0 fffffb01`25a11040 fffff807`4bb8df66 bindflt!BfPreCreate+0x40b
4f 3a0 fffffb01`25a113e0 fffff807`4bb364cb FLTMGR!FltvPreOperation+0xe6
50 120 fffffb01`25a11500 fffff807`4bb35f7a FLTMGR!FltpPerformPreCallbacksWorker+0x36b
51 120 fffffb01`25a11620 fffff807`4bb6aed0 FLTMGR!FltpPassThroughInternal+0xca
52 50 fffffb01`25a11670 fffff807`4c184197 FLTMGR!FltpCreate+0x310
53 b0 fffffb01`25a11720 fffff807`4c7daf1a nt!IopfCallDriver+0x53
54 40 fffffb01`25a11760 fffff807`4c23dff9 nt!IovCallDriver+0x266
55 40 fffffb01`25a117a0 fffff807`4c0571c4 nt!IofCallDriver+0x1fdc59
56 40 fffffb01`25a117e0 fffff807`4c43fe9b nt!IoCallDriverWithTracing+0x34
57 50 fffffb01`25a11830 fffff807`4c4ef8c7 nt!IopParseDevice+0x11bb
58 170 fffffb01`25a119a0 fffff807`4c433ff7 nt!IopParseFile+0xc7
59 70 fffffb01`25a11a10 fffff807`4c43c59a nt!ObpLookupObjectName+0x1117
5a 1d0 fffffb01`25a11be0 fffff807`4c42b95b nt!ObOpenObjectByNameEx+0x1fa
5b 130 fffffb01`25a11d10 fffff807`4c429a89 nt!IopCreateFile+0x132b
5c c0 fffffb01`25a11dd0 fffff807`4c224d08 nt!NtCreateFile+0x79
5d 90 fffffb01`25a11e60 fffff807`4c215bd0 nt!KiSystemServiceCopyEnd+0x28
5e 208 fffffb01`25a12068 fffff807`4d1b39d4 nt!KiServiceLinkage
5f 8 fffffb01`25a12070 fffff807`4c7fef97 VerifierExt!ZwCreateFile_wrapper+0x224
60 f0 fffffb01`25a12160 fffff80d`1197006e nt!VfZwCreateFile+0xd7
61 80 fffffb01`25a121e0 00000000`00000000 amdkmdag+0xa006e
should i update my gpu and cpu drivers inside of safe mode then? or is that not possible. ive tried updating my gpu drivers but windows would blue screen in the middle of it and i guess it wouldnt fully install

should also say i have a ryzen 2600, rx 580, b450 gaming x and 16gb of g.skill ripjaw 3200 mhz ram