2016-07-01 21:49:54 +02:00
|
|
|
syntax = "proto2";
|
|
|
|
|
2015-12-04 15:19:00 +03:00
|
|
|
import "opts.proto";
|
|
|
|
|
2012-07-17 07:25:42 +04:00
|
|
|
enum fh_entry_sizes {
|
|
|
|
min_entries = 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
message fh_entry {
|
|
|
|
required uint32 bytes = 1;
|
|
|
|
required uint32 type = 2;
|
|
|
|
|
|
|
|
/* The minimum is fh_n_handle repetitions */
|
|
|
|
repeated uint64 handle = 3;
|
2014-01-28 22:54:03 +04:00
|
|
|
optional string path = 4;
|
2015-10-10 01:49:38 +03:00
|
|
|
optional uint32 mnt_id = 5;
|
2012-07-17 07:25:42 +04:00
|
|
|
}
|
2014-01-30 13:55:58 +04:00
|
|
|
|
|
|
|
message irmap_cache_entry {
|
2015-12-04 15:19:00 +03:00
|
|
|
required uint32 dev = 1 [(criu).dev = true, (criu).odev = true];
|
2014-02-01 12:27:00 +04:00
|
|
|
required uint64 inode = 2;
|
|
|
|
required string path = 3;
|
2014-01-30 13:55:58 +04:00
|
|
|
}
|