Author: pschweitzer
Date: Fri Nov 25 21:47:34 2016
New Revision: 73376
URL:
http://svn.reactos.org/svn/reactos?rev=73376&view=rev
Log:
[NTOSKRNL]
Remove old hacks which seem no longer required
Modified:
trunk/reactos/ntoskrnl/io/iomgr/iofunc.c
Modified: trunk/reactos/ntoskrnl/io/iomgr/iofunc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/iomgr/iofunc.c…
==============================================================================
--- trunk/reactos/ntoskrnl/io/iomgr/iofunc.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/io/iomgr/iofunc.c [iso-8859-1] Fri Nov 25 21:47:34 2016
@@ -2741,10 +2741,7 @@
/* Now set the deferred read flags */
Irp->Flags |= (IRP_READ_OPERATION | IRP_DEFER_IO_COMPLETION);
-#if 0
- /* FIXME: VFAT SUCKS */
if (FileObject->Flags & FO_NO_INTERMEDIATE_BUFFERING) Irp->Flags |=
IRP_NOCACHE;
-#endif
/* Perform the call */
return IopPerformSynchronousRequest(DeviceObject,
@@ -3754,10 +3751,7 @@
/* Now set the deferred read flags */
Irp->Flags |= (IRP_WRITE_OPERATION | IRP_DEFER_IO_COMPLETION);
-#if 0
- /* FIXME: VFAT SUCKS */
if (FileObject->Flags & FO_NO_INTERMEDIATE_BUFFERING) Irp->Flags |=
IRP_NOCACHE;
-#endif
/* Perform the call */
return IopPerformSynchronousRequest(DeviceObject,