mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 12:35:52 +02:00
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:
parent
2cd400974c
commit
309a4f8ffd
|
|
@ -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)
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user