From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: vfs: use PRIino format for i_ino Date: Wed, 04 Mar 2026 08:15:04 +1000 Message-ID: In-Reply-To: <20260302-iino-u64-v2-59-e5388800dae0@kernel.org> References: <20260302-iino-u64-v2-0-e5388800dae0@kernel.org> <20260302-iino-u64-v2-59-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 Converts the remaining VFS core files (dcache, eventpoll, fserror, pipe). The `0UL` to `(kino_t)0` change in dcache is correct to match the ternary expression type: ```c - dentry->d_inode->i_ino : 0UL, + dentry->d_inode->i_ino : (kino_t)0, ``` --- Generated by Claude Code Patch Reviewer