From patchwork Mon Oct 14 12:52:00 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jinjie Ruan X-Patchwork-Id: 13834976 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 74627D1625F for ; Mon, 14 Oct 2024 12:52:57 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id E792810E29E; Mon, 14 Oct 2024 12:52:56 +0000 (UTC) Received: from szxga01-in.huawei.com (szxga01-in.huawei.com [45.249.212.187]) by gabe.freedesktop.org (Postfix) with ESMTPS id 7D63810E3D8 for ; Mon, 14 Oct 2024 12:52:55 +0000 (UTC) Received: from mail.maildlp.com (unknown [172.19.162.254]) by szxga01-in.huawei.com (SkyGuard) with ESMTP id 4XRxtD4dsCz10N3c; Mon, 14 Oct 2024 20:51:00 +0800 (CST) Received: from kwepemh500013.china.huawei.com (unknown [7.202.181.146]) by mail.maildlp.com (Postfix) with ESMTPS id E06BF180106; Mon, 14 Oct 2024 20:52:50 +0800 (CST) Received: from huawei.com (10.90.53.73) by kwepemh500013.china.huawei.com (7.202.181.146) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.11; Mon, 14 Oct 2024 20:52:50 +0800 From: Jinjie Ruan To: , , , , , , , , , , , , , , , , , , , Subject: [PATCH v2 0/4] drm: Fix some memory leaks Date: Mon, 14 Oct 2024 20:52:00 +0800 Message-ID: <20241014125204.1294934-1-ruanjinjie@huawei.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-Originating-IP: [10.90.53.73] X-ClientProxiedBy: dggems701-chm.china.huawei.com (10.3.19.178) To kwepemh500013.china.huawei.com (7.202.181.146) X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Fix some memory leaks in drm. Changes in v2: - Fix it with new introduced helper instead of drm_mode_destroy(). - Update the commit message. - Add Reviewed-by. Jinjie Ruan (4): drm/tests: helpers: Add helper for drm_display_mode_from_cea_vic() drm/connector: hdmi: Fix memory leak in drm_display_mode_from_cea_vic() drm/ttm/tests: Fix memory leak in ttm_tt_simple_create() drm/tests: hdmi: Fix memory leaks in drm_display_mode_from_cea_vic() drivers/gpu/drm/tests/drm_connector_test.c | 24 +++++------ .../drm/tests/drm_hdmi_state_helper_test.c | 8 ++-- drivers/gpu/drm/tests/drm_kunit_helpers.c | 40 +++++++++++++++++++ drivers/gpu/drm/ttm/tests/ttm_kunit_helpers.c | 1 + include/drm/drm_kunit_helpers.h | 6 +++ 5 files changed, 63 insertions(+), 16 deletions(-)