diff options
Diffstat (limited to 'fs/notify')
-rw-r--r-- | fs/notify/dnotify/dnotify.c | 4 | ||||
-rw-r--r-- | fs/notify/fanotify/fanotify.c | 8 | ||||
-rw-r--r-- | fs/notify/fsnotify.c | 19 | ||||
-rw-r--r-- | fs/notify/inotify/inotify_fsnotify.c | 8 |
4 files changed, 23 insertions, 16 deletions
diff --git a/fs/notify/dnotify/dnotify.c b/fs/notify/dnotify/dnotify.c index 6624c2ee8786..2cae9be120db 100644 --- a/fs/notify/dnotify/dnotify.c +++ b/fs/notify/dnotify/dnotify.c | |||
@@ -83,6 +83,7 @@ static void dnotify_recalc_inode_mask(struct fsnotify_mark *fsn_mark) | |||
83 | * events. | 83 | * events. |
84 | */ | 84 | */ |
85 | static int dnotify_handle_event(struct fsnotify_group *group, | 85 | static int dnotify_handle_event(struct fsnotify_group *group, |
86 | struct fsnotify_mark *mark, | ||
86 | struct fsnotify_event *event) | 87 | struct fsnotify_event *event) |
87 | { | 88 | { |
88 | struct fsnotify_mark *fsn_mark = NULL; | 89 | struct fsnotify_mark *fsn_mark = NULL; |
@@ -130,7 +131,8 @@ static int dnotify_handle_event(struct fsnotify_group *group, | |||
130 | */ | 131 | */ |
131 | static bool dnotify_should_send_event(struct fsnotify_group *group, | 132 | static bool dnotify_should_send_event(struct fsnotify_group *group, |
132 | struct inode *inode, struct vfsmount *mnt, | 133 | struct inode *inode, struct vfsmount *mnt, |
133 | __u32 mask, void *data, int data_type) | 134 | struct fsnotify_mark *mark, __u32 mask, |
135 | void *data, int data_type) | ||
134 | { | 136 | { |
135 | struct fsnotify_mark *fsn_mark; | 137 | struct fsnotify_mark *fsn_mark; |
136 | bool send; | 138 | bool send; |
diff --git a/fs/notify/fanotify/fanotify.c b/fs/notify/fanotify/fanotify.c index c2a3029052bc..abfba45abe2c 100644 --- a/fs/notify/fanotify/fanotify.c +++ b/fs/notify/fanotify/fanotify.c | |||
@@ -114,7 +114,9 @@ static int fanotify_get_response_from_access(struct fsnotify_group *group, | |||
114 | } | 114 | } |
115 | #endif | 115 | #endif |
116 | 116 | ||
117 | static int fanotify_handle_event(struct fsnotify_group *group, struct fsnotify_event *event) | 117 | static int fanotify_handle_event(struct fsnotify_group *group, |
118 | struct fsnotify_mark *mark, | ||
119 | struct fsnotify_event *event) | ||
118 | { | 120 | { |
119 | int ret = 0; | 121 | int ret = 0; |
120 | struct fsnotify_event *notify_event = NULL; | 122 | struct fsnotify_event *notify_event = NULL; |
@@ -214,8 +216,8 @@ static bool should_send_inode_event(struct fsnotify_group *group, struct inode * | |||
214 | } | 216 | } |
215 | 217 | ||
216 | static bool fanotify_should_send_event(struct fsnotify_group *group, struct inode *to_tell, | 218 | static bool fanotify_should_send_event(struct fsnotify_group *group, struct inode *to_tell, |
217 | struct vfsmount *mnt, __u32 mask, void *data, | 219 | struct vfsmount *mnt, struct fsnotify_mark *mark, |
218 | int data_type) | 220 | __u32 mask, void *data, int data_type) |
219 | { | 221 | { |
220 | pr_debug("%s: group=%p to_tell=%p mnt=%p mask=%x data=%p data_type=%d\n", | 222 | pr_debug("%s: group=%p to_tell=%p mnt=%p mask=%x data=%p data_type=%d\n", |
221 | __func__, group, to_tell, mnt, mask, data, data_type); | 223 | __func__, group, to_tell, mnt, mask, data, data_type); |
diff --git a/fs/notify/fsnotify.c b/fs/notify/fsnotify.c index 4678b416241e..59d639996cad 100644 --- a/fs/notify/fsnotify.c +++ b/fs/notify/fsnotify.c | |||
@@ -171,15 +171,16 @@ void __fsnotify_flush_ignored_mask(struct inode *inode, void *data, int data_is) | |||
171 | } | 171 | } |
172 | 172 | ||
173 | static int send_to_group(struct fsnotify_group *group, struct inode *to_tell, | 173 | static int send_to_group(struct fsnotify_group *group, struct inode *to_tell, |
174 | struct vfsmount *mnt, __u32 mask, void *data, | 174 | struct vfsmount *mnt, struct fsnotify_mark *mark, |
175 | int data_is, u32 cookie, const unsigned char *file_name, | 175 | __u32 mask, void *data, int data_is, u32 cookie, |
176 | const unsigned char *file_name, | ||
176 | struct fsnotify_event **event) | 177 | struct fsnotify_event **event) |
177 | { | 178 | { |
178 | pr_debug("%s: group=%p to_tell=%p mnt=%p mask=%x data=%p data_is=%d" | 179 | pr_debug("%s: group=%p to_tell=%p mnt=%p mark=%p mask=%x data=%p" |
179 | " cookie=%d event=%p\n", __func__, group, to_tell, mnt, | 180 | " data_is=%d cookie=%d event=%p\n", __func__, group, to_tell, |
180 | mask, data, data_is, cookie, *event); | 181 | mnt, mark, mask, data, data_is, cookie, *event); |
181 | 182 | ||
182 | if (!group->ops->should_send_event(group, to_tell, mnt, mask, | 183 | if (!group->ops->should_send_event(group, to_tell, mnt, mark, mask, |
183 | data, data_is)) | 184 | data, data_is)) |
184 | return 0; | 185 | return 0; |
185 | if (!*event) { | 186 | if (!*event) { |
@@ -189,7 +190,7 @@ static int send_to_group(struct fsnotify_group *group, struct inode *to_tell, | |||
189 | if (!*event) | 190 | if (!*event) |
190 | return -ENOMEM; | 191 | return -ENOMEM; |
191 | } | 192 | } |
192 | return group->ops->handle_event(group, *event); | 193 | return group->ops->handle_event(group, mark, *event); |
193 | } | 194 | } |
194 | 195 | ||
195 | static bool needed_by_vfsmount(__u32 test_mask, struct vfsmount *mnt) | 196 | static bool needed_by_vfsmount(__u32 test_mask, struct vfsmount *mnt) |
@@ -252,7 +253,7 @@ int fsnotify(struct inode *to_tell, __u32 mask, void *data, int data_is, | |||
252 | group = mark->group; | 253 | group = mark->group; |
253 | if (!group) | 254 | if (!group) |
254 | continue; | 255 | continue; |
255 | ret = send_to_group(group, to_tell, NULL, mask, | 256 | ret = send_to_group(group, to_tell, NULL, mark, mask, |
256 | data, data_is, cookie, file_name, | 257 | data, data_is, cookie, file_name, |
257 | &event); | 258 | &event); |
258 | if (ret) | 259 | if (ret) |
@@ -271,7 +272,7 @@ int fsnotify(struct inode *to_tell, __u32 mask, void *data, int data_is, | |||
271 | group = mark->group; | 272 | group = mark->group; |
272 | if (!group) | 273 | if (!group) |
273 | continue; | 274 | continue; |
274 | ret = send_to_group(group, to_tell, mnt, mask, | 275 | ret = send_to_group(group, to_tell, mnt, mark, mask, |
275 | data, data_is, cookie, file_name, | 276 | data, data_is, cookie, file_name, |
276 | &event); | 277 | &event); |
277 | if (ret) | 278 | if (ret) |
diff --git a/fs/notify/inotify/inotify_fsnotify.c b/fs/notify/inotify/inotify_fsnotify.c index 3c506e0364cc..dbd76bbb3e21 100644 --- a/fs/notify/inotify/inotify_fsnotify.c +++ b/fs/notify/inotify/inotify_fsnotify.c | |||
@@ -89,7 +89,9 @@ static struct fsnotify_event *inotify_merge(struct list_head *list, | |||
89 | return last_event; | 89 | return last_event; |
90 | } | 90 | } |
91 | 91 | ||
92 | static int inotify_handle_event(struct fsnotify_group *group, struct fsnotify_event *event) | 92 | static int inotify_handle_event(struct fsnotify_group *group, |
93 | struct fsnotify_mark *mark, | ||
94 | struct fsnotify_event *event) | ||
93 | { | 95 | { |
94 | struct fsnotify_mark *fsn_mark; | 96 | struct fsnotify_mark *fsn_mark; |
95 | struct inotify_inode_mark *i_mark; | 97 | struct inotify_inode_mark *i_mark; |
@@ -148,8 +150,8 @@ static void inotify_freeing_mark(struct fsnotify_mark *fsn_mark, struct fsnotify | |||
148 | } | 150 | } |
149 | 151 | ||
150 | static bool inotify_should_send_event(struct fsnotify_group *group, struct inode *inode, | 152 | static bool inotify_should_send_event(struct fsnotify_group *group, struct inode *inode, |
151 | struct vfsmount *mnt, __u32 mask, void *data, | 153 | struct vfsmount *mnt, struct fsnotify_mark *mark, |
152 | int data_type) | 154 | __u32 mask, void *data, int data_type) |
153 | { | 155 | { |
154 | struct fsnotify_mark *fsn_mark; | 156 | struct fsnotify_mark *fsn_mark; |
155 | bool send; | 157 | bool send; |