Dragon of Life (
dragonoflife) wrote2006-08-26 06:12 pm
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Entry tags:
(no subject)
Any computer people want to interpret this one?
DRIVER_IRQL_NOT_LESS_OR_EQUAL
STOP 0X000000D1
I mean, aside from "Dude, your computer is screwed." I know that already.
DRIVER_IRQL_NOT_LESS_OR_EQUAL
STOP 0X000000D1
I mean, aside from "Dude, your computer is screwed." I know that already.
no subject
It can also mean "This device is failing and must be replaced".
no subject
Oh well. Already knew that.
no subject
Long explanation: The most common reason for encountering DRIVER_IRQL_NOT_LESS_OR_EQUAL is that the driver tried to access memory that was paged out while processing an interrupt. Since while processing an interrupt, the driver is running at such a priority level that it even defeats paging requests, doing so would result in the driver not getting the information it was asking for. Since there's almost nothing good to be done at that point - for all the kernel knows, processing that interrupt correctly could be critical to the operation of the system - the kernel proactively takes itself down to protect the machine.
I'm not sure I can think of a case where this is not because the driver at fault was written incorrectly. This can pop up suddenly when the memory footprint on the system changes in any way, typically when more pressure is placed on it. Making an assumption that Photoshop is a memory heavy application, for instance, if you suddenly started running Photoshop on such a system, all of a sudden the memory system is under heavier pressure, it pages out a page belonging to the driver, the driver gets called to process an interrupt, and wham, your system goes down. I think you mentioned this happens under heavier stress - that's why.
no subject
no subject
Hmm. The only driver I was trying to update lately was the NVIDIA GeForce driver, which I really hope is not at fault, since apparently the most recent driver version doesn't support my chipset (even though it says it does, when I tried to install it it detected no compatible hardware...)
Oh well. If just playing music while writing is enough to crash the system, I know I'll encounter it again. Hopefully I can track down the responsible driver and repair it. I trust myself to do THAT much at least, if it's possible for me to do so. (Or I trust myself NOT to delete the motherboard drivers again at least.)
Incidentally, any chance this could also be the source of my previous kernal fault?
no subject
If you mean what was causing your computer to reboot randomly, yes, this could very well be the cause. This blue screen would have resulted in the system abruptly rebooting. Of course, if there's something I missed in this saga, let me know and I can try to dig into it/explain.