diff options
author | Eric Paris <eparis@redhat.com> | 2010-07-28 10:18:39 -0400 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2010-07-28 10:18:53 -0400 |
commit | 2612abb51b11ffd2d75c472b11178115f5808909 (patch) | |
tree | 5657a07a347984cc1f34117d7ef88af73ea12b60 /fs/notify/fsnotify.c | |
parent | 0215054f377ce5ac4ffc27b26b13b3f10e6410e6 (diff) |
fsnotify: cleanup should_send_event
The change to use srcu and walk the object list rather than the global
fsnotify_group list means that should_send_event is no longer needed for a
number of groups and can be simplified for others. Do that.
Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'fs/notify/fsnotify.c')
-rw-r--r-- | fs/notify/fsnotify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/notify/fsnotify.c b/fs/notify/fsnotify.c index 59d639996cad..53b31f46d698 100644 --- a/fs/notify/fsnotify.c +++ b/fs/notify/fsnotify.c | |||
@@ -180,8 +180,8 @@ static int send_to_group(struct fsnotify_group *group, struct inode *to_tell, | |||
180 | " data_is=%d cookie=%d event=%p\n", __func__, group, to_tell, | 180 | " data_is=%d cookie=%d event=%p\n", __func__, group, to_tell, |
181 | mnt, mark, mask, data, data_is, cookie, *event); | 181 | mnt, mark, mask, data, data_is, cookie, *event); |
182 | 182 | ||
183 | if (!group->ops->should_send_event(group, to_tell, mnt, mark, mask, | 183 | if (group->ops->should_send_event(group, to_tell, mnt, mark, mask, |
184 | data, data_is)) | 184 | data, data_is) == false) |
185 | return 0; | 185 | return 0; |
186 | if (!*event) { | 186 | if (!*event) { |
187 | *event = fsnotify_create_event(to_tell, mask, data, | 187 | *event = fsnotify_create_event(to_tell, mask, data, |