From: Nirmoy Das <nirmoy.das@linux.intel.com>
To: Jinjie Ruan <ruanjinjie@huawei.com>,
maarten.lankhorst@linux.intel.com, mripard@kernel.org,
tzimmermann@suse.de, airlied@gmail.com, simona@ffwll.ch,
christian.koenig@amd.com, ray.huang@amd.com,
dmitry.baryshkov@linaro.org, dave.stevenson@raspberrypi.com,
mcanal@igalia.com, quic_jjohnson@quicinc.com,
karolina.stolarek@intel.com, Arunpravin.PaneerSelvam@amd.com,
thomas.hellstrom@linux.intel.com, asomalap@amd.com,
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/3] drm/ttm/tests: Fix memory leak in ttm_tt_simple_create()
Date: Mon, 14 Oct 2024 11:17:19 +0200 [thread overview]
Message-ID: <b545ed9c-787e-4840-b91f-3544bda0f2f0@linux.intel.com> (raw)
In-Reply-To: <20241014071632.989108-3-ruanjinjie@huawei.com>
On 10/14/2024 9:16 AM, Jinjie Ruan wrote:
> modprobe ttm_device_test and then rmmod ttm_device_test, the fllowing
> memory leaks occurs:
>
> The ttm->pages allocated in ttm_tt_init() is not freed after calling
> ttm_tt_simple_create(), which cause the memory leak:
>
> unreferenced object 0xffffff80caf27750 (size 8):
> comm "kunit_try_catch", pid 2242, jiffies 4295055735
> hex dump (first 8 bytes):
> c0 1e 3d c3 fe ff ff ff ..=.....
> backtrace (crc 3d11615a):
> [<000000007f57312a>] kmemleak_alloc+0x34/0x40
> [<000000008c6c4c7e>] __kmalloc_node_noprof+0x304/0x3e4
> [<00000000679c1182>] __kvmalloc_node_noprof+0x1c/0x144
> [<000000006aed0a3d>] ttm_tt_init+0x138/0x28c [ttm]
> [<000000005c331998>] drm_gem_shmem_free+0x60/0x534 [drm_shmem_helper]
> [<0000000022b4f375>] kunit_try_run_case+0x13c/0x3ac
> [<00000000c525d725>] kunit_generic_run_threadfn_adapter+0x80/0xec
> [<000000002db94a1f>] kthread+0x2e8/0x374
> [<000000002c457ad7>] ret_from_fork+0x10/0x20
> ......
>
> Fix it by calling ttm_tt_fini() in the exit function.
>
> Cc: stable@vger.kernel.org
> Fixes: e6f7c641fae3 ("drm/ttm/tests: Add tests for ttm_tt")
> Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> drivers/gpu/drm/ttm/tests/ttm_kunit_helpers.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/gpu/drm/ttm/tests/ttm_kunit_helpers.c b/drivers/gpu/drm/ttm/tests/ttm_kunit_helpers.c
> index b91c13f46225..9ff216ec58ef 100644
> --- a/drivers/gpu/drm/ttm/tests/ttm_kunit_helpers.c
> +++ b/drivers/gpu/drm/ttm/tests/ttm_kunit_helpers.c
> @@ -54,6 +54,7 @@ static struct ttm_tt *ttm_tt_simple_create(struct ttm_buffer_object *bo, u32 pag
>
> static void ttm_tt_simple_destroy(struct ttm_device *bdev, struct ttm_tt *ttm)
> {
> + ttm_tt_fini(ttm);
> kfree(ttm);
> }
>
next prev parent reply other threads:[~2024-10-14 9:17 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-14 7:16 [PATCH 0/3] drm: Fix some memory leaks Jinjie Ruan
2024-10-14 7:16 ` [PATCH 1/3] drm/connector: hdmi: Fix memory leak in drm_display_mode_from_cea_vic() Jinjie Ruan
2024-10-14 9:11 ` Maxime Ripard
2024-10-14 9:15 ` Jinjie Ruan
2024-10-17 13:22 ` kernel test robot
2024-10-17 16:46 ` kernel test robot
2024-10-18 1:00 ` kernel test robot
2024-10-14 7:16 ` [PATCH 2/3] drm/ttm/tests: Fix memory leak in ttm_tt_simple_create() Jinjie Ruan
2024-10-14 9:17 ` Nirmoy Das [this message]
2024-10-14 7:16 ` [PATCH 3/3] drm/tests: hdmi: Fix memory leaks in drm_display_mode_from_cea_vic() Jinjie Ruan
2024-10-14 9:12 ` Maxime Ripard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b545ed9c-787e-4840-b91f-3544bda0f2f0@linux.intel.com \
--to=nirmoy.das@linux.intel.com \
--cc=Arunpravin.PaneerSelvam@amd.com \
--cc=airlied@gmail.com \
--cc=asomalap@amd.com \
--cc=christian.koenig@amd.com \
--cc=dave.stevenson@raspberrypi.com \
--cc=dmitry.baryshkov@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=karolina.stolarek@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mcanal@igalia.com \
--cc=mripard@kernel.org \
--cc=quic_jjohnson@quicinc.com \
--cc=ray.huang@amd.com \
--cc=ruanjinjie@huawei.com \
--cc=simona@ffwll.ch \
--cc=thomas.hellstrom@linux.intel.com \
--cc=tzimmermann@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox