drm/msm: fix leak in failed get_pages
authorPrakash Kamliya <pkamliya@codeaurora.org>
Mon, 4 Dec 2017 13:40:15 +0000 (19:10 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 24 Mar 2018 09:58:46 +0000 (10:58 +0100)
commitc1b1c1af967a84e986a9e893b4eebf6f7a40045c
tree347328aefadf63dee11e39e469d0fdc11ceb4787
parent710460e72a78591438dc312a185ac8842dc2f207
drm/msm: fix leak in failed get_pages

[ Upstream commit 62e3a3e342af3c313ab38603811ecdb1fcc79edb ]

get_pages doesn't keep a reference of the pages allocated
when it fails later in the code path. This can lead to
a memory leak. Keep reference of the allocated pages so
that it can be freed when msm_gem_free_object gets called
later during cleanup.

Signed-off-by: Prakash Kamliya <pkamliya@codeaurora.org>
Signed-off-by: Sharat Masetty <smasetty@codeaurora.org>
Signed-off-by: Rob Clark <robdclark@gmail.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/msm/msm_gem.c