We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e164875 commit fca72f4Copy full SHA for fca72f4
src/vmm/src/memory_snapshot.rs
@@ -7,6 +7,7 @@ use std::fmt::{Display, Formatter};
7
use std::fs::File;
8
use std::io::SeekFrom;
9
10
+use logger::info;
11
// for userfaultfd
12
use std::path::PathBuf;
13
use std::os::unix::io::AsRawFd;
@@ -68,7 +69,7 @@ where
68
69
enable_user_page_faults: bool,
70
) -> std::result::Result<Self, Error>;
71
/// Registers guest memory for hanlding page faults with an external user-level process
- fn register_for_upf(&self, &PathBuf) -> std::result::Result<(), Error>;
72
+ fn register_for_upf(&self, sock_file_path: &PathBuf) -> std::result::Result<(), Error>;
73
}
74
75
/// Errors associated with dumping guest memory to file.
0 commit comments