[FASTFAT] Revert bd1e7bf: our VPB swapout implementation in FastFAT is buggy and
authorPierre Schweitzer <pierre@reactos.org>
Mon, 25 Dec 2017 10:22:00 +0000 (11:22 +0100)
committerPierre Schweitzer <pierre@reactos.org>
Mon, 25 Dec 2017 10:24:13 +0000 (11:24 +0100)
leaves volumes in half-(dis)mounted state and thus they get remounted while not
completely dismounted.
This can lead to major breakage and data corruption.
This requires deeper fixes (let's just drop that driver!).

CORE-14124
CORE-14126
CORE-14133

drivers/filesystems/fastfat/vfat.h

index 50b83b1..b84b320 100644 (file)
 #endif
 
 #define USE_ROS_CC_AND_FS
+#if 0
+#ifndef _MSC_VER
 #define ENABLE_SWAPOUT
+#endif
+#endif
 
 #define ROUND_DOWN(n, align) \
     (((ULONG)n) & ~((align) - 1l))