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/radeon: fix __user annotation in radeon_info_ioctl() Date: Thu, 12 Mar 2026 06:51:40 +1000 Message-ID: In-Reply-To: <20260311142138.530006-1-ben.dooks@codethink.co.uk> References: <20260311142138.530006-1-ben.dooks@codethink.co.uk> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Overall Series Review Subject: drm/radeon: fix __user annotation in radeon_info_ioctl() Author: Ben Dooks Patches: 1 Reviewed: 2026-03-12T06:51:40.410492 --- This is a single, straightforward patch that adds the missing `__user` anno= tation to the `value_ptr` variable in `radeon_info_ioctl()`. The fix is cor= rect and complete =E2=80=94 `value_ptr` is derived from a user-space addres= s (`info->value`) and is exclusively used with `copy_from_user()` and `copy= _to_user()`, so it should indeed carry the `__user` annotation. This is a t= extbook sparse warning fix with no functional change. **Verdict: Patch looks good. No issues found.** --- Generated by Claude Code Patch Reviewer