2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-30 22:05:36 +00:00
Files
criu/protobuf/mm.proto
Pavel Emelyanov 54f4f889a5 mm: Move VmaEntries from separate image into Mm one
When writing VMAs we perform too many small writes into vma-.img files.
This can be easily fixed by moving the vma-s into mm-s, all the more
so they cannot be splitted from each other.

Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
2014-02-04 11:44:05 +04:00

21 lines
537 B
Protocol Buffer

import "vma.proto";
message mm_entry {
required uint64 mm_start_code = 1;
required uint64 mm_end_code = 2;
required uint64 mm_start_data = 3;
required uint64 mm_end_data = 4;
required uint64 mm_start_stack = 5;
required uint64 mm_start_brk = 6;
required uint64 mm_brk = 7;
required uint64 mm_arg_start = 8;
required uint64 mm_arg_end = 9;
required uint64 mm_env_start = 10;
required uint64 mm_env_end = 11;
required uint32 exe_file_id = 12;
repeated uint64 mm_saved_auxv = 13;
repeated vma_entry vmas = 14;
}