mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
[NTFS]
If IRP can't wait, queue it svn path=/trunk/; revision=67909
This commit is contained in:
parent
8034fab3df
commit
c28fc5a816
1 changed files with 5 additions and 0 deletions
|
@ -428,6 +428,11 @@ NtfsCreate(PNTFS_IRP_CONTEXT IrpContext)
|
|||
|
||||
DeviceExt = DeviceObject->DeviceExtension;
|
||||
|
||||
if (!(IrpContext->Flags & IRPCONTEXT_CANWAIT))
|
||||
{
|
||||
return NtfsMarkIrpContextForQueue(IrpContext);
|
||||
}
|
||||
|
||||
ExAcquireResourceExclusiveLite(&DeviceExt->DirResource,
|
||||
TRUE);
|
||||
Status = NtfsCreateFile(DeviceObject,
|
||||
|
|
Loading…
Reference in a new issue