From: Alessio Belle <Alessio.Belle@imgtec.com>
To: "zhengxingda@iscas.ac.cn" <zhengxingda@iscas.ac.cn>
Cc: Brajesh Gupta <Brajesh.Gupta@imgtec.com>,
"airlied@gmail.com" <airlied@gmail.com>,
"tzimmermann@suse.de" <tzimmermann@suse.de>,
"matt.coster@imgtec.com" <matt.coster@imgtec.com>,
"simona@ffwll.ch" <simona@ffwll.ch>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>,
"uwu@icenowy.me" <uwu@icenowy.me>,
Brendan King <Brendan.King@imgtec.com>,
Frank Binns <Frank.Binns@imgtec.com>,
"dakr@kernel.org" <dakr@kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"stable@vger.kernel.org" <stable@vger.kernel.org>,
"mripard@kernel.org" <mripard@kernel.org>,
"maarten.lankhorst@linux.intel.com"
<maarten.lankhorst@linux.intel.com>,
Luigi Santivetti <Luigi.Santivetti@imgtec.com>
Subject: Re: [PATCH v2] drm/imagination: acquire vm_ctx->lock before mapping memory to GPU VM
Date: Mon, 13 Jul 2026 17:07:35 +0000 [thread overview]
Message-ID: <c35ddb85f9818299ae83cd16850a33b0df3a262d.camel@imgtec.com> (raw)
In-Reply-To: <20260421175748.1989002-1-zhengxingda@iscas.ac.cn>
Hi Icenowy,
On Wed, 2026-04-22 at 01:57 +0800, Icenowy Zheng wrote:
> The drm gpuvm code doesn't protect find operation against map operation,
> and the driver needs to ensure a map operation shouldn't happen when a
> find operation is in progress.
>
> As all occurences of drm_gpuva_find*() is already guarded by
nit: is -> are
> vm_ctx->lock, make pvr_vm_map() to acquire this lock to prevent
> disturbing any find operation.
>
> This fixes occasional NULL deference in drm_gpuva_find*().
nit: NULL deference -> NULL [pointer] dereference
Do you still have kernel logs following this bug?
>
> Cc: stable@vger.kernel.org
> Fixes: 4bc736f890ce ("drm/imagination: vm: make use of GPUVM's drm_exec helper")
As far as I can see, that commit swapped one way of locking resources with
another, but the problem of VA find/map/unmap operations not being protected by
the same lock already existed in commit ff5f643de0bf ("drm/imagination: Add GEM
and VM related code").
Thanks,
Alessio
> Signed-off-by: Icenowy Zheng <zhengxingda@iscas.ac.cn>
> ---
> Changes in v2:
> - Fixed wrong commit prefix.
>
> drivers/gpu/drm/imagination/pvr_vm.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/imagination/pvr_vm.c b/drivers/gpu/drm/imagination/pvr_vm.c
> index e1ec60f34b6e6..eea88e7ad03c1 100644
> --- a/drivers/gpu/drm/imagination/pvr_vm.c
> +++ b/drivers/gpu/drm/imagination/pvr_vm.c
> @@ -747,6 +747,7 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
>
> pvr_gem_object_get(pvr_obj);
>
> + mutex_lock(&vm_ctx->lock);
> err = drm_gpuvm_exec_lock(&vm_exec);
> if (err)
> goto err_cleanup;
> @@ -754,9 +755,11 @@ pvr_vm_map(struct pvr_vm_context *vm_ctx, struct pvr_gem_object *pvr_obj,
> err = pvr_vm_bind_op_exec(&bind_op);
>
> drm_gpuvm_exec_unlock(&vm_exec);
> + mutex_unlock(&vm_ctx->lock);
>
> err_cleanup:
> pvr_vm_bind_op_fini(&bind_op);
> + mutex_unlock(&vm_ctx->lock);
>
> return err;
> }
next prev parent reply other threads:[~2026-07-13 17:08 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-21 17:57 Icenowy Zheng
2026-07-06 14:22 ` Brajesh Gupta
2026-07-13 17:07 ` Alessio Belle [this message]
2026-07-14 7:36 Icenowy Zheng
2026-07-17 11:14 ` Alessio Belle
2026-07-17 17:06 ` Icenowy Zheng
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=c35ddb85f9818299ae83cd16850a33b0df3a262d.camel@imgtec.com \
--to=alessio.belle@imgtec.com \
--cc=Brajesh.Gupta@imgtec.com \
--cc=Brendan.King@imgtec.com \
--cc=Frank.Binns@imgtec.com \
--cc=Luigi.Santivetti@imgtec.com \
--cc=airlied@gmail.com \
--cc=dakr@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=matt.coster@imgtec.com \
--cc=mripard@kernel.org \
--cc=simona@ffwll.ch \
--cc=stable@vger.kernel.org \
--cc=tzimmermann@suse.de \
--cc=uwu@icenowy.me \
--cc=zhengxingda@iscas.ac.cn \
/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