2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-30 13:58:34 +00:00

fsnotify: Extend fsnotify_file_info to carry fanotify file entries

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Cyrill Gorcunov
2013-01-14 20:48:02 +04:00
committed by Pavel Emelyanov
parent 67ccef7e1b
commit e73f99300d

View File

@@ -52,7 +52,10 @@ struct fsnotify_mark_info {
struct fsnotify_file_info { struct fsnotify_file_info {
struct list_head list; struct list_head list;
union {
InotifyFileEntry *ife; InotifyFileEntry *ife;
FanotifyFileEntry *ffe;
};
struct list_head marks; struct list_head marks;
struct file_desc d; struct file_desc d;
}; };