Commit in reactos/drivers/fs/vfat on MAIN
misc.c+5-11.11 -> 1.12
disable apc's for work items

reactos/drivers/fs/vfat
misc.c 1.11 -> 1.12
diff -u -r1.11 -r1.12
--- misc.c	11 Oct 2003 17:51:56 -0000	1.11
+++ misc.c	4 Mar 2004 01:29:24 -0000	1.12
@@ -1,4 +1,4 @@
-/* $Id: misc.c,v 1.11 2003/10/11 17:51:56 hbirr Exp $
+/* $Id: misc.c,v 1.12 2004/03/04 01:29:24 gdalsnes Exp $
  *
  * COPYRIGHT:        See COPYING in the top level directory
  * PROJECT:          ReactOS kernel
@@ -135,10 +135,12 @@
          DPRINT1("Vfat is entered at irql = %d\n", KeGetCurrentIrql());
       }
       Status = VfatDispatchRequest (IrpContext);
+      
       if (KeGetCurrentIrql() <= PASSIVE_LEVEL)
       {
          FsRtlExitFileSystem();
       }
+      
    }
    return Status;
 }
@@ -191,7 +193,9 @@
 {
    InterlockedDecrement(&QueueCount);
    DPRINT ("VfatDoRequest (IrpContext %x), MajorFunction %x, %d\n", IrpContext, ((PVFAT_IRP_CONTEXT)IrpContext)->MajorFunction, QueueCount);
+   FsRtlEnterFileSystem();
    VfatDispatchRequest((PVFAT_IRP_CONTEXT)IrpContext);
+   FsRtlExitFileSystem();
 
 }
 
CVSspam 0.2.8