新系统上出现 BSOD 错误

新系统上出现 BSOD 错误

我的电脑一直运行良好,直到最近它开始给我随机的 BSOD 错误。我运行的是 Windows 10 家庭版 64 位,没有超频。

我已将所有驱动程序更新至最新版本,我的机器中没有病毒或恶意软件。我在 CP 中运行了“sfc /scannow”命令,它告诉我一切正常。

我以前遇到过一些 BSOD,但不常见,这是由于我的其他系统上的 Wdiwifi.sys。[Bad Pool memory]。我进入设备管理器并检查了更新,发现一切都是最新的。 

另外两个 ndis.sys BSOD [内核安全检查失败] 错误是我在使用 blender 时发生的。这是随机的。

https://drive.google.com/file/d/0B0z47lWdEdGPZlVtY1lmTGh4Wms/view?usp=sharing

在此处输入图片描述

答案1

调试符号现在在线。

使用 Windbg 分析转储显示 Realtek Wifi 驱动程序 ( rtwlanu.sys) 导致了此问题:

*******************************************************************************
*                                                                             *
*                        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

因为我看到了 realtek 驱动程序的调用堆栈,所以我看到您使用的是 Windows 的内置驱动程序。获取并安装Realtek 网站提供的最新驱动程序

相关内容