diff options
author | Scott Wood <scottwood@freescale.com> | 2015-03-11 23:13:57 -0400 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2015-03-25 08:57:22 -0400 |
commit | bbedb179944c29e5e449603163eec9951116fe39 (patch) | |
tree | 7ed8b4a90541e710200df3fc6a067c2dfb88f184 /include/trace/events/ext4.h | |
parent | 80a9b64e2c156b6523e7a01f2ba6e5d86e722814 (diff) |
tracing: %pF is only for function pointers
Use %pS for actual addresses, otherwise you'll get bad output
on arches like ppc64 where %pF expects a function descriptor.
Link: http://lkml.kernel.org/r/1426130037-17956-22-git-send-email-scottwood@freescale.com
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'include/trace/events/ext4.h')
-rw-r--r-- | include/trace/events/ext4.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/trace/events/ext4.h b/include/trace/events/ext4.h index 6e5abd6d38a2..47fca36ee426 100644 --- a/include/trace/events/ext4.h +++ b/include/trace/events/ext4.h | |||
@@ -240,7 +240,7 @@ TRACE_EVENT(ext4_mark_inode_dirty, | |||
240 | __entry->ip = IP; | 240 | __entry->ip = IP; |
241 | ), | 241 | ), |
242 | 242 | ||
243 | TP_printk("dev %d,%d ino %lu caller %pF", | 243 | TP_printk("dev %d,%d ino %lu caller %pS", |
244 | MAJOR(__entry->dev), MINOR(__entry->dev), | 244 | MAJOR(__entry->dev), MINOR(__entry->dev), |
245 | (unsigned long) __entry->ino, (void *)__entry->ip) | 245 | (unsigned long) __entry->ino, (void *)__entry->ip) |
246 | ); | 246 | ); |
@@ -1762,7 +1762,7 @@ TRACE_EVENT(ext4_journal_start, | |||
1762 | __entry->rsv_blocks = rsv_blocks; | 1762 | __entry->rsv_blocks = rsv_blocks; |
1763 | ), | 1763 | ), |
1764 | 1764 | ||
1765 | TP_printk("dev %d,%d blocks, %d rsv_blocks, %d caller %pF", | 1765 | TP_printk("dev %d,%d blocks, %d rsv_blocks, %d caller %pS", |
1766 | MAJOR(__entry->dev), MINOR(__entry->dev), | 1766 | MAJOR(__entry->dev), MINOR(__entry->dev), |
1767 | __entry->blocks, __entry->rsv_blocks, (void *)__entry->ip) | 1767 | __entry->blocks, __entry->rsv_blocks, (void *)__entry->ip) |
1768 | ); | 1768 | ); |
@@ -1784,7 +1784,7 @@ TRACE_EVENT(ext4_journal_start_reserved, | |||
1784 | __entry->blocks = blocks; | 1784 | __entry->blocks = blocks; |
1785 | ), | 1785 | ), |
1786 | 1786 | ||
1787 | TP_printk("dev %d,%d blocks, %d caller %pF", | 1787 | TP_printk("dev %d,%d blocks, %d caller %pS", |
1788 | MAJOR(__entry->dev), MINOR(__entry->dev), | 1788 | MAJOR(__entry->dev), MINOR(__entry->dev), |
1789 | __entry->blocks, (void *)__entry->ip) | 1789 | __entry->blocks, (void *)__entry->ip) |
1790 | ); | 1790 | ); |