diff options
author | David Teigland <teigland@redhat.com> | 2018-11-15 20:17:40 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-12-21 12:40:56 +0300 |
commit | 72c9c04b2bcbb09e478af0b617dd223b682560a1 (patch) | |
tree | dba366dc6df3a5fe4c8b4dec3f2acedda4fe5de6 | |
parent | 8d9ca529a9bb8dcf49a5b531e3ddc52baf358c37 (diff) | |
download | linux-72c9c04b2bcbb09e478af0b617dd223b682560a1.tar.xz |
dlm: fix missing idr_destroy for recover_idr
[ Upstream commit 8fc6ed9a3508a0435b9270c313600799d210d319 ]
Which would leak memory for the idr internals.
Signed-off-by: David Teigland <teigland@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | fs/dlm/lockspace.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/dlm/lockspace.c b/fs/dlm/lockspace.c index 30e4e01db35a..b14bb2c46042 100644 --- a/fs/dlm/lockspace.c +++ b/fs/dlm/lockspace.c @@ -800,6 +800,7 @@ static int release_lockspace(struct dlm_ls *ls, int force) dlm_delete_debug_file(ls); + idr_destroy(&ls->ls_recover_idr); kfree(ls->ls_recover_buf); /* |