https://git.reactos.org/?p=reactos.git;a=commitdiff;h=ebb7088b02d9df35a822c…
commit ebb7088b02d9df35a822c5f6e786d4d9d4163e46
Author: Hervé Poussineau <hpoussin(a)reactos.org>
AuthorDate: Mon Feb 1 21:22:21 2021 +0100
Commit: Hervé Poussineau <hpoussin(a)reactos.org>
CommitDate: Thu Feb 4 11:14:59 2021 +0100
[CMAKE] Remove unused variables _ELF_
This is not used anymore since r55855 (818418643e0cd95291443bb97fd36fc5d56a4388)
---
sdk/cmake/config-amd64.cmake | 4 ----
sdk/cmake/config-arm.cmake | 4 ----
sdk/cmake/config.cmake | 4 ----
3 files changed, 12 deletions(-)
diff --git a/sdk/cmake/config-amd64.cmake b/sdk/cmake/config-amd64.cmake
index f99fe6a925f..110a0f218af 100644
--- a/sdk/cmake/config-amd64.cmake
+++ b/sdk/cmake/config-amd64.cmake
@@ -33,10 +33,6 @@ If you don't use GDB, don't enable this.")
set(_WINKD_ TRUE CACHE BOOL
"Whether to compile with the KD protocol.")
-set(_ELF_ FALSE CACHE BOOL
-"Whether to compile support for ELF files.
-Do not enable unless you know what you're doing.")
-
set(USERMODE TRUE CACHE BOOL
"Whether to compile any usermode parts. This is while kernel mode is under
heavy development and usermode part not relevant for bootcd.")
diff --git a/sdk/cmake/config-arm.cmake b/sdk/cmake/config-arm.cmake
index 2fd55a21453..85992fed996 100644
--- a/sdk/cmake/config-arm.cmake
+++ b/sdk/cmake/config-arm.cmake
@@ -34,10 +34,6 @@ If you don't use GDB, don't enable this.")
set(_WINKD_ TRUE CACHE BOOL
"Whether to compile with the KD protocol.")
-set(_ELF_ FALSE CACHE BOOL
-"Whether to compile support for ELF files.
-Do not enable unless you know what you're doing.")
-
set(BUILD_MP TRUE CACHE BOOL
"Whether to compile the multi processor versions for ntoskrnl and hal.")
diff --git a/sdk/cmake/config.cmake b/sdk/cmake/config.cmake
index 255e6502fe1..fa6defa1eb5 100644
--- a/sdk/cmake/config.cmake
+++ b/sdk/cmake/config.cmake
@@ -73,10 +73,6 @@ else()
set(_WINKD_ FALSE CACHE BOOL "Whether to compile with the KD protocol.")
endif()
-set(_ELF_ FALSE CACHE BOOL
-"Whether to compile support for ELF files.
-Do not enable unless you know what you're doing.")
-
set(BUILD_MP TRUE CACHE BOOL
"Whether to build the multiprocessor versions of NTOSKRNL and HAL.")
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=6f2b94c0231cbb447bc17…
commit 6f2b94c0231cbb447bc176712d11090b034490ee
Author: Jérôme Gardou <jerome.gardou(a)reactos.org>
AuthorDate: Wed Feb 3 13:40:30 2021 +0100
Commit: Jérôme Gardou <jerome.gardou(a)reactos.org>
CommitDate: Wed Feb 3 13:42:39 2021 +0100
[NTOS:MM] Wake up the balancer as soon as we are low on page.
Fixes installing on a system with 64MB of RAM, if you feel like it.
---
ntoskrnl/mm/balance.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ntoskrnl/mm/balance.c b/ntoskrnl/mm/balance.c
index 1cab99be0ec..cb61f3559fd 100644
--- a/ntoskrnl/mm/balance.c
+++ b/ntoskrnl/mm/balance.c
@@ -264,7 +264,7 @@ VOID
NTAPI
MmRebalanceMemoryConsumers(VOID)
{
- if (InterlockedCompareExchange(&PageOutThreadActive, 0, 1) == 0)
+ // if (InterlockedCompareExchange(&PageOutThreadActive, 0, 1) == 0)
{
KeSetEvent(&MiBalancerEvent, IO_NO_INCREMENT, FALSE);
}