From 7b093740058b26d1791d14e22f1d62210531797c Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sat, 6 May 2006 15:39:42 +0000 Subject: [PATCH] Set direct io flag of the device object. svn path=/trunk/; revision=21814 --- reactos/drivers/filesystems/ms/msfs.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/drivers/filesystems/ms/msfs.c b/reactos/drivers/filesystems/ms/msfs.c index bf95a8098a0..9f5a50e2e72 100644 --- a/reactos/drivers/filesystems/ms/msfs.c +++ b/reactos/drivers/filesystems/ms/msfs.c @@ -66,6 +66,9 @@ DriverEntry(PDRIVER_OBJECT DriverObject, return(Status); } + /* initialize the device object */ + DeviceObject->Flags = DO_DIRECT_IO; + /* initialize device extension */ DeviceExtension = DeviceObject->DeviceExtension; InitializeListHead(&DeviceExtension->MailslotListHead);