From: sashiko-bot@kernel.org
To: "Natalie Vock" <natalie.vock@gmx.de>
Cc: dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 10/10] drm/amdgpu: use drm_exec during BO validation
Date: Fri, 03 Jul 2026 17:24:01 +0000 [thread overview]
Message-ID: <20260703172401.CF6201F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260703-ttm_2_drm_exec-v1-10-43685ac1286b@gmx.de>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [High] Iterating over `p->exec` objects for validation inadvertently validates victim BOs that were just evicted, breaking VRAM overcommit.
- [Medium] Buffer migration budget is bypassed when a submission retries due to lock contention.
--
commit 106f3922010dddea6e74f4d9b1260b3b5ba91adf
Author: Christian König <christian.koenig@amd.com>
drm/amdgpu: use drm_exec during BO validation
This commit modifies the CS parser BO validation sequence to use the
drm_exec infrastructure, aiming to detect and handle deadlocks caused by
resource constraints during eviction.
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> index c2e6495a28bc5..052d41013f7a0 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c
[ ... ]
> @@ -922,47 +923,53 @@ static int amdgpu_cs_parser_bos(struct amdgpu_cs_parser *p,
> if (unlikely(r))
> goto out_free_user_pages;
> }
[ ... ]
> - amdgpu_cs_get_threshold_for_moves(p->adev, &p->bytes_moved_threshold,
> - &p->bytes_moved_vis_threshold);
> - p->bytes_moved = 0;
> - p->bytes_moved_vis = 0;
> -
> - r = amdgpu_vm_validate(p->adev, &fpriv->vm, NULL,
> - amdgpu_cs_bo_validate, p);
> - if (r) {
> - drm_err(adev_to_drm(p->adev), "amdgpu_vm_validate() failed.\n");
> - goto out_free_user_pages;
> - }
> + amdgpu_cs_get_threshold_for_moves(p->adev, &p->bytes_moved_threshold,
> + &p->bytes_moved_vis_threshold);
> + p->bytes_moved = 0;
> + p->bytes_moved_vis = 0;
[Severity: Medium]
If a submission physically moves buffers but then hits lock contention later
in the execution, drm_exec_retry_on_contention() will restart the
drm_exec_until_all_locked() loop.
Does resetting p->bytes_moved and p->bytes_moved_vis to 0 here cause the
driver to lose track of the bytes already moved during the aborted pass?
When the retry finally succeeds, it appears amdgpu_cs_report_moved_bytes()
will only report the final pass, which might bypass the migration budget
throttling logic and leak the physical migration costs already incurred.
> + r = amdgpu_vm_validate(p->adev, &fpriv->vm, NULL,
> + amdgpu_cs_bo_validate, p);
> + drm_exec_retry_on_contention(&p->exec);
> + if (r) {
> + drm_err(adev_to_drm(p->adev), "amdgpu_vm_validate() failed.\n");
> goto out_free_user_pages;
> + }
> +
> + drm_exec_for_each_locked_object(&p->exec, obj) {
> + r = amdgpu_cs_bo_validate(p, gem_to_amdgpu_bo(obj));
[Severity: High]
When TTM evicts a buffer, does it use ctx.exec (which now points to p->exec
after this patch) to lock the victim BO?
If so, it seems the victim BO gets added to the p->exec locked objects list.
Since this drm_exec_for_each_locked_object() loop blindly iterates over all
objects in p->exec, won't it inadvertently validate the newly evicted victim
BO as well?
Calling amdgpu_cs_bo_validate() on the victim could attempt to move it back
to its preferred domain in VRAM, which seems like it would defeat the eviction
entirely and potentially break VRAM overcommit.
> + drm_exec_retry_on_contention(&p->exec);
> + if (unlikely(r))
> + goto out_free_user_pages;
> + }
> +
> + amdgpu_cs_report_moved_bytes(p->adev, p->bytes_moved,
> + p->bytes_moved_vis);
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260703-ttm_2_drm_exec-v1-0-43685ac1286b@gmx.de?part=10
prev parent reply other threads:[~2026-07-03 17:24 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-03 16:31 [PATCH 00/10] Use drm_exec to lock TTM buffers, respin Natalie Vock
2026-07-03 16:31 ` [PATCH 01/10] drm/exec: Add helper to bypass IGNORE_DUPLICATES flag Natalie Vock
2026-07-03 16:38 ` sashiko-bot
2026-07-06 8:43 ` Christian König
2026-07-07 12:09 ` Thomas Hellström
2026-07-07 12:28 ` Christian König
2026-07-07 12:41 ` Thomas Hellström
2026-07-07 12:54 ` Christian König
2026-07-07 13:12 ` Natalie Vock
2026-07-03 16:31 ` [PATCH 02/10] drm/ttm: replace TTMs refcount with the DRM refcount v4 Natalie Vock
2026-07-06 13:14 ` Thomas Hellström
2026-07-06 14:49 ` Christian König
2026-07-06 17:01 ` Thomas Hellström
2026-07-06 17:51 ` Matthew Brost
2026-07-06 17:53 ` Thomas Hellström
2026-07-06 18:03 ` Matthew Brost
2026-07-06 18:05 ` Matthew Brost
2026-07-07 6:30 ` Thomas Hellström
2026-07-06 18:03 ` Thomas Hellström
2026-07-06 18:23 ` Christian König
2026-07-06 22:26 ` Dave Airlie
2026-07-07 6:56 ` Thomas Hellström
2026-07-07 7:35 ` Natalie Vock
2026-07-07 8:48 ` Christian König
2026-07-07 9:53 ` Thomas Hellström
2026-07-07 12:52 ` Christian König
2026-07-07 14:07 ` Thomas Hellström
2026-07-03 16:31 ` [PATCH 03/10] drm/ttm: remove ttm_lru_walk_ops Natalie Vock
2026-07-06 12:34 ` Thomas Hellström
2026-07-06 13:05 ` Christian König
2026-07-06 16:31 ` Matthew Brost
2026-07-06 13:08 ` Natalie Vock
2026-07-03 16:31 ` [PATCH 04/10] drm/ttm: grab BO reference before locking it Natalie Vock
2026-07-07 12:12 ` Thomas Hellström
2026-07-03 16:31 ` [PATCH 05/10] drm/ttm: switch to ttm_bo_lru_for_each_reserved_guarded for swapout Natalie Vock
2026-07-03 16:55 ` sashiko-bot
2026-07-07 12:17 ` Thomas Hellström
2026-07-03 16:31 ` [PATCH 06/10] drm/ttm: move zombie handling into ttm_bo_evict Natalie Vock
2026-07-07 12:24 ` Thomas Hellström
2026-07-03 16:31 ` [PATCH 07/10] drm/ttm: use ttm_bo_lru_for_each_reserved_guarded in evict_all Natalie Vock
2026-07-03 17:10 ` sashiko-bot
2026-07-07 12:35 ` Thomas Hellström
2026-07-03 16:31 ` [PATCH 08/10] drm/xe: remove workaround for TTM internals Natalie Vock
2026-07-03 17:10 ` sashiko-bot
2026-07-07 11:52 ` Thomas Hellström
2026-07-03 16:31 ` [PATCH 09/10] drm/ttm: support using drm_exec during eviction v4 Natalie Vock
2026-07-03 17:23 ` sashiko-bot
2026-07-07 12:48 ` Thomas Hellström
2026-07-03 16:31 ` [PATCH 10/10] drm/amdgpu: use drm_exec during BO validation Natalie Vock
2026-07-03 17:24 ` sashiko-bot [this message]
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=20260703172401.CF6201F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=natalie.vock@gmx.de \
--cc=sashiko-reviews@lists.linux.dev \
/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