Si è giusto!
Domanda: hai "fast startup" abilitato? Prova a controllare, nel caso, disabilita:
https://answers.microsoft.com/it-it...o-rapido/b12c10ab-9059-4536-9eeb-00b2c777629c
Mi sono messo a guardare ora...
Purtroppo il problema è proprio bast***o.
Codice:
Arguments:
Arg1: ffffffff80000003, The exception code that was not handled
Arg2: fffff80534b450d3, The address that the exception occurred at
Arg3: fffffc0559046108, Exception Record Address
Arg4: fffffc0559045940, Context Record Address
Questo è "Arg2":
Codice:
15: kd> u fffff80534b450d3
nt!KeCheckStackAndTargetAddress+0x53:
fffff805`34b450d3 cc int 3
fffff805`34b450d4 488bcf mov rcx,rdi
fffff805`34b450d7 e8243e0c00 call nt!guard_icall_bugcheck (fffff805`34c08f00)
fffff805`34b450dc cc int 3
fffff805`34b450dd cc int 3
fffff805`34b450de cc int 3
fffff805`34b450df cc int 3
fffff805`34b450e0 cc int 3
Il crash è sulla prima istruzione, int 3 appunto. E' usata per il debugging in realtà, come dicevo già l'altro giorno. La cosa interessante è che microsoft dice solo:
Ovviamente in casi normali nessuno ha il debug abilitato... anche perchè serve un debugger attaccato poi.
Ho anche cercato di capire se ci sono memory leak:
Codice:
15: kd> !dpx
Start memory scan : 0xfffffc0559045108 ($csp)
End memory scan : 0xfffffc0559048000 (Kernel Stack Base)
rsp : 0xfffffc0559045108 : 0xfffff80534c1cad0 : nt!PspSystemThreadStartup$filt$0+0x44
r14 : 0xfffffc0559045780 : 0xfffff80534b5a165 : nt!PspSystemThreadStartup+0x55
0xfffffc0559045108 : 0xfffff80534c1cad0 : nt!PspSystemThreadStartup$filt$0+0x44
0xfffffc0559045120 : 0xfffff80534b450d3 : nt!KeCheckStackAndTargetAddress+0x53
0xfffffc0559045148 : 0xfffff80534bd0a4f : nt!_C_specific_handler+0x9f
0xfffffc0559045158 : 0xfffff805348d9b64 : "nt!setjmpexused <PERF> (nt+0xd9b64)"
0xfffffc0559045170 : 0xfffff805348d9b64 : "nt!setjmpexused <PERF> (nt+0xd9b64)"
....
0xfffffc05590457e8 : 0xfffff80534aee840 : nt!RtlDispatchException
Unable to load image \SystemRoot\System32\DriverStore\FileRepository\nv_dispi.inf_amd64_9425e4c3b1ac1c47\nvlddmkm.sys, Win32 error 0n2
0xfffffc05590457f8 : 0xfffff80534800000 : "nt!VrpRegistryString <PERF> (nt+0x0)"
0xfffffc0559045800 : 0xfffff805348d8700 : "nt!setjmpexused <PERF> (nt+0xd8700)"
....
0xfffffc0559045858 : 0xfffff80534800000 : "nt!VrpRegistryString <PERF> (nt+0x0)"
0xfffffc0559045860 : 0xfffff805348e4f64 : "nt!setjmpexused <PERF> (nt+0xe4f64)"
0xfffffc0559045868 : 0xfffff805615c0000 : nvlddmkm
0xfffffc0559045878 : 0xfffff805615c0000 : nvlddmkm
Non ce ne sono, ma una cosa che continua a saltare fuori è il nome di quel driver, nvlddmkm... è Nvidia questo.
Ho dato un occhio anche ai moduli caricati e alla Non Paged Pool (usata da driver e kernel: in sintesi, si tratta di quella memoria richiesta / allocata che non può essere paginata (pagefile) ma che deve restare sempre in memoria) ed ho notato che è un pò alta sul driver di intel (quello grafico). Ti direi di aggiornare anche questo o verificare se ci sono aggiornamenti.
In merito al driver Nvidia, tentiamo anche un'altra strada: rimuovilo con DDU e installa l'ultima versione che hai a disposizione.
Ricapitolando quindi: verifica se hai il fast boot / avvio rapido come linkato ad inizio post e controlla i driver come appena menzionato.