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:54 -0400 |
commit | 03930979afa63e079e9aefd4d3dd429240711027 (patch) | |
tree | 7df0097a8d51b9f71b4f10a0f49e773fb41d9ba5 /fs/notify/fsnotify.c | |
parent | 2612abb51b11ffd2d75c472b11178115f5808909 (diff) |
fsnotify: remove the global masks
Because we walk the object->fsnotify_marks list instead of the global
fsnotify groups list we don't need the fsnotify_inode_mask and
fsnotify_vfsmount_mask as these were simply shortcuts in fsnotify() for
performance. They are now extra checks, rip them out.
Signed-off-by: Eric Paris <eparis@redhat.com>
Diffstat (limited to 'fs/notify/fsnotify.c')
-rw-r--r-- | fs/notify/fsnotify.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/notify/fsnotify.c b/fs/notify/fsnotify.c index 53b31f46d698..9ba29ee747cf 100644 --- a/fs/notify/fsnotify.c +++ b/fs/notify/fsnotify.c | |||
@@ -227,11 +227,6 @@ int fsnotify(struct inode *to_tell, __u32 mask, void *data, int data_is, | |||
227 | if (mask & FS_MODIFY) | 227 | if (mask & FS_MODIFY) |
228 | __fsnotify_flush_ignored_mask(to_tell, data, data_is); | 228 | __fsnotify_flush_ignored_mask(to_tell, data, data_is); |
229 | 229 | ||
230 | /* if none of the directed listeners or vfsmount listeners care */ | ||
231 | if (!(test_mask & fsnotify_inode_mask) && | ||
232 | !(test_mask & fsnotify_vfsmount_mask)) | ||
233 | return 0; | ||
234 | |||
235 | if (data_is == FSNOTIFY_EVENT_FILE) | 230 | if (data_is == FSNOTIFY_EVENT_FILE) |
236 | mnt = ((struct file *)data)->f_path.mnt; | 231 | mnt = ((struct file *)data)->f_path.mnt; |
237 | 232 | ||