mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-23 08:53:01 -05:00
sys: FspIopCompleteCanceledIrp: DEBUGLOG canceled IRP's
This commit is contained in:
parent
2da9d9e8b0
commit
ccd61180c5
@ -237,6 +237,16 @@ VOID FspIopCompleteCanceledIrp(PIRP Irp)
|
|||||||
{
|
{
|
||||||
PAGED_CODE();
|
PAGED_CODE();
|
||||||
|
|
||||||
|
#if DBG
|
||||||
|
PIO_STACK_LOCATION IrpSp = IoGetCurrentIrpStackLocation(Irp);
|
||||||
|
DEBUGLOG("IRP=%p, %s%c, %s%s\n",
|
||||||
|
Irp,
|
||||||
|
(const char *)&FspDeviceExtension(IrpSp->DeviceObject)->Kind,
|
||||||
|
Irp->RequestorMode == KernelMode ? 'K' : 'U',
|
||||||
|
IrpMajorFunctionSym(IrpSp->MajorFunction),
|
||||||
|
IrpMinorFunctionSym(IrpSp->MajorFunction, IrpSp->MinorFunction));
|
||||||
|
#endif
|
||||||
|
|
||||||
FspIopCompleteIrpEx(Irp, STATUS_CANCELLED, TRUE);
|
FspIopCompleteIrpEx(Irp, STATUS_CANCELLED, TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user