IoCsqInsertIrp routine
The IoCsqInsertIrp routine inserts an IRP in the driver's cancel-safe IRP queue.
Syntax
VOID IoCsqInsertIrp( __inout PIO_CSQ Csq, __inout PIRP Irp, __out_opt PIO_CSQ_IRP_CONTEXT Context );
Parameters
- Csq [in, out]
-
Pointer to the IO_CSQ structure for the driver's cancel-safe IRP queue. This structure must have been initialized by IoCsqInitialize or IoCsqInitializeEx.
- Irp [in, out]
-
Pointer to the IRP to be queued.
- Context [out, optional]
-
Pointer to an IO_CSQ_IRP_CONTEXT structure. IoCsqInsertIrp initializes this structure with context information for the inserted IRP. The driver passes this value to IoCsqRemoveIrp to delete the IRP from the queue. Context can be NULL if the driver will not use IoCsqRemoveIrp to remove this IRP from the queue.
Return value
None
Remarks
IoCsqInsertIrp uses the queue's dispatch routines to insert the IRP. The IoCsqInsertIrp routine:
-
Calls the queue's CsqAcquireLock routine to lock the queue.
-
Calls the queue's CsqInsertIrp routine to insert the IRP.
-
Marks the IRP as pending.
-
Calls the queue's CsqReleaseLock routine to unlock the queue.
If the IRP to be inserted has already been canceled, IoCsqInsertIrp does not attempt to insert the IRP into the queue.
Drivers can also use IoCsqInsertIrpEx to insert an IRP into the queue. For a queue that is specified by IoCsqInitializeEx, IoCsqInsertIrpEx provides additional capabilities. For more information, see Cancel-Safe IRP Queues.
Note that the IoCsqXxx routines use the DriverContext[3] member of the IRP to hold IRP context information. Drivers that use these routines to queue IRPs must leave that member unused.
Callers of IoCsqInsertIrp must be running at an IRQL <= DISPATCH_LEVEL. The driver's callback routines must work correctly at that IRQL.
Requirements
|
Version | Available in Windows XP and later versions of Windows. Drivers that must also work in Windows 2000 and Windows 98/Me can instead link to Csq.lib to use the routine. |
|---|---|
|
Header |
|
|
Library |
|
|
IRQL | <= DISPATCH_LEVEL (see Remarks section) |
See also
- IO_CSQ
- IO_CSQ_IRP_CONTEXT
- IoCsqInitialize
- IoCsqInitializeEx
- IoCsqInsertIrpEx
- IoCsqRemoveIrp
- IoCsqRemoveNextIrp
- CsqAcquireLock
- CsqCompleteCanceledIrp
- CsqInsertIrp
- CsqInsertIrpEx
- CsqPeekNextIrp
- CsqReleaseLock
- CsqRemoveIrp
Send comments about this topic to Microsoft
Build date: 4/2/2012