From: Jinjie Ruan <ruanjinjie@huawei.com>
To: Maxime Ripard <mripard@kernel.org>
Cc: <maarten.lankhorst@linux.intel.com>, <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 1/3] drm/connector: hdmi: Fix memory leak in drm_display_mode_from_cea_vic()
Date: Mon, 14 Oct 2024 17:15:31 +0800 [thread overview]
Message-ID: <dbe9c1c8-6c5c-f2da-545d-73e6fa535d8a@huawei.com> (raw)
In-Reply-To: <20241014-fervent-whimsical-oyster-b0926d@houat>
On 2024/10/14 17:11, Maxime Ripard wrote:
> On Mon, Oct 14, 2024 at 03:16:30PM GMT, Jinjie Ruan wrote:
>> modprobe drm_connector_test and then rmmod drm_connector_test,
>> the following memory leak occurs.
>>
>> The `mode` allocated in drm_mode_duplicate() called by
>> drm_display_mode_from_cea_vic() is not freed, which cause the memory leak:
>>
>> unreferenced object 0xffffff80cb0ee400 (size 128):
>> comm "kunit_try_catch", pid 1948, jiffies 4294950339
>> hex dump (first 32 bytes):
>> 14 44 02 00 80 07 d8 07 04 08 98 08 00 00 38 04 .D............8.
>> 3c 04 41 04 65 04 00 00 05 00 00 00 00 00 00 00 <.A.e...........
>> backtrace (crc 90e9585c):
>> [<00000000ec42e3d7>] kmemleak_alloc+0x34/0x40
>> [<00000000d0ef055a>] __kmalloc_cache_noprof+0x26c/0x2f4
>> [<00000000c2062161>] drm_mode_duplicate+0x44/0x19c
>> [<00000000f96c74aa>] drm_display_mode_from_cea_vic+0x88/0x98
>> [<00000000d8f2c8b4>] 0xffffffdc982a4868
>> [<000000005d164dbc>] kunit_try_run_case+0x13c/0x3ac
>> [<000000006fb23398>] kunit_generic_run_threadfn_adapter+0x80/0xec
>> [<000000006ea56ca0>] kthread+0x2e8/0x374
>> [<000000000676063f>] ret_from_fork+0x10/0x20
>> ......
>>
>> Free `mode` by calling drm_mode_destroy() to fix it.
>>
>> Cc: stable@vger.kernel.org
>> Fixes: abb6f74973e2 ("drm/tests: Add HDMI TDMS character rate tests")
>> Signed-off-by: Jinjie Ruan <ruanjinjie@huawei.com>
>> ---
>> drivers/gpu/drm/tests/drm_connector_test.c | 24 ++++++++++++++++++++++
>> 1 file changed, 24 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/tests/drm_connector_test.c b/drivers/gpu/drm/tests/drm_connector_test.c
>> index 15e36a8db685..9c94d26b3486 100644
>> --- a/drivers/gpu/drm/tests/drm_connector_test.c
>> +++ b/drivers/gpu/drm/tests/drm_connector_test.c
>> @@ -1004,6 +1004,8 @@ static void drm_test_drm_hdmi_compute_mode_clock_rgb(struct kunit *test)
>> rate = drm_hdmi_compute_mode_clock(mode, 8, HDMI_COLORSPACE_RGB);
>> KUNIT_ASSERT_GT(test, rate, 0);
>> KUNIT_EXPECT_EQ(test, mode->clock * 1000ULL, rate);
>> +
>> + drm_mode_destroy(drm, mode);
>> }
>
> If KUNIT_ASSERT_GT triggers, then we would end up leaking the mode as well.
>
> I think we should create a kunit_drm_display_mode_from_cea_vic()
> function that registers a kunit action to free the mode when the test is
> done.
You are right! That will be nice and could be used by the new KUNIT test
modules.
>
> Maxime
next prev parent reply other threads:[~2024-10-14 9:15 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 [this message]
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
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=dbe9c1c8-6c5c-f2da-545d-73e6fa535d8a@huawei.com \
--to=ruanjinjie@huawei.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=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
all inboxes | Powered by JetHome®