diff options
author | Amir Goldstein <amir73il@gmail.com> | 2020-07-08 14:11:39 +0300 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2020-07-15 17:36:47 +0200 |
commit | 9a02aa40dd5a95a62b184365d5b7847e8e6a3c96 (patch) | |
tree | 8cdf7a42a8736e514ed1ce415d3a3f6ae1fa8c0d /fs/nfsd/filecache.c | |
parent | cbcf47adc8aadbcaa741391ccfd96f764b50be7e (diff) |
nfsd: use fsnotify_data_inode() to get the unlinked inode
The inode argument to handle_event() is about to become obsolete.
Link: https://lore.kernel.org/r/20200708111156.24659-4-amir73il@gmail.com
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/nfsd/filecache.c')
-rw-r--r-- | fs/nfsd/filecache.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/nfsd/filecache.c b/fs/nfsd/filecache.c index 82198d747c4c..ace8e5c30952 100644 --- a/fs/nfsd/filecache.c +++ b/fs/nfsd/filecache.c @@ -599,11 +599,13 @@ static struct notifier_block nfsd_file_lease_notifier = { static int nfsd_file_fsnotify_handle_event(struct fsnotify_group *group, - struct inode *inode, + struct inode *to_tell, u32 mask, const void *data, int data_type, const struct qstr *file_name, u32 cookie, struct fsnotify_iter_info *iter_info) { + struct inode *inode = fsnotify_data_inode(data, data_type); + trace_nfsd_file_fsnotify_handle_event(inode, mask); /* Should be no marks on non-regular files */ |