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/imagination: simplify pvr_fw_trace_seq_data Date: Fri, 13 Mar 2026 13:53:03 +1000 Message-ID: In-Reply-To: <20260312192128.4133-1-rosenp@gmail.com> References: <20260312192128.4133-1-rosenp@gmail.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/imagination: simplify pvr_fw_trace_seq_data Author: Rosen Penev Patches: 1 Reviewed: 2026-03-13T13:53:03.575176 --- This is a single, straightforward cleanup patch that converts two separate allocations (one for the struct, one for the trace buffer) into a single allocation using a flexible array member (FAM). The transformation is correct and follows established kernel patterns. The patch reduces code complexity by eliminating one allocation, one error path, and one `kfree` call. **Verdict: Looks good.** --- Generated by Claude Code Patch Reviewer