mirror of
https://github.com/winfsp/winfsp.git
synced 2025-07-03 17:32:57 -05:00
sys: FSP_ENTER_MJ, FSP_LEAVE_MJ
This commit is contained in:
@ -17,9 +17,9 @@ FspCreate(
|
||||
_In_ PDEVICE_OBJECT DeviceObject,
|
||||
_In_ PIRP Irp)
|
||||
{
|
||||
FSP_ENTER(PAGED_CODE());
|
||||
FSP_ENTER_MJ(PAGED_CODE());
|
||||
|
||||
ASSERT(IRP_MJ_CREATE == IoGetCurrentIrpStackLocation(Irp)->MajorFunction);
|
||||
ASSERT(IRP_MJ_CREATE == IrpSp->MajorFunction);
|
||||
|
||||
if (FspFileSystemDeviceExtensionKind == FspDeviceExtension(DeviceObject)->Kind)
|
||||
{
|
||||
@ -34,5 +34,5 @@ FspCreate(
|
||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||
Result = STATUS_INVALID_DEVICE_REQUEST;
|
||||
|
||||
FSP_LEAVE("", 0);
|
||||
FSP_LEAVE_MJ("", 0);
|
||||
}
|
||||
|
Reference in New Issue
Block a user