IoStartNextPacket function (ntifs.h)

The IoStartNextPacket routine dequeues the next IRP, if any, from the given device object's associated device queue and calls the driver's StartIo routine.

Syntax

void IoStartNextPacket(
  [in] PDEVICE_OBJECT DeviceObject,
  [in] BOOLEAN        Cancelable
);

Parameters

[in] DeviceObject

Pointer to the device object for which the IRP is to be dequeued.

[in] Cancelable

Specifies whether IRPs in the device queue can be canceled.

Return value

None

Remarks

If there are no IRPs currently in the device queue for the target DeviceObject, this routine simply returns control to the caller.

If the driver passed a pointer to a cancel routine when it called IoStartPacket, it should pass TRUE in this routine's Cancelable parameter. If Cancelable is TRUE, the I/O manager will use the cancel spin lock to protect the device queue and the current IRP.

Drivers that do not have a StartIo routine cannot call IoStartNextPacket.

Drivers that call IoStartNextPacket from their StartIo routine should be aware of recursion issues. If a driver can call IoStartNextPacket on a large number of requests in succession from its StartIo routine (for example, when a device error occurs and the driver is clearing out it device queue), you should set the DeferredStartIo attribute for the device by using IoSetStartIoAttributes routine. This attribute ensures that the next packet will not be issued until the previous StartIo call returns.

Callers of IoStartNextPacket must be running at IRQL = DISPATCH_LEVEL. Usually, this routine is called from a device driver's DpcForIsr or CustomDpc routine, both of which are run at IRQL = DISPATCH_LEVEL.

Requirements

Requirement Value
Minimum supported client Windows 2000
Target Platform Universal
Header ntifs.h (include Wdm.h, Ntddk.h, Ntifs.h)
Library NtosKrnl.lib
DLL NtosKrnl.exe
IRQL DISPATCH_LEVEL (see Remarks section)
DDI compliance rules HwStorPortProhibitedDDIs(storport), IrqlDispatch(storport), IrqlDispatch(storport), IrqlDispatch(wdm), SpinLockSafe(storport), SpinLockSafe(storport), SpinLockSafe(wdm), StartIoRecursion(wdm)

See also

DEVICE_OBJECT

IoSetStartIoAttributes

IoStartNextPacketByKey

IoStartPacket