Skip to content

Commit

Permalink
NFS: Fix a page leak in nfs_do_filldir()
Browse files Browse the repository at this point in the history
nfs_do_filldir() must always free desc->page when it is done, otherwise
we end up leaking the page.

Also remove unused variable 'dentry'.

Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
  • Loading branch information
Trond Myklebust authored and Trond Myklebust committed Nov 22, 2010
1 parent 5c34685 commit e7c58e9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions fs/nfs/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -701,11 +701,12 @@ int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
int res = 0;
struct nfs_cache_array *array = NULL;
unsigned int d_type = DT_UNKNOWN;
struct dentry *dentry = NULL;

array = nfs_readdir_get_array(desc->page);
if (IS_ERR(array))
return PTR_ERR(array);
if (IS_ERR(array)) {
res = PTR_ERR(array);
goto out;
}

for (i = desc->cache_entry_index; i < array->size; i++) {
d_type = DT_UNKNOWN;
Expand All @@ -726,9 +727,8 @@ int nfs_do_filldir(nfs_readdir_descriptor_t *desc, void *dirent,
desc->eof = 1;

nfs_readdir_release_array(desc->page);
out:
cache_page_release(desc);
if (dentry != NULL)
dput(dentry);
dfprintk(DIRCACHE, "NFS: nfs_do_filldir() filling ended @ cookie %Lu; returning = %d\n",
(unsigned long long)*desc->dir_cookie, res);
return res;
Expand Down

0 comments on commit e7c58e9

Please sign in to comment.