From: Josef Sipek Date: Fri, 8 Dec 2006 10:37:28 +0000 (-0800) Subject: [PATCH] struct path: convert parisc X-Git-Tag: v2.6.20-rc1~34^2~290 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=0c5a5566892de5b240c89b9f72eb1c2e861206a0;p=linux-2.6-omap-h63xx.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 2e2dc4f2c85..d88309209f5 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);