ext4: fix signed format specifier in ext4_load_inode trace event

The ext4_load_inode trace event uses %lld (signed) to print the ino
field which is u64 (unsigned). Use %llu instead.

Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
Christian Brauner 2026-03-06 10:00:10 +01:00
parent 2cd400974c
commit 309a4f8ffd
No known key found for this signature in database
GPG Key ID: 91C61BC06578DCA2

View File

@ -1781,7 +1781,7 @@ TRACE_EVENT(ext4_load_inode,
__entry->ino = ino;
),
TP_printk("dev %d,%d ino %lld",
TP_printk("dev %d,%d ino %llu",
MAJOR(__entry->dev), MINOR(__entry->dev),
__entry->ino)
);