diff options
Diffstat (limited to 'fs/nfsd/vfs.c')
-rw-r--r-- | fs/nfsd/vfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index 5e0bf3917607..4f2cd3d27566 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c | |||
@@ -45,7 +45,7 @@ | |||
45 | #endif /* CONFIG_NFSD_V3 */ | 45 | #endif /* CONFIG_NFSD_V3 */ |
46 | #include <linux/nfsd/nfsfh.h> | 46 | #include <linux/nfsd/nfsfh.h> |
47 | #include <linux/quotaops.h> | 47 | #include <linux/quotaops.h> |
48 | #include <linux/dnotify.h> | 48 | #include <linux/fsnotify.h> |
49 | #include <linux/posix_acl.h> | 49 | #include <linux/posix_acl.h> |
50 | #include <linux/posix_acl_xattr.h> | 50 | #include <linux/posix_acl_xattr.h> |
51 | #ifdef CONFIG_NFSD_V4 | 51 | #ifdef CONFIG_NFSD_V4 |
@@ -860,7 +860,7 @@ nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file, | |||
860 | nfsdstats.io_read += err; | 860 | nfsdstats.io_read += err; |
861 | *count = err; | 861 | *count = err; |
862 | err = 0; | 862 | err = 0; |
863 | dnotify_parent(file->f_dentry, DN_ACCESS); | 863 | fsnotify_access(file->f_dentry); |
864 | } else | 864 | } else |
865 | err = nfserrno(err); | 865 | err = nfserrno(err); |
866 | out: | 866 | out: |
@@ -916,7 +916,7 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file, | |||
916 | set_fs(oldfs); | 916 | set_fs(oldfs); |
917 | if (err >= 0) { | 917 | if (err >= 0) { |
918 | nfsdstats.io_write += cnt; | 918 | nfsdstats.io_write += cnt; |
919 | dnotify_parent(file->f_dentry, DN_MODIFY); | 919 | fsnotify_modify(file->f_dentry); |
920 | } | 920 | } |
921 | 921 | ||
922 | /* clear setuid/setgid flag after write */ | 922 | /* clear setuid/setgid flag after write */ |