mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 09:58:09 +00:00
When we have opened and unlinked chr or blk device, we shouls also take care of their rdev value. Thus -- new field in image and some new steps on dump and restore. Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
10 lines
200 B
Protocol Buffer
10 lines
200 B
Protocol Buffer
message ghost_file_entry {
|
|
required uint32 uid = 1;
|
|
required uint32 gid = 2;
|
|
required uint32 mode = 3;
|
|
|
|
optional uint32 dev = 4;
|
|
optional uint64 ino = 5;
|
|
optional uint32 rdev = 6;
|
|
}
|