diff options
author | Josef "Jeff" Sipek <jsipek@cs.sunysb.edu> | 2006-12-08 02:36:38 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 08:28:41 -0800 |
commit | 9d549890e69156800878a486f832e92d8f3d7c97 (patch) | |
tree | 8da371c871c0fff5cce76a767349edd76457f43e /fs/ext4/file.c | |
parent | fe21a69389165b9641a8d0b89e00a71c4e5f5d59 (diff) | |
download | kernel_samsung_espresso10-9d549890e69156800878a486f832e92d8f3d7c97.zip kernel_samsung_espresso10-9d549890e69156800878a486f832e92d8f3d7c97.tar.gz kernel_samsung_espresso10-9d549890e69156800878a486f832e92d8f3d7c97.tar.bz2 |
[PATCH] ext4: 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 ext4
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/ext4/file.c')
-rw-r--r-- | fs/ext4/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/file.c b/fs/ext4/file.c index 0b622c0..3bbc24b 100644 --- a/fs/ext4/file.c +++ b/fs/ext4/file.c @@ -52,7 +52,7 @@ ext4_file_write(struct kiocb *iocb, const struct iovec *iov, unsigned long nr_segs, loff_t pos) { struct file *file = iocb->ki_filp; - struct inode *inode = file->f_dentry->d_inode; + struct inode *inode = file->f_path.dentry->d_inode; ssize_t ret; int err; |