mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 10:46:58 +00:00
[NTOSKRNL]
Don't bugcheck on unimplemented FsRtlOplockFsctrl(), FsRtlCurrentBatchOplock(), FsRtlCheckOplock() Properly implement FsRtlInitializeOplock() (which is no-op on Windows 2k3) CORE-10284 #resolve #comment Resolved with r69412 svn path=/trunk/; revision=69412
This commit is contained in:
parent
746c7e4435
commit
54d56a1de4
1 changed files with 5 additions and 5 deletions
|
@ -49,7 +49,7 @@ FsRtlCheckOplock(IN POPLOCK Oplock,
|
|||
IN POPLOCK_FS_PREPOST_IRP PostIrpRoutine OPTIONAL)
|
||||
{
|
||||
/* Unimplemented */
|
||||
KeBugCheck(FILE_SYSTEM);
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
@ -72,13 +72,13 @@ NTAPI
|
|||
FsRtlCurrentBatchOplock(IN POPLOCK Oplock)
|
||||
{
|
||||
/* Unimplemented */
|
||||
KeBugCheck(FILE_SYSTEM);
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/*++
|
||||
* @name FsRtlInitializeOplock
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*
|
||||
* FILLME
|
||||
*
|
||||
|
@ -94,7 +94,7 @@ VOID
|
|||
NTAPI
|
||||
FsRtlInitializeOplock(IN OUT POPLOCK Oplock)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
PAGED_CODE();
|
||||
}
|
||||
|
||||
/*++
|
||||
|
@ -124,7 +124,7 @@ FsRtlOplockFsctrl(IN POPLOCK Oplock,
|
|||
IN ULONG OpenCount)
|
||||
{
|
||||
/* Unimplemented */
|
||||
KeBugCheck(FILE_SYSTEM);
|
||||
UNIMPLEMENTED;
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue