From: Claude Code Review Bot <claude-review@example.com>
To: dri-devel-reviews@example.com
Subject: Claude review: drm/v3d: Clean caches before runtime suspend
Date: Thu, 04 Jun 2026 15:23:15 +1000 [thread overview]
Message-ID: <review-patch3-20260530-v3d-fix-rpi4-freezes-v1-3-c2c8307da6ce@igalia.com> (raw)
In-Reply-To: <20260530-v3d-fix-rpi4-freezes-v1-3-c2c8307da6ce@igalia.com>
Patch Review
**Purpose:** Ensure all dirty cache lines are written back to memory before the power domain is shut down, preventing "MMU error from client L2T... pte invalid" on resume.
**Code added in `v3d_power.c:55`:**
```c
v3d_clean_caches(v3d);
```
This is placed after `v3d_irq_disable(v3d)` and before `v3d_suspend_sms(v3d)`.
**Analysis:**
- The placement is correct: IRQs are disabled (no new work can arrive), so the clean is serialized. The clean happens before SMS suspend/clock disable, so the hardware is still accessible.
- `v3d_clean_caches()` takes `v3d->cache_clean_lock`, which serializes against any in-flight flush from `v3d_flush_l2t()`. Since IRQs are disabled and the scheduler should have drained, there shouldn't be contention, but the lock provides safety.
- The Fixes tag correctly points to the runtime PM introduction commit.
**One observation:** The commit message says this directly addresses the "pte invalid" MMU errors. The `Closes:` tags on all three GitHub issues are applied to this patch specifically. But the cover letter says patch 2 "directly addresses the system hangs" and patch 3 "directly addresses the error." Having all three `Closes:` on patch 3 alone seems slightly off — arguably patch 2 is equally important for the fix. However, since patches 2 and 3 work together and will be applied as a series, this is a nit about attribution rather than correctness.
**Verdict: Correct and straightforward.**
---
---
Generated by Claude Code Patch Reviewer
next prev parent reply other threads:[~2026-06-04 5:23 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-30 18:37 [PATCH 0/4] drm/v3d: Fix RPi 4 system hangs from stale cache and MMU state Maíra Canal
2026-05-30 18:37 ` [PATCH 1/4] drm/v3d: Wait for pending L2T flush before cleaning caches Maíra Canal
2026-06-04 5:23 ` Claude review: " Claude Code Review Bot
2026-05-30 18:37 ` [PATCH 2/4] drm/v3d: Flush MMU TLB and cache during runtime resume Maíra Canal
2026-06-04 5:23 ` Claude review: " Claude Code Review Bot
2026-05-30 18:37 ` [PATCH 3/4] drm/v3d: Clean caches before runtime suspend Maíra Canal
2026-06-04 5:23 ` Claude Code Review Bot [this message]
2026-05-30 18:37 ` [PATCH 4/4] drm/v3d: Reduce PM runtime autosuspend delay Maíra Canal
2026-06-04 5:23 ` Claude review: " Claude Code Review Bot
2026-06-04 5:23 ` Claude review: drm/v3d: Fix RPi 4 system hangs from stale cache and MMU state Claude Code Review Bot
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=review-patch3-20260530-v3d-fix-rpi4-freezes-v1-3-c2c8307da6ce@igalia.com \
--to=claude-review@example.com \
--cc=dri-devel-reviews@example.com \
/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