erro BSOD no novo sistema

0

Meu computador estava funcionando muito bem e até recentemente, quando começou a me dar erros BSOD aleatórios. Estou executando o Windows 10 de 64 bits em casa sem overclocking.

Atualizei todos os drivers para a versão mais recente e não há vírus ou malware na minha máquina. Eu corri o comando "sfc / scannow" no CP e ele me diz que está tudo bem e dandy.

Eu recebi algumas BSOD no passado, não frequentes, devido ao Wdiwifi.sys. [Bad Pool memory] no meu outro sistema. Fui ao gerenciador de dispositivos e verifiquei atualizações e tudo está atualizado.

Os outros dois erros BSOD [falha na verificação de segurança do kernel] foram causados quando eu estava usando o blender. Foi aleatório.

link

    
por 4-K 27.05.2017 / 10:18

1 resposta

1

Os símbolos de depuração estão agora online.

Analisando os despejos com Windbg mostra que o driver Realtek Wifi ( rtwlanu.sys ) causa o problema:

*******************************************************************************
*                                                                             *
*                        Bugcheck Analysis                                    *
*                                                                             *
*******************************************************************************

KERNEL_SECURITY_CHECK_FAILURE (139)
A kernel component has corrupted a critical data structure.  The corruption
could potentially allow a malicious user to gain control of this machine.
Arguments:
Arg1: 0000000000000003, A LIST_ENTRY has been corrupted (i.e. double remove).
Arg2: ffff80016eb9a480, Address of the trap frame for the exception that caused the bugcheck
Arg3: ffff80016eb9a3d8, Address of the exception record for the exception that caused the bugcheck
Arg4: 0000000000000000, Reserved

EXCEPTION_RECORD:  ffff80016eb9a3d8 -- (.exr 0xffff80016eb9a3d8)
ExceptionAddress: fffff809b0985c1b (ndis!ndisFreeNblToNPagedPool+0x000000000000006b)
   ExceptionCode: c0000409 (Security check failure or stack buffer overrun)
  ExceptionFlags: 00000001
NumberParameters: 1
   Parameter[0]: 0000000000000003
Subcode: 0x3 FAST_FAIL_CORRUPT_LIST_ENTRY

STACK_TEXT:
00 nt!KeBugCheckEx
01 nt!KiBugCheckDispatch
02 nt!KiFastFailDispatch
03 nt!KiRaiseSecurityCheckFailure
04 ndis!ndisFreeNblToNPagedPool
05 ndis!NdisFreeNetBufferList
06 rtwlanu!WDI_FreeRxFrame
07 rtwlanu!N6UsbWdi_RxReturnFrames
08 wdiwifi!CRxMgr::OnNdisReturnNetBufferLists
09 wdiwifi!CAdapter::ReturnNetBufferLists
0a wdiwifi!CPort::IndicateFrames
0b wdiwifi!CRxMgr::RxIndicatePortFrames
0c wdiwifi!CRxMgr::RxProcessAndIndicateNblChain
0d wdiwifi!CRxMgr::RxInOrderDataInd
0e wdiwifi!AdapterRxInorderDataInd
0f rtwlanu!wdi_NotifyPeerData
10 rtwlanu!WDI_NotifyDataInQueue
11 rtwlanu!RxNotifyThreadCallback
12 rtwlanu!Ndis6ThreadCallback
13 nt!PspSystemThreadStartup
14 nt!KiStartSystemThread

    Image path: \SystemRoot\System32\drivers\rtwlanu.sys
    Image name: rtwlanu.sys
    Browse all global symbols  functions  data
    Timestamp:        Tue Nov 15 17:34:02 2016

Como vejo a pilha de chamadas para o driver realtek, vejo que você usa o driver buildin do Windows. Obtenha e instale o driver mais recente do site da Realtek .

    
por 07.06.2017 / 17:10