diff options
Diffstat (limited to 'fs/stat.c')
| -rw-r--r-- | fs/stat.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/stat.c b/fs/stat.c index 8806b8997d2..c733dc5753a 100644 --- a/fs/stat.c +++ b/fs/stat.c @@ -4,7 +4,7 @@   *  Copyright (C) 1991, 1992  Linus Torvalds   */ -#include <linux/module.h> +#include <linux/export.h>  #include <linux/mm.h>  #include <linux/errno.h>  #include <linux/file.h> @@ -307,7 +307,7 @@ SYSCALL_DEFINE4(readlinkat, int, dfd, const char __user *, pathname,  		if (inode->i_op->readlink) {  			error = security_inode_readlink(path.dentry);  			if (!error) { -				touch_atime(path.mnt, path.dentry); +				touch_atime(&path);  				error = inode->i_op->readlink(path.dentry,  							      buf, bufsiz);  			}  |