mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-26 03:25:30 +00:00
We're aligning members and number in protobuf files from the very beginning for readability sake. So fix up newer ones which were not. Also use /* */ comments, not //. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
28 lines
747 B
Protocol Buffer
28 lines
747 B
Protocol Buffer
// This one contains statistics about dump/restore process
|
|
message dump_stats_entry {
|
|
required uint32 freezing_time = 1;
|
|
required uint32 frozen_time = 2;
|
|
required uint32 memdump_time = 3;
|
|
required uint32 memwrite_time = 4;
|
|
|
|
required uint64 pages_scanned = 5;
|
|
required uint64 pages_skipped_parent = 6;
|
|
required uint64 pages_written = 7;
|
|
|
|
optional uint32 irmap_resolve = 8;
|
|
}
|
|
|
|
message restore_stats_entry {
|
|
required uint64 pages_compared = 1;
|
|
required uint64 pages_skipped_cow = 2;
|
|
|
|
required uint32 forking_time = 3;
|
|
required uint32 restore_time = 4;
|
|
|
|
optional uint64 pages_restored = 5;
|
|
}
|
|
|
|
message stats_entry {
|
|
optional dump_stats_entry dump = 1;
|
|
optional restore_stats_entry restore = 2;
|
|
}
|