diff options
author | J. Bruce Fields <bfields@redhat.com> | 2014-05-27 11:14:26 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-06-09 17:13:54 -0400 |
commit | 48385408b45523d9a432c66292d47ef43efcbb94 (patch) | |
tree | ce526be2b63f776a2580da81a52d0e723417e101 | |
parent | 83710fc753d2ae158aa3cb7a7966d9c1bd05b792 (diff) | |
download | linux-48385408b45523d9a432c66292d47ef43efcbb94.tar.bz2 |
nfsd4: fix FREE_STATEID lockowner leak
27b11428b7de ("nfsd4: remove lockowner when removing lock stateid")
introduced a memory leak.
Cc: stable@vger.kernel.org
Reported-by: Jeff Layton <jeff.layton@primarydata.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-rw-r--r-- | fs/nfsd/nfs4state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c index e5197d947b9e..c0d45cec9958 100644 --- a/fs/nfsd/nfs4state.c +++ b/fs/nfsd/nfs4state.c @@ -3743,7 +3743,7 @@ nfsd4_free_lock_stateid(struct nfs4_ol_stateid *stp) * correspondance, and we have to delete the lockowner when we * delete the lock stateid: */ - unhash_lockowner(lo); + release_lockowner(lo); return nfs_ok; } |