This commit is contained in:
Bill Zissimopoulos 2015-11-19 22:17:49 -08:00
parent d8621c8490
commit 5c5114675b

View File

@ -73,17 +73,15 @@
NT_SUCCESS(Result) ? "[" : "",\
Irp->IoStatus.Information, \
NT_SUCCESS(Result) ? "]" : "");\
if (STATUS_PENDING != Result) \
if (STATUS_PENDING == Result) \
IoMarkIrpPending(Irp); \
else \
{ \
if (!NT_SUCCESS(Result)) \
Irp->IoStatus.Information = 0;\
Irp->IoStatus.Status = Result;\
IoCompleteRequest(Irp, FSP_IO_INCREMENT);\
} \
else \
{ \
IoMarkIrpPending(Irp); \
} \
); \
return Result
#define FSP_ENTER_BOOL(...) \