diff options
author | Josef "Jeff" Sipek <jsipek@cs.sunysb.edu> | 2006-12-08 02:36:44 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 08:28:43 -0800 |
commit | d3ac7f892b7d07d61d0895caa4f6e190e43112f8 (patch) | |
tree | 0ff35e7e5ab822b600075d79910d3cc136ba07ef /mm/filemap_xip.c | |
parent | f3a43f3f64bff8e205c3702f6b4804d66e306848 (diff) | |
download | kernel_goldelico_gta04-d3ac7f892b7d07d61d0895caa4f6e190e43112f8.zip kernel_goldelico_gta04-d3ac7f892b7d07d61d0895caa4f6e190e43112f8.tar.gz kernel_goldelico_gta04-d3ac7f892b7d07d61d0895caa4f6e190e43112f8.tar.bz2 |
[PATCH] mm: change uses of f_{dentry,vfsmnt} to use f_path
Change all the uses of f_{dentry,vfsmnt} to f_path.{dentry,mnt} in linux/mm/.
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 'mm/filemap_xip.c')
-rw-r--r-- | mm/filemap_xip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/filemap_xip.c b/mm/filemap_xip.c index b4fd0d7..8d667617 100644 --- a/mm/filemap_xip.c +++ b/mm/filemap_xip.c @@ -379,7 +379,7 @@ xip_file_write(struct file *filp, const char __user *buf, size_t len, if (count == 0) goto out_backing; - ret = remove_suid(filp->f_dentry); + ret = remove_suid(filp->f_path.dentry); if (ret) goto out_backing; |