2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-26 11:57:52 +00:00
criu/images/remap-file-path.proto

17 lines
291 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto2";
enum remap_type {
LINKED = 0;
GHOST = 1;
PROCFS = 2;
// Reserved for spfs manager
// SPFS = 3;
// SPFS_LINKED = 4;
};
message remap_file_path_entry {
required uint32 orig_id = 1;
required uint32 remap_id = 2;
optional remap_type remap_type = 3;
}