mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
This translates pagemap flags into strings for easier readability. Signed-off-by: Adrian Reber <areber@redhat.com> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
14 lines
295 B
Protocol Buffer
14 lines
295 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "opts.proto";
|
|
|
|
message pagemap_head {
|
|
required uint32 pages_id = 1;
|
|
}
|
|
|
|
message pagemap_entry {
|
|
required uint64 vaddr = 1 [(criu).hex = true];
|
|
required uint32 nr_pages = 2;
|
|
optional bool in_parent = 3;
|
|
optional uint32 flags = 4 [(criu).flags = "pmap.flags" ];
|
|
}
|