diff options
Diffstat (limited to 'fs/compat.c')
| -rw-r--r-- | fs/compat.c | 12 | 
1 files changed, 8 insertions, 4 deletions
| diff --git a/fs/compat.c b/fs/compat.c index 728cd8365384..6b06b6bae35e 100644 --- a/fs/compat.c +++ b/fs/compat.c @@ -37,7 +37,7 @@  #include <linux/ctype.h>  #include <linux/module.h>  #include <linux/dirent.h> -#include <linux/dnotify.h> +#include <linux/fsnotify.h>  #include <linux/highuid.h>  #include <linux/sunrpc/svc.h>  #include <linux/nfsd/nfsd.h> @@ -1307,9 +1307,13 @@ static ssize_t compat_do_readv_writev(int type, struct file *file,  out:  	if (iov != iovstack)  		kfree(iov); -	if ((ret + (type == READ)) > 0) -		dnotify_parent(file->f_dentry, -				(type == READ) ? DN_ACCESS : DN_MODIFY); +	if ((ret + (type == READ)) > 0) { +		struct dentry *dentry = file->f_dentry; +		if (type == READ) +			fsnotify_access(dentry); +		else +			fsnotify_modify(dentry); +	}  	return ret;  } | 
