Commit 627ad9fd authored by Theodore Ts'o's avatar Theodore Ts'o

ext4: Fix type warning on 64-bit platforms in tracing events header

Signed-off-by: default avatar"Theodore Ts'o" <tytso@mit.edu>
parent 8e4a718f
......@@ -34,7 +34,8 @@ TRACE_EVENT(ext4_free_inode,
TP_printk("dev %s ino %lu mode %d uid %u gid %u blocks %llu",
jbd2_dev_to_name(__entry->dev), __entry->ino, __entry->mode,
__entry->uid, __entry->gid, __entry->blocks)
__entry->uid, __entry->gid,
(unsigned long long) __entry->blocks)
);
TRACE_EVENT(ext4_request_inode,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment