From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: dma-buf: update format string for u64 i_ino Date: Fri, 27 Feb 2026 11:50:54 +1000 Message-ID: In-Reply-To: <20260226-iino-u64-v1-56-ccceff366db9@kernel.org> References: <20260226-iino-u64-v1-0-ccceff366db9@kernel.org> <20260226-iino-u64-v1-56-ccceff366db9@kernel.org> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Patch Review **Status: Correct, no issues.** This patch updates one `seq_printf` format specifier in `dma_buf_debug_show= ()` from `%08lu` to `%08llu`. The change: ```c - seq_printf(s, "%08zu\t%08x\t%08x\t%08ld\t%s\t%08lu\t%s\n", + seq_printf(s, "%08zu\t%08x\t%08x\t%08ld\t%s\t%08llu\t%s\n", ``` This correctly updates the format specifier for the `file_inode(buf_obj->fi= le)->i_ino` argument (the 6th argument after the format string, at line 171= 6 of the current source). The `%08` width/padding prefix is preserved, whic= h is correct =E2=80=94 the field width specifier is orthogonal to the lengt= h modifier. No functional, semantic, or style concerns. The only `i_ino` usage in this = file is covered by this change. --- **Summary:** Both patches are trivially correct mechanical changes. For the= DRM/dma-buf subsystem: Acked-by for both patches. --- Generated by Claude Code Patch Reviewer