diff options
author | Fabian Frederick <[email protected]> | 2020-05-12 20:18:36 +0200 |
---|---|---|
committer | Jan Kara <[email protected]> | 2020-05-13 17:15:43 +0200 |
commit | c5e443cb7b6ce6c6a5f49640359f6e834d6a6ed4 (patch) | |
tree | 13b893d5772fca5a6f3715a2f77b218c42b9bef9 | |
parent | 191e1656d18c47d8815f6618431a387d99944884 (diff) |
fanotify: remove reference to fill_event_metadata()
fill_event_metadata() was removed in commit bb2f7b4542c7
("fanotify: open code fill_event_metadata()")
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Fabian Frederick <[email protected]>
Reviewed-by: Amir Goldstein <[email protected]>
Signed-off-by: Jan Kara <[email protected]>
-rw-r--r-- | fs/notify/fanotify/fanotify_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c index 42cb794c62ac..02a314acc757 100644 --- a/fs/notify/fanotify/fanotify_user.c +++ b/fs/notify/fanotify/fanotify_user.c @@ -328,7 +328,7 @@ static ssize_t copy_event_to_user(struct fsnotify_group *group, ret = -EFAULT; /* * Sanity check copy size in case get_one_event() and - * fill_event_metadata() event_len sizes ever get out of sync. + * event_len sizes ever get out of sync. */ if (WARN_ON_ONCE(metadata.event_len > count)) goto out_close_fd; |