diff options
author | Amir Goldstein <amir73il@gmail.com> | 2018-04-21 02:10:50 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2018-05-18 15:58:22 +0300 |
commit | 5b0457ad021f3f7e3d9f4b84e7c3080748f383f8 (patch) | |
tree | 71075e48e360e92dc139df2eb4872e911cacb6c0 /fs/notify/fsnotify.h | |
parent | d6f7b98bc8147abd290ead82922f8d83c525fb42 (diff) | |
download | linux-5b0457ad021f3f7e3d9f4b84e7c3080748f383f8.tar.xz |
fsnotify: remove redundant arguments to handle_event()
inode_mark and vfsmount_mark arguments are passed to handle_event()
operation as function arguments as well as on iter_info struct.
The difference is that iter_info struct may contain marks that should
not be handled and are represented as NULL arguments to inode_mark or
vfsmount_mark.
Instead of passing the inode_mark and vfsmount_mark arguments, add
a report_mask member to iter_info struct to indicate which marks should
be handled, versus marks that should only be kept alive during user
wait.
This change is going to be used for passing more mark types
with handle_event() (i.e. super block marks).
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/notify/fsnotify.h')
-rw-r--r-- | fs/notify/fsnotify.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/notify/fsnotify.h b/fs/notify/fsnotify.h index 60f365dc1408..34515d2c4ba3 100644 --- a/fs/notify/fsnotify.h +++ b/fs/notify/fsnotify.h @@ -9,12 +9,6 @@ #include "../mount.h" -struct fsnotify_iter_info { - struct fsnotify_mark *inode_mark; - struct fsnotify_mark *vfsmount_mark; - int srcu_idx; -}; - /* destroy all events sitting in this groups notification queue */ extern void fsnotify_flush_notify(struct fsnotify_group *group); |