From: Josef Sipek Date: Fri, 8 Dec 2006 10:37:28 +0000 (-0800) Subject: [PATCH] struct path: convert parisc X-Git-Tag: v3.12-rc1~32302^2~290 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0c5a5566892de5b240c89b9f72eb1c2e861206a0;p=kernel%2Fkernel-generic.git [PATCH] struct path: convert parisc Signed-off-by: Josef Sipek Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/parisc/hpux/sys_hpux.c b/arch/parisc/hpux/sys_hpux.c index 2e2dc4f..d883092 100644 --- a/arch/parisc/hpux/sys_hpux.c +++ b/arch/parisc/hpux/sys_hpux.c @@ -237,7 +237,7 @@ asmlinkage long hpux_fstatfs(unsigned int fd, struct hpux_statfs __user * buf) file = fget(fd); if (!file) goto out; - error = vfs_statfs_hpux(file->f_dentry, &tmp); + error = vfs_statfs_hpux(file->f_path.dentry, &tmp); if (!error && copy_to_user(buf, &tmp, sizeof(tmp))) error = -EFAULT; fput(file);