mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[NTOSKRNL] Use faster internal helper to query name
This only applies if we're called from kernel mode with a synchronous file.
This commit is contained in:
parent
1348f62f20
commit
a1401a7577
2 changed files with 27 additions and 5 deletions
|
@ -1276,6 +1276,16 @@ IoComputeDesiredAccessFileObject(
|
|||
IN PACCESS_MASK DesiredAccess
|
||||
);
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
IopGetFileInformation(
|
||||
IN PFILE_OBJECT FileObject,
|
||||
IN ULONG Length,
|
||||
IN FILE_INFORMATION_CLASS FileInfoClass,
|
||||
OUT PVOID Buffer,
|
||||
OUT PULONG ReturnedLength
|
||||
);
|
||||
|
||||
//
|
||||
// I/O Timer Routines
|
||||
//
|
||||
|
|
|
@ -1941,11 +1941,23 @@ IopQueryNameInternal(IN PVOID ObjectBody,
|
|||
FIELD_OFFSET(FILE_NAME_INFORMATION, FileName);
|
||||
|
||||
/* Query the File name */
|
||||
Status = IoQueryFileInformation(FileObject,
|
||||
FileNameInformation,
|
||||
LengthMismatch ? Length : FileLength,
|
||||
LocalFileInfo,
|
||||
&LocalReturnLength);
|
||||
if (PreviousMode == KernelMode &&
|
||||
BooleanFlagOn(FileObject->Flags, FO_SYNCHRONOUS_IO))
|
||||
{
|
||||
Status = IopGetFileInformation(FileObject,
|
||||
LengthMismatch ? Length : FileLength,
|
||||
FileNameInformation,
|
||||
LocalFileInfo,
|
||||
&LocalReturnLength);
|
||||
}
|
||||
else
|
||||
{
|
||||
Status = IoQueryFileInformation(FileObject,
|
||||
FileNameInformation,
|
||||
LengthMismatch ? Length : FileLength,
|
||||
LocalFileInfo,
|
||||
&LocalReturnLength);
|
||||
}
|
||||
if (NT_ERROR(Status))
|
||||
{
|
||||
/* Fail on errors only, allow warnings */
|
||||
|
|
Loading…
Reference in a new issue