summaryrefslogtreecommitdiffstats
path: root/kernel/module.c
diff options
context:
space:
mode:
authorAl Viro2013-01-24 08:18:08 +0100
committerAl Viro2013-02-26 08:46:08 +0100
commit3dadecce20603aa380023c65e6f55f108fd5e952 (patch)
tree9c6b1540787ba3c0c2342447bf1b35836b1e4314 /kernel/module.c
parentdefault SET_PERSONALITY() in linux/elf.h (diff)
downloadkernel-qcow2-linux-3dadecce20603aa380023c65e6f55f108fd5e952.tar.gz
kernel-qcow2-linux-3dadecce20603aa380023c65e6f55f108fd5e952.tar.xz
kernel-qcow2-linux-3dadecce20603aa380023c65e6f55f108fd5e952.zip
switch vfs_getattr() to struct path
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel/module.c')
-rw-r--r--kernel/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/module.c b/kernel/module.c
index b10b048367e1..950076eb3273 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -2519,7 +2519,7 @@ static int copy_module_from_fd(int fd, struct load_info *info)
if (err)
goto out;
- err = vfs_getattr(file->f_vfsmnt, file->f_dentry, &stat);
+ err = vfs_getattr(&file->f_path, &stat);
if (err)
goto out;