Commit 7a8e1dc3 authored by Trond Myklebust's avatar Trond Myklebust

NFS: Fix a page leak in uncached_readdir()

Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent e7c58e97
...@@ -763,13 +763,14 @@ int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent, ...@@ -763,13 +763,14 @@ int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent,
goto out; goto out;
} }
desc->page_index = 0;
desc->page = page;
if (nfs_readdir_xdr_to_array(desc, page, inode) == -1) { if (nfs_readdir_xdr_to_array(desc, page, inode) == -1) {
status = -EIO; status = -EIO;
goto out_release; goto out_release;
} }
desc->page_index = 0;
desc->page = page;
status = nfs_do_filldir(desc, dirent, filldir); status = nfs_do_filldir(desc, dirent, filldir);
out: out:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment