diff options
Diffstat (limited to 'fs/notify/fanotify/fanotify_user.c')
-rw-r--r-- | fs/notify/fanotify/fanotify_user.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/notify/fanotify/fanotify_user.c b/fs/notify/fanotify/fanotify_user.c index 618867e4d30..84155841a02 100644 --- a/fs/notify/fanotify/fanotify_user.c +++ b/fs/notify/fanotify/fanotify_user.c | |||
@@ -1,3 +1,4 @@ | |||
1 | #include <linux/fanotify.h> | ||
1 | #include <linux/fcntl.h> | 2 | #include <linux/fcntl.h> |
2 | #include <linux/file.h> | 3 | #include <linux/file.h> |
3 | #include <linux/fs.h> | 4 | #include <linux/fs.h> |
@@ -14,7 +15,7 @@ | |||
14 | 15 | ||
15 | #include <asm/ioctls.h> | 16 | #include <asm/ioctls.h> |
16 | 17 | ||
17 | #include "fanotify.h" | 18 | extern const struct fsnotify_ops fanotify_fsnotify_ops; |
18 | 19 | ||
19 | static struct kmem_cache *fanotify_mark_cache __read_mostly; | 20 | static struct kmem_cache *fanotify_mark_cache __read_mostly; |
20 | 21 | ||
@@ -102,7 +103,7 @@ static ssize_t fill_event_metadata(struct fsnotify_group *group, | |||
102 | 103 | ||
103 | metadata->event_len = FAN_EVENT_METADATA_LEN; | 104 | metadata->event_len = FAN_EVENT_METADATA_LEN; |
104 | metadata->vers = FANOTIFY_METADATA_VERSION; | 105 | metadata->vers = FANOTIFY_METADATA_VERSION; |
105 | metadata->mask = fanotify_outgoing_mask(event->mask); | 106 | metadata->mask = event->mask & FAN_ALL_OUTGOING_EVENTS; |
106 | metadata->pid = pid_vnr(event->tgid); | 107 | metadata->pid = pid_vnr(event->tgid); |
107 | metadata->fd = create_fd(group, event); | 108 | metadata->fd = create_fd(group, event); |
108 | 109 | ||