From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: Re: [PATCH v2 003/110] audit: widen ino fields to u64 Date: Wed, 04 Mar 2026 08:15:02 +1000 Message-ID: In-Reply-To: References: <20260302-iino-u64-v2-0-e5388800dae0@kernel.org> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review Straightforward and correct. Changes `AUDIT_INO_UNSET` from `(unsigned long)-1` to `(u64)-1`, widens struct fields, parameters, and format strings. ```c -#define AUDIT_INO_UNSET ((unsigned long)-1) +#define AUDIT_INO_UNSET ((u64)-1) ``` The audit subsystem comparison logic remains correct since everything is consistently widened. The `%lu` to `%llu` change in `audit_log_d_path_exe()` matches. **No issues.** --- Generated by Claude Code Patch Reviewer