我收到 BSOD 错误 IRQL_NOT_LESS_OR_EQUAL

我收到 BSOD 错误 IRQL_NOT_LESS_OR_EQUAL

我收到 IRQL_NOT_LESS_OR_EQUAL 错误,请告知原因和解决方法。这是转储文件的链接https://www.dropbox.com/s/bue4uqxxkrn7dy6/Mini122113-01.dmp.. 谢谢

答案1

您获得了 IRQL_NOT_LESS_OR_EQUAL:

http://msdn.microsoft.com/en-us/library/ff560129%28v=vs.85%29.aspx

IRQL_NOT_LESS_OR_EQUAL 错误检查的值为 0x0000000A。这表明 Microsoft Windows 或内核模式驱动程序访问了分页内存在 DISPATCH_LEVEL 或以上。

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

IRQL_NOT_LESS_OR_EQUAL (a)
An attempt was made to access a pageable (or completely invalid) address at an
interrupt request level (IRQL) that is too high.  This is usually
caused by drivers using improper addresses.
If a kernel debugger is available get the stack backtrace.
Arguments:
Arg1: a4f0500d, memory referenced
Arg2: 00000002, IRQL
Arg3: 00000001, bitfield :
    bit 0 : value 0 = read operation, 1 = write operation
    bit 3 : value 0 = not an execute operation, 1 = execute operation (only on chips which support this level of status)
Arg4: 804e2def, address which referenced memory

Debugging Details:
------------------

PROCESS_NAME:  PSUAMain.exe

STACK_TEXT:  
nt!KiSwapContext
nt!KiSwapThread
nt!KeWaitForSingleObject
nt!MiWaitForInPageComplete
nt!MiDispatchFault
nt!MmAccessFault
nt!KiTrap0E
WARNING: Frame IP not in any known module. Following frames may be wrong.
0x0

PSUAMain.exe 调用了一个驱动程序,该驱动程序尝试以无效的方式(错误的 IRQL)访问页面内存。

首先将你的 Windows XP 更新到 Sp3 + 所有更新。你仍然处于 2004 年的 Sp2 RTM 状态!!!!

Windows XP Kernel Version 2600 (Service Pack 2) UP Free x86 compatible
Product: WinNt, suite: TerminalServer SingleUserTS
Built by: 2600.xpsp_sp2_rtm.040803-2158

接下来更新 AV 套件(PSUAMain.exe = Panda AV)并查看是否可以解决问题。

相关内容