summaryrefslogtreecommitdiffstats
path: root/fs/afs/mntpt.c
diff options
context:
space:
mode:
authorJosef Sipek2006-12-08 11:36:50 +0100
committerLinus Torvalds2006-12-08 17:28:43 +0100
commit1d56a96956158d0fb1902c56ffa0e38caa39bddb (patch)
tree01dce7af575d544411609c5746992bddf08e897a /fs/afs/mntpt.c
parent[PATCH] struct path: convert adfs (diff)
downloadkernel-qcow2-linux-1d56a96956158d0fb1902c56ffa0e38caa39bddb.tar.gz
kernel-qcow2-linux-1d56a96956158d0fb1902c56ffa0e38caa39bddb.tar.xz
kernel-qcow2-linux-1d56a96956158d0fb1902c56ffa0e38caa39bddb.zip
[PATCH] struct path: convert afs
Signed-off-by: Josef Sipek <jsipek@fsl.cs.sunysb.edu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/afs/mntpt.c')
-rw-r--r--fs/afs/mntpt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/afs/mntpt.c b/fs/afs/mntpt.c
index 99785a79d043..f33b1a81a761 100644
--- a/fs/afs/mntpt.c
+++ b/fs/afs/mntpt.c
@@ -136,11 +136,11 @@ static int afs_mntpt_open(struct inode *inode, struct file *file)
{
kenter("%p,%p{%p{%s},%s}",
inode, file,
- file->f_dentry->d_parent,
- file->f_dentry->d_parent ?
- file->f_dentry->d_parent->d_name.name :
+ file->f_path.dentry->d_parent,
+ file->f_path.dentry->d_parent ?
+ file->f_path.dentry->d_parent->d_name.name :
(const unsigned char *) "",
- file->f_dentry->d_name.name);
+ file->f_path.dentry->d_name.name);
return -EREMOTE;
} /* end afs_mntpt_open() */