From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: drm/colorop: Fix blob property reference tracking in state lifecycle Date: Fri, 13 Mar 2026 13:48:40 +1000 Message-ID: In-Reply-To: <20260312204145.829714-1-harry.wentland@amd.com> References: <20260312204145.829714-1-harry.wentland@amd.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Overall Series Review Subject: drm/colorop: Fix blob property reference tracking in state lifecycle Author: Harry Wentland Patches: 2 Reviewed: 2026-03-13T13:48:40.828711 --- This is a single-patch fix for blob property reference leaks in the `drm_colorop` state lifecycle. The patch correctly identifies real bugs: `drm_colorop_atomic_destroy_state()` was calling `kfree(state)` without releasing the blob reference on `state->data`, and `drm_colorop_reset()` was similarly leaking. The fix follows the well-established pattern from `drm_crtc` state helpers. The patch is straightforward, correct, and appropriate for stable backporting. **Verdict: Looks good, with minor observations below.** --- Generated by Claude Code Patch Reviewer