From: Josef Sipek Signed-off-by: Josef Sipek Signed-off-by: Andrew Morton --- arch/parisc/hpux/sys_hpux.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN arch/parisc/hpux/sys_hpux.c~struct-path-convert-parisc arch/parisc/hpux/sys_hpux.c --- a/arch/parisc/hpux/sys_hpux.c~struct-path-convert-parisc +++ a/arch/parisc/hpux/sys_hpux.c @@ -237,7 +237,7 @@ asmlinkage long hpux_fstatfs(unsigned in 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); _