diff options
author | Josef Sipek <jsipek@fsl.cs.sunysb.edu> | 2006-12-08 02:37:02 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 08:28:45 -0800 |
commit | 7706a9d6183da7701a9bca7155bccfcd182c670a (patch) | |
tree | e9bec53ca3e9ea35e2872b46fc2134391f20a80c /fs/fuse/dir.c | |
parent | 1f70ceccb8e9159118c1ac65a245b16406d9e721 (diff) | |
download | linux-3.10-7706a9d6183da7701a9bca7155bccfcd182c670a.tar.gz linux-3.10-7706a9d6183da7701a9bca7155bccfcd182c670a.tar.bz2 linux-3.10-7706a9d6183da7701a9bca7155bccfcd182c670a.zip |
[PATCH] struct path: convert fuse
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/fuse/dir.c')
-rw-r--r-- | fs/fuse/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c index 1cabdb229ad..40080477ceb 100644 --- a/fs/fuse/dir.c +++ b/fs/fuse/dir.c @@ -856,7 +856,7 @@ static int fuse_readdir(struct file *file, void *dstbuf, filldir_t filldir) int err; size_t nbytes; struct page *page; - struct inode *inode = file->f_dentry->d_inode; + struct inode *inode = file->f_path.dentry->d_inode; struct fuse_conn *fc = get_fuse_conn(inode); struct fuse_req *req; |