mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 01:51:51 +00:00
This changes the license of all files in the images/ directory from GPLv2 to the Expat license (so-called MIT). According to git the files have been authored by: Abhishek Dubey Adrian Reber Alexander Mikhalitsyn Alice Frosi Andrei Vagin (Andrew Vagin, Andrey Vagin) Cyrill Gorcunov Dengguangxing Dmitry Safonov Guoyun Sun Kirill Tkhai Kir Kolyshkin Laurent Dufour Michael Holzheu Michał Cłapiński Mike Rapoport Nicolas Viennot Nikita Spiridonov Pavel Emelianov (Pavel Emelyanov) Pavel Tikhomirov Radostin Stoyanov rbruno@gsd.inesc-id.pt Sebastian Pipping Stanislav Kinsburskiy Tycho Andersen Valeriy Vdovin The Expat license (so-called MIT) can be found here: https://opensource.org/licenses/MIT According to that link the correct SPDX short identifier is 'MIT'. https://spdx.org/licenses/MIT.html Signed-off-by: Adrian Reber <areber@redhat.com>
63 lines
1.5 KiB
Protocol Buffer
63 lines
1.5 KiB
Protocol Buffer
// SPDX-License-Identifier: MIT
|
|
|
|
syntax = "proto2";
|
|
|
|
import "opts.proto";
|
|
import "fh.proto";
|
|
import "fown.proto";
|
|
|
|
message inotify_wd_entry {
|
|
required uint32 id = 1;
|
|
required uint64 i_ino = 2;
|
|
required uint32 mask = 3 [(criu).hex = true];
|
|
required uint32 ignored_mask = 4 [(criu).hex = true];
|
|
required uint32 s_dev = 5 [(criu).dev = true];
|
|
required uint32 wd = 6;
|
|
required fh_entry f_handle = 7;
|
|
}
|
|
|
|
message inotify_file_entry {
|
|
required uint32 id = 1;
|
|
required uint32 flags = 2 [(criu).hex = true];
|
|
required fown_entry fown = 4;
|
|
repeated inotify_wd_entry wd = 5;
|
|
}
|
|
|
|
enum mark_type {
|
|
INODE = 1;
|
|
MOUNT = 2;
|
|
}
|
|
|
|
message fanotify_inode_mark_entry {
|
|
required uint64 i_ino = 1;
|
|
required fh_entry f_handle = 2;
|
|
}
|
|
|
|
message fanotify_mount_mark_entry {
|
|
required uint32 mnt_id = 1;
|
|
optional string path = 2;
|
|
}
|
|
|
|
message fanotify_mark_entry {
|
|
required uint32 id = 1;
|
|
required mark_type type = 2;
|
|
|
|
required uint32 mflags = 3 [(criu).hex = true];
|
|
required uint32 mask = 4 [(criu).hex = true];
|
|
required uint32 ignored_mask = 5 [(criu).hex = true];
|
|
required uint32 s_dev = 6 [(criu).dev = true];
|
|
|
|
optional fanotify_inode_mark_entry ie = 7;
|
|
optional fanotify_mount_mark_entry me = 8;
|
|
}
|
|
|
|
message fanotify_file_entry {
|
|
required uint32 id = 1;
|
|
required uint32 flags = 2 [(criu).hex = true];
|
|
required fown_entry fown = 3;
|
|
|
|
required uint32 faflags = 4 [(criu).hex = true];
|
|
required uint32 evflags = 5 [(criu).hex = true];
|
|
repeated fanotify_mark_entry mark = 6;
|
|
}
|