From cac30e419035ddd49010a81c59f65b68e4919ce1 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Fri, 8 May 2020 23:41:28 -0400 Subject: [PATCH] kernel_debug_config: Move global VMCache option to KDEBUG_LEVEL_2. It does have a performance impact (as it serializes all VMCache creations), and it is not that useful, so move it to KDEBUG_LEVEL_2 so that the beta releases (on KDEBUG_LEVEL_1) are not affected by it. (The nightlies are on KDEBUG_LEVEL_2, so this will not affect them.) Change-Id: Iab35d58f9d210651e3fd9027b75ea27a7a6928e5 Reviewed-on: https://review.haiku-os.org/c/haiku/+/2612 Reviewed-by: waddlesplash --- build/config_headers/kernel_debug_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/config_headers/kernel_debug_config.h b/build/config_headers/kernel_debug_config.h index 008818c510..1dcc08f2c5 100644 --- a/build/config_headers/kernel_debug_config.h +++ b/build/config_headers/kernel_debug_config.h @@ -96,7 +96,7 @@ #define DEBUG_PAGE_ACCESS KDEBUG_LEVEL_2 // Enables a global list of all vm_cache structures. -#define DEBUG_CACHE_LIST KDEBUG_LEVEL_1 +#define DEBUG_CACHE_LIST KDEBUG_LEVEL_2 // Enables swap support. #define ENABLE_SWAP_SUPPORT 1