summaryrefslogtreecommitdiffstats
path: root/fs/fat/file.c
diff options
context:
space:
mode:
authorJosef "Jeff" Sipek2006-12-08 11:36:39 +0100
committerLinus Torvalds2006-12-08 17:28:41 +0100
commitdba32306099d6155b773ebe8fc5bcfab60d075d6 (patch)
tree08feee3f45138488094eea0b95b718d3cca754bd /fs/fat/file.c
parent[PATCH] ext4: change uses of f_{dentry, vfsmnt} to use f_path (diff)
downloadkernel-qcow2-linux-dba32306099d6155b773ebe8fc5bcfab60d075d6.tar.gz
kernel-qcow2-linux-dba32306099d6155b773ebe8fc5bcfab60d075d6.tar.xz
kernel-qcow2-linux-dba32306099d6155b773ebe8fc5bcfab60d075d6.zip
[PATCH] fat: change uses of f_{dentry,vfsmnt} to use f_path
Change all the uses of f_{dentry,vfsmnt} to f_path.{dentry,mnt} in the fat filesystem. Signed-off-by: Josef "Jeff" Sipek <jsipek@cs.sunysb.edu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/fat/file.c')
-rw-r--r--fs/fat/file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fat/file.c b/fs/fat/file.c
index 0aa813d944a6..c1237b70c1fe 100644
--- a/fs/fat/file.c
+++ b/fs/fat/file.c
@@ -92,7 +92,7 @@ int fat_generic_ioctl(struct inode *inode, struct file *filp,
}
/* This MUST be done before doing anything irreversible... */
- err = notify_change(filp->f_dentry, &ia);
+ err = notify_change(filp->f_path.dentry, &ia);
if (err)
goto up;