Author: pschweitzer Date: Thu Sep 14 09:04:32 2017 New Revision: 75836
URL: http://svn.reactos.org/svn/reactos?rev=75836&view=rev Log: [BTRFS] Disable the MountMgr thread; given the current storage stack state, it's useless and can even cause troubles
CORE-13769
Modified: trunk/reactos/drivers/filesystems/btrfs/btrfs.c
Modified: trunk/reactos/drivers/filesystems/btrfs/btrfs.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/btrfs/b... ============================================================================== --- trunk/reactos/drivers/filesystems/btrfs/btrfs.c [iso-8859-1] (original) +++ trunk/reactos/drivers/filesystems/btrfs/btrfs.c [iso-8859-1] Thu Sep 14 09:04:32 2017 @@ -5588,9 +5588,11 @@
KeInitializeEvent(&mountmgr_thread_event, NotificationEvent, FALSE);
+#ifndef __REACTOS__ Status = PsCreateSystemThread(&mountmgr_thread_handle, 0, NULL, NULL, NULL, mountmgr_thread, NULL); if (!NT_SUCCESS(Status)) WARN("PsCreateSystemThread returned %08x\n", Status); +#endif
IoRegisterFileSystem(DeviceObject);