zarconek BSOD - Vista SP2 x64

Hi,

IRQL_NOT_LESS_OR_EQUAL (a)

This indicates that Microsoft Windows or a kernel-mode driver accessed paged memory at DISPATCH_LEVEL or above.

Code:
5: kd> .trap 0xfffffa6001adca90
NOTE: The trap frame does not contain all registers.
Some register values may be zeroed or incorrect.
rax=000000007fffffff rbx=0000000000000000 rcx=fffffa880a37f7d0
rdx=00000000ffffffff rsi=0000000000000000 rdi=0000000000000000
rip=fffff80002070ba0 rsp=fffffa6001adcc28 rbp=fffffa800a37e1a0
 r8=0000000000000001  r9=0000000000000000 r10=0000000000000000
r11=00000000ffffffff r12=0000000000000000 r13=0000000000000000
r14=0000000000000000 r15=0000000000000000
iopl=0         nv up ei pl zr na po nc
[COLOR=#ff0000]nt!KeAcquireSpinLockAtDpcLevel[/COLOR]:
fffff800`02070ba0 f0480fba2900    [COLOR=#0000ff]lock [/COLOR][COLOR=#ff0000]bts [/COLOR]qword ptr [[COLOR=#008000]rcx[/COLOR]],0 ds:fffffa88`0a37f7d0=????????????????

Code:
5: kd> k
  *** Stack trace for last set context - .thread/.cxr resets it
Child-SP          RetAddr           Call Site
fffffa60`01adcc28 fffffa60`031eea42 [COLOR=#0000ff]nt!KeAcquireSpinLockAtDpcLevel[/COLOR]
fffffa60`01adcc30 fffffa60`031ee835 [COLOR=#ff0000]ohci1394!OhciHandleIsochInt+0xc6[/COLOR]
fffffa60`01adccc0 fffff800`0206a367 [COLOR=#ff0000]ohci1394!OhciIsochDpc+0x41[/COLOR]
fffffa60`01adcd10 fffff800`0206a5e2 nt!KiRetireDpcList+0x117
fffffa60`01adcd80 fffff800`0223a860 nt!KiIdleLoop+0x62
fffffa60`01adcdb0 00000000`fffffa60 nt!zzz_AsmCodeRange_End+0x4
fffffa60`01ab8d00 00000000`00000000 0xfffffa60

LOCK prefix with BTS instruction, performing a read-write modify on rcx.

The 1394 OpenHCI Port driver went off the rails went handling the interrupt, and was also the driver regarding the instruction. This looks like a hardware issue to me, but can you please enable Driver Verifier so we can be sure?

Driver Verifier:

What is Driver Verifier?

Driver Verifier monitors Windows kernel-mode drivers, graphics drivers, and even 3rd party drivers to detect illegal function calls or actions that might corrupt the system. Driver Verifier can subject the Windows drivers to a variety of stresses and tests to find improper behavior.

Essentially, if there's a 3rd party driver believed to be causing the issues at hand, enabling Driver Verifier will help us see which specific driver is causing the problem.

Before enabling Driver Verifier, it is recommended to create a System Restore Point:

Vista - START | type rstrui - create a restore point
Windows 7 - START | type create | select "Create a Restore Point"
Windows 8/8.1 - Restore Point - Create in Windows 8

How to enable Driver Verifier:

Start > type "verifier" without the quotes > Select the following options -

1. Select - "Create custom settings (for code developers)"
2. Select - "Select individual settings from a full list"
3. Check the following boxes -
- Special Pool
- Pool Tracking
- Force IRQL Checking
- Deadlock Detection
- Security Checks (only on Windows 7 & 8/8.1)
- DDI compliance checking (only on Windows 8/8.1)
- Miscellaneous Checks
4. Select - "Select driver names from a list"
5. Click on the "Provider" tab. This will sort all of the drivers by the provider.
6. Check EVERY box that is NOT provided by Microsoft / Microsoft Corporation.
7. Click on Finish.
8. Restart.

Important information regarding Driver Verifier:

- Perhaps the most important which I will now clarify as this has been misunderstood often, enabling Driver Verifier by itself is not! a solution, but instead a diagnostic utility. It will tell us if a driver is causing your issues, but again it will not outright solve your issues.

- If Driver Verifier finds a violation, the system will BSOD. To expand on this a bit more for the interested, specifically what Driver Verifier actually does is it looks for any driver making illegal function calls, causing memory leaks, etc. When and/if this happens, system corruption occurs if allowed to continue. When Driver Verifier is enabled per my instructions above, it is monitoring all 3rd party drivers (as we have it set that way) and when it catches a driver attempting to do this, it will quickly flag that driver as being a troublemaker, and bring down the system safely before any corruption can occur.

- After enabling Driver Verifier and restarting the system, depending on the culprit, if for example the driver is on start-up, you may not be able to get back into normal Windows because Driver Verifier will detect it in violation almost straight away, and as stated above, that will cause / force a BSOD.

If this happens, do not panic, do the following:

- Boot into Safe Mode by repeatedly tapping the F8 key during boot-up.

- Once in Safe Mode - Start > Search > type "cmd" without the quotes.

- To turn off Driver Verifier, type in cmd "verifier /reset" without the quotes.

- Restart and boot into normal Windows.

If your OS became corrupt or you cannot boot into Windows after disabling verifier via Safe Mode:

- Boot into Safe Mode by repeatedly tapping the F8 key during boot-up.

- Once in Safe Mode - Start > type "system restore" without the quotes.

- Choose the restore point you created earlier.

-- Note that Safe Mode for Windows 8/8.1 is a bit different, and you may need to try different methods: 5 Ways to Boot into Safe Mode in Windows 8 & Windows 8.1

How long should I keep Driver Verifier enabled for?

I recommend keeping it enabled for at least 24 hours. If you don't BSOD by then, disable Driver Verifier. I will usually say whether or not I'd like for you to keep it enabled any longer.

My system BSOD'd with Driver Verifier enabled, where can I find the crash dumps?

- If you have the system set to generate Small Memory Dumps, they will be located in %systemroot%\Minidump.

- If you have the system set to generate Kernel Memory Dumps, it will be located in %systemroot% and labeled MEMORY.DMP.

Any other questions can most likely be answered by this article:

Using Driver Verifier to identify issues with Windows drivers for advanced users

Regards,

Patrick
 
Hello. I have been running the Driver Verifier for about 40 hours now and no BSOD. What steps should I take now? Thank you.
 
Looking at the different dump files, I'm almost certain you've got a failing CPU.
We have 0x124s, 0x101s and 0xAs. All of which tie in quite nicely when dealing with a failing CPU.

Do you still have warranty on your computer? (specifically your CPU).
 
Inclined to agree with Jared, although I wanted to be sure there was no underlying driver conflict. You can disable verifier.

Regards,

Patrick
 

Has Sysnative Forums helped you? Please consider donating to help us support the site!

Back
Top