2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-22 09:58:09 +00:00
criu/images/remap-file-path.proto

19 lines
324 B
Protocol Buffer
Raw Permalink Normal View History

// SPDX-License-Identifier: MIT
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;
}