WDM
-
I seem to be getting the following BSOD bug check error: DRIVER_IRQL_NOT_LESS_OR_EQUAL. I think that I understand what this means, but I am not sure what is causing this error. I have figured out where it is being caused, right before a call to IoGetNextIrpStackLocation. I have checked the objects for null values prior to the call and can't seem to find the solution. What is the best way to go about debugging this? Thanks
-
I seem to be getting the following BSOD bug check error: DRIVER_IRQL_NOT_LESS_OR_EQUAL. I think that I understand what this means, but I am not sure what is causing this error. I have figured out where it is being caused, right before a call to IoGetNextIrpStackLocation. I have checked the objects for null values prior to the call and can't seem to find the solution. What is the best way to go about debugging this? Thanks
Check out the Device Driver Development Kit (http://www.microsoft.com/ddk) docs section on bugchecks. It also has some good strategies for debugging (KD/WinDBG). Cheers! Colin