mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
We will use them to fast lookup of targets files. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
22 lines
463 B
Protocol Buffer
22 lines
463 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "fown.proto";
|
|
|
|
message eventpoll_tfd_entry {
|
|
required uint32 id = 1;
|
|
required uint32 tfd = 2;
|
|
required uint32 events = 3;
|
|
required uint64 data = 4;
|
|
|
|
/* to find dup'ed target files */
|
|
optional uint32 dev = 5;
|
|
optional uint64 inode = 6;
|
|
optional uint64 pos = 7;
|
|
}
|
|
|
|
message eventpoll_file_entry {
|
|
required uint32 id = 1;
|
|
required uint32 flags = 2;
|
|
required fown_entry fown = 3;
|
|
repeated eventpoll_tfd_entry tfd = 4;
|
|
}
|