[PATCH] ntfs: 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 ntfs
filesystem code.

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>
This commit is contained in:
Josef "Jeff" Sipek
2006-12-08 02:36:41 -08:00
committed by Linus Torvalds
부모 7eaa36e2d4
커밋 20d29372d3
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제

파일 보기

@@ -2162,7 +2162,7 @@ static ssize_t ntfs_file_aio_write_nolock(struct kiocb *iocb,
goto out;
if (!count)
goto out;
err = remove_suid(file->f_dentry);
err = remove_suid(file->f_path.dentry);
if (err)
goto out;
file_update_time(file);