1
0
mirror of https://github.com/winfsp/winfsp.git synced 2025-12-24 21:12:46 -06:00

sys: FspFsvolCreateTryFlushImage

This commit is contained in:
Bill Zissimopoulos
2016-01-20 15:42:33 -08:00
parent 8264ace57a
commit 12cec5dc22
5 changed files with 149 additions and 21 deletions

View File

@@ -238,15 +238,7 @@ VOID FspIopCompleteCanceledIrp(PIRP Irp)
{
PAGED_CODE();
#if DBG
PIO_STACK_LOCATION IrpSp = IoGetCurrentIrpStackLocation(Irp);
DEBUGLOG("IRP=%p, %s%c, %s%s",
Irp,
(const char *)&FspDeviceExtension(IrpSp->DeviceObject)->Kind,
Irp->RequestorMode == KernelMode ? 'K' : 'U',
IrpMajorFunctionSym(IrpSp->MajorFunction),
IrpMinorFunctionSym(IrpSp->MajorFunction, IrpSp->MinorFunction));
#endif
DEBUGLOGIRP(Irp, STATUS_CANCELLED);
FspIopCompleteIrpEx(Irp, STATUS_CANCELLED, TRUE);
}