diff options
author | Christoph Lameter <clameter@sgi.com> | 2008-02-15 08:48:28 -0800 |
---|---|---|
committer | Christoph Lameter <clameter@sgi.com> | 2008-02-15 08:48:28 -0800 |
commit | 6f157c1d268d5888ca44c589dccd01729c4172f6 (patch) | |
tree | e439df35a39c06df3665ec30b406406f08e82177 /arch/alpha/kernel/osf_sys.c | |
parent | c5974932c1e8514d3478573bb52beebeb2c786dd (diff) | |
parent | 4ee29f6a52158cea526b16a44ae38643946103ec (diff) | |
download | op-kernel-dev-6f157c1d268d5888ca44c589dccd01729c4172f6.zip op-kernel-dev-6f157c1d268d5888ca44c589dccd01729c4172f6.tar.gz |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'arch/alpha/kernel/osf_sys.c')
-rw-r--r-- | arch/alpha/kernel/osf_sys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c index 973c5c3..8c71daf 100644 --- a/arch/alpha/kernel/osf_sys.c +++ b/arch/alpha/kernel/osf_sys.c @@ -259,8 +259,8 @@ osf_statfs(char __user *path, struct osf_statfs __user *buffer, unsigned long bu retval = user_path_walk(path, &nd); if (!retval) { - retval = do_osf_statfs(nd.dentry, buffer, bufsiz); - path_release(&nd); + retval = do_osf_statfs(nd.path.dentry, buffer, bufsiz); + path_put(&nd.path); } return retval; } |