File: remap-file-path.proto

package info (click to toggle)
golang-github-checkpoint-restore-go-criu 7.2.0%2Bds1-4
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 1,796 kB
  • sloc: makefile: 231; ansic: 195; python: 137; sh: 110
file content (18 lines) | stat: -rw-r--r-- 324 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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;
}