mirror of
https://github.com/winfsp/winfsp.git
synced 2025-07-03 17:32:57 -05:00
sys: ioq: IRP can no longer be canceled once they enter the Processing state
This commit is contained in:
@ -335,7 +335,7 @@ NTSTATUS FspFsvolCreatePrepare(
|
||||
/* repost the IRP to retry later */
|
||||
FSP_FSVOL_DEVICE_EXTENSION *FsvolDeviceExtension =
|
||||
FspFsvolDeviceExtension(IrpSp->DeviceObject);
|
||||
if (FspIoqPostIrpNoCap(FsvolDeviceExtension->Ioq, Irp, &Result))
|
||||
if (FspIoqPostIrpBestEffort(FsvolDeviceExtension->Ioq, Irp, &Result))
|
||||
Result = STATUS_PENDING;
|
||||
return Result;
|
||||
}
|
||||
@ -545,7 +545,7 @@ VOID FspFsvolCreateComplete(
|
||||
* away and should correctly tear things down.
|
||||
*/
|
||||
|
||||
if (FspIoqPostIrpNoCap(FsvolDeviceExtension->Ioq, Irp, &Result))
|
||||
if (FspIoqPostIrpBestEffort(FsvolDeviceExtension->Ioq, Irp, &Result))
|
||||
Result = STATUS_PENDING;
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user