From ee925c4ff5446969628ca3f8eaa41c32e1870d56 Mon Sep 17 00:00:00 2001 From: InChijun Date: Fri, 22 Nov 2024 17:06:49 +0900 Subject: [PATCH] [CBRD-25664] Excluded: -1 from the valid range of --- src/base/system_parameter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/system_parameter.c b/src/base/system_parameter.c index 898ec19c865..2aafb974111 100644 --- a/src/base/system_parameter.c +++ b/src/base/system_parameter.c @@ -1179,7 +1179,7 @@ static unsigned int prm_pb_num_LRU_chains_flag = 0; int PRM_PAGE_BG_FLUSH_INTERVAL_MSEC = 1000; static int prm_page_bg_flush_interval_msec_default = 1000; -static int prm_page_bg_flush_interval_msec_lower = -1; +static int prm_page_bg_flush_interval_msec_lower = 0; static unsigned int prm_page_bg_flush_interval_msec_flag = 0; bool PRM_ADAPTIVE_FLUSH_CONTROL = true;