[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240821024145.3775302-1-yujiaoliang@vivo.com>
Date: Wed, 21 Aug 2024 10:41:27 +0800
From: Yu Jiaoliang <yujiaoliang@...o.com>
To: Jani Nikula <jani.nikula@...ux.intel.com>,
Joonas Lahtinen <joonas.lahtinen@...ux.intel.com>,
Rodrigo Vivi <rodrigo.vivi@...el.com>,
Tvrtko Ursulin <tursulin@...ulin.net>,
David Airlie <airlied@...il.com>,
Daniel Vetter <daniel@...ll.ch>,
Matt Roper <matthew.d.roper@...el.com>,
Andi Shyti <andi.shyti@...ux.intel.com>,
Michal Mrozek <michal.mrozek@...el.com>,
Lucas De Marchi <lucas.demarchi@...el.com>,
Tejas Upadhyay <tejas.upadhyay@...el.com>,
Shekhar Chauhan <shekhar.chauhan@...el.com>,
Gustavo Sousa <gustavo.sousa@...el.com>,
intel-gfx@...ts.freedesktop.org,
dri-devel@...ts.freedesktop.org,
linux-kernel@...r.kernel.org
Cc: opensource.kernel@...o.com
Subject: [PATCH v3] drm/i915/gt: Use kmemdup_array instead of kmemdup for multiple allocation
Let the kememdup_array() take care about multiplication and possible
overflows.
v2:
- Change subject
- Leave one blank line between the commit log and the tag section
- Fix code alignment issue
v3:
- Fix code alignment
- Apply the patch on a clean drm-tip
Signed-off-by: Yu Jiaoliang <yujiaoliang@...o.com>
Reviewed-by: Jani Nikula <jani.nikula@...el.com>
Reviewed-by: Andi Shyti <andi.shyti@...ux.intel.com>
---
drivers/gpu/drm/i915/gt/intel_workarounds.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_workarounds.c b/drivers/gpu/drm/i915/gt/intel_workarounds.c
index 09a287c1aedd..3ac0213c711f 100644
--- a/drivers/gpu/drm/i915/gt/intel_workarounds.c
+++ b/drivers/gpu/drm/i915/gt/intel_workarounds.c
@@ -111,9 +111,8 @@ static void wa_init_finish(struct i915_wa_list *wal)
{
/* Trim unused entries. */
if (!IS_ALIGNED(wal->count, WA_LIST_CHUNK)) {
- struct i915_wa *list = kmemdup(wal->list,
- wal->count * sizeof(*list),
- GFP_KERNEL);
+ struct i915_wa *list = kmemdup_array(wal->list, wal->count,
+ sizeof(*list), GFP_KERNEL);
if (list) {
kfree(wal->list);
--
2.34.1
Powered by blists - more mailing lists