From 2adb1c18235e9c67304c37967149b465022cfaca Mon Sep 17 00:00:00 2001 From: Chao Wu Date: Wed, 2 Nov 2022 14:07:37 +0800 Subject: [PATCH] Dragonball: enable mem_file_path config into hugetlbfs process In the current Dragonball code, mem_file_path config is not used when hugetlbfs is enabled. In this commit we add mem_file_path into hugetlbfs enable process. fixes: #5566 Signed-off-by: Chao Wu --- src/dragonball/src/vm/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dragonball/src/vm/mod.rs b/src/dragonball/src/vm/mod.rs index 39f5483e9c..4c4a8a7b1a 100644 --- a/src/dragonball/src/vm/mod.rs +++ b/src/dragonball/src/vm/mod.rs @@ -520,6 +520,7 @@ impl Vm { let mem_type = self.vm_config.mem_type.clone(); let mut mem_file_path = String::from(""); if mem_type == "hugetlbfs" { + mem_file_path = self.vm_config.mem_file_path.clone(); let shared_info = self.shared_info.read() .expect("Failed to determine if instance is initialized because shared info couldn't be read due to poisoned lock"); mem_file_path.push_str("/dragonball/");