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 14:31:29 +01:00
parent 2cd400974c
commit 309a4f8ffd
+1 -1
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)
);