mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-19 09:35:12 +00:00
protobuf: fsnotify -- Add fanotify entries
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
parent
78259da381
commit
4629ecd391
1 changed files with 28 additions and 0 deletions
|
|
@ -16,3 +16,31 @@ message inotify_file_entry {
|
|||
required uint32 flags = 2;
|
||||
required fown_entry fown = 4;
|
||||
}
|
||||
|
||||
enum mark_type {
|
||||
INODE = 1;
|
||||
MOUNT = 2;
|
||||
}
|
||||
|
||||
message fanotify_mark_entry {
|
||||
required uint32 id = 1;
|
||||
required mark_type type = 2;
|
||||
|
||||
required uint64 i_ino = 3;
|
||||
required uint32 s_dev = 4;
|
||||
required uint32 mflags = 5;
|
||||
required uint32 mask = 6;
|
||||
required uint32 ignored_mask = 7;
|
||||
|
||||
optional uint32 mnt_id = 8;
|
||||
optional fh_entry f_handle = 9;
|
||||
}
|
||||
|
||||
message fanotify_file_entry {
|
||||
required uint32 id = 1;
|
||||
required uint32 flags = 2;
|
||||
required fown_entry fown = 3;
|
||||
|
||||
required uint32 faflags = 4;
|
||||
required uint32 evflags = 5;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue