sys: driver.h: FSP_ENTER_IOC/FSP_LEAVE_IOC

This commit is contained in:
Bill Zissimopoulos
2015-11-27 12:59:15 -08:00
parent 24890f517d
commit 7fd635a6ab
16 changed files with 61 additions and 39 deletions

View File

@ -287,7 +287,12 @@ FspFileSystemControl(
VOID FspFileSystemControlComplete(PIRP Irp, FSP_FSCTL_TRANSACT_RSP *Response)
{
PAGED_CODE();
FSP_ENTER_IOC(PAGED_CODE());
FspCompleteRequest(Irp, STATUS_SUCCESS);
FSP_LEAVE_IOC(
"FileObject=%p%s%s",
IrpSp->FileObject,
IRP_MN_USER_FS_REQUEST == IrpSp->MinorFunction ? ", " : "",
IRP_MN_USER_FS_REQUEST == IrpSp->MinorFunction ?
IoctlCodeSym(IrpSp->Parameters.FileSystemControl.FsControlCode) : "");
}