2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 06:15:24 +00:00

fsnotify: Rename collect_mark to collect_inotify_mark

We will need collect_fanotify_mark helper so unify naming scheme.

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:05 +04:00
committed by Pavel Emelyanov
parent a5f5b17d56
commit a124f7c67d

View File

@@ -254,7 +254,7 @@ static struct file_desc_ops inotify_desc_ops = {
.open = open_inotify_fd,
};
static int collect_mark(struct fsnotify_mark_info *mark)
static int collect_inotify_mark(struct fsnotify_mark_info *mark)
{
struct fsnotify_file_info *p;
@@ -288,7 +288,7 @@ static int collect_one_wd(void *o, ProtobufCMessage *msg)
struct fsnotify_mark_info *mark = o;
mark->iwe = pb_msg(msg, InotifyWdEntry);
return collect_mark(mark);
return collect_inotify_mark(mark);
}
int collect_inotify(void)