mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[BTRFS] Revert "Allow driver to start at first stage when no hive is present."
Not needed anymore.
This reverts commit 80e11516b1
.
This commit is contained in:
parent
e08dc30569
commit
400eb23a64
1 changed files with 0 additions and 7 deletions
|
@ -5949,19 +5949,12 @@ NTSTATUS __stdcall DriverEntry(_In_ PDRIVER_OBJECT DriverObject, _In_ PUNICODE_S
|
|||
|
||||
InitializeObjectAttributes(&oa, RegistryPath, OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE, NULL, NULL);
|
||||
Status = ZwCreateKey(®h, KEY_QUERY_VALUE | KEY_ENUMERATE_SUB_KEYS | KEY_NOTIFY, &oa, 0, NULL, REG_OPTION_NON_VOLATILE, &dispos);
|
||||
/* ReactOS specific hack: allow BtrFS driver to start in 1st stage with no hive */
|
||||
#ifndef __REACTOS__
|
||||
if (!NT_SUCCESS(Status)) {
|
||||
ERR("ZwCreateKey returned %08x\n", Status);
|
||||
return Status;
|
||||
}
|
||||
|
||||
watch_registry(regh);
|
||||
#else
|
||||
if (NT_SUCCESS(Status)) {
|
||||
watch_registry(regh);
|
||||
}
|
||||
#endif
|
||||
|
||||
Status = IoCreateDevice(DriverObject, sizeof(bus_device_extension), NULL, FILE_DEVICE_UNKNOWN,
|
||||
FILE_DEVICE_SECURE_OPEN, false, &busobj);
|
||||
|
|
Loading…
Reference in a new issue