mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07: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:
@@ -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)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user