Does anyone on here write drivers? I have a WFP driver I am writing which is driving me round the bend. It essentially works, and does everything I want, but during driver shutdown it blue screens. The faulting code is RemoveEntryList which basically means that two threads are trying to remove the same Linked List entry. One gets there first, the later thread then finds bogus memory and hence the BSOD. I think I have been very disciplined with my use of spinlocks so I am buggered if I know what the hell is going on.
I am not a driver writer by any stretch, and there is probably an obvious explanation to someone in the know. All I have is the source code and the minidump run up in windbg.
Need a little help.
I am not a driver writer by any stretch, and there is probably an obvious explanation to someone in the know. All I have is the source code and the minidump run up in windbg.
Need a little help.
Comment