Welcome to mirror list, hosted at ThFree Co, Russian Federation.

remap-file-path.proto « images - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3cc78a25e73112f827a8a20f51c5de12b29712a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}