Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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,