diff options
author | Josef Sipek <jsipek@fsl.cs.sunysb.edu> | 2006-12-08 02:36:53 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 08:28:44 -0800 |
commit | 61a8424ab8f611d199bfc8ca329ec0ea77a4d4ea (patch) | |
tree | 0507b54ce9abe71645554e0117358743c72ff947 /fs/bfs | |
parent | 28f375fd6ff266d8e321648b36456f696cfae220 (diff) | |
download | linux-3.10-61a8424ab8f611d199bfc8ca329ec0ea77a4d4ea.tar.gz linux-3.10-61a8424ab8f611d199bfc8ca329ec0ea77a4d4ea.tar.bz2 linux-3.10-61a8424ab8f611d199bfc8ca329ec0ea77a4d4ea.zip |
[PATCH] struct path: convert bfs
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/bfs')
-rw-r--r-- | fs/bfs/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bfs/dir.c b/fs/bfs/dir.c index a650f1d0b85..2a746e688df 100644 --- a/fs/bfs/dir.c +++ b/fs/bfs/dir.c @@ -27,7 +27,7 @@ static struct buffer_head * bfs_find_entry(struct inode * dir, static int bfs_readdir(struct file * f, void * dirent, filldir_t filldir) { - struct inode * dir = f->f_dentry->d_inode; + struct inode * dir = f->f_path.dentry->d_inode; struct buffer_head * bh; struct bfs_dirent * de; unsigned int offset; |