| Previous | Next |
| PAGE_FAULT_WITH_INTERRUPTS_OFF | STREAMS_INTERNAL_ERROR |
IRQL_GT_ZERO_AT_SYSTEM_SERVICE
The IRQL_GT_ZERO_AT_SYSTEM_SERVICE bug check has a value of 0x0000004A. This indicates that a thread is returning to user mode from a system call when its IRQL is still above PASSIVE_LEVEL.
IRQL_GT_ZERO_AT_SYSTEM_SERVICE Parameters
| Parameter | Description |
|---|---|
1 |
The address of the system function (system call routine) |
2 |
The current IRQL |
3 |
0 |
4 |
0 |
Resolution
The system-call address and current IRQL identify which kernel path failed to lower IRQL to PASSIVE_LEVEL before returning to user mode.
Diagnostic focus
Parameter 1 identifies the system-call routine that was returning to user mode, while Parameter 2 records the IRQL that was still active. Walk backward from that return path and look for an unmatched IRQL raise, spin-lock acquisition, or other kernel synchronization operation in a driver callback reached by the system call. The defect is the failure to restore PASSIVE_LEVEL before the user-mode transition; retrying the application does not correct that kernel state imbalance.
References
Looking for a different code? Search another status or error code.
