Skip to content

Commit 309a4f8

Browse files
committed
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>
1 parent 2cd4009 commit 309a4f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/trace/events/ext4.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1781,7 +1781,7 @@ TRACE_EVENT(ext4_load_inode,
17811781
__entry->ino = ino;
17821782
),
17831783

1784-
TP_printk("dev %d,%d ino %lld",
1784+
TP_printk("dev %d,%d ino %llu",
17851785
MAJOR(__entry->dev), MINOR(__entry->dev),
17861786
__entry->ino)
17871787
);

0 commit comments

Comments
 (0)