These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
From ee2c04a7620abe52da04a3571b9a94b0ba198f98 Mon Sep 17 00:00:00 2001
|
|
From: Christian Gmeiner <cgmeiner@igalia.com>
|
|
Date: Mon, 23 Sep 2024 17:19:59 +0200
|
|
Subject: [PATCH] drm/v3d: Use v3d_perfmon_find()
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Commit f2a4bcb2532881655ee546305f2a4fc6e1399a3e usptream
|
|
|
|
Replace the open-coded v3d_perfmon_find() with the real thing.
|
|
|
|
Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
|
|
Reviewed-by: Maíra Canal <mcanal@igalia.com>
|
|
Signed-off-by: Maíra Canal <mcanal@igalia.com>
|
|
Link: https://patchwork.freedesktop.org/patch/msgid/20240923152000.185980-1-christian.gmeiner@gmail.com
|
|
---
|
|
drivers/gpu/drm/v3d/v3d_perfmon.c | 6 +-----
|
|
1 file changed, 1 insertion(+), 5 deletions(-)
|
|
|
|
--- a/drivers/gpu/drm/v3d/v3d_perfmon.c
|
|
+++ b/drivers/gpu/drm/v3d/v3d_perfmon.c
|
|
@@ -415,11 +415,7 @@ int v3d_perfmon_get_values_ioctl(struct
|
|
if (req->pad != 0)
|
|
return -EINVAL;
|
|
|
|
- mutex_lock(&v3d_priv->perfmon.lock);
|
|
- perfmon = idr_find(&v3d_priv->perfmon.idr, req->id);
|
|
- v3d_perfmon_get(perfmon);
|
|
- mutex_unlock(&v3d_priv->perfmon.lock);
|
|
-
|
|
+ perfmon = v3d_perfmon_find(v3d_priv, req->id);
|
|
if (!perfmon)
|
|
return -EINVAL;
|
|
|