summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@gmail.com>2020-11-16 13:06:28 -0500
committerKent Overstreet <kent.overstreet@linux.dev>2023-10-22 17:08:47 -0400
commit3dc5fcfcf51efa7dfd6ef900b06ad1fef0820664 (patch)
treed9603284ef8a181aceb1464a9cbf6911d41ee1b2
parent4d54337cdbf3baf8115bf8c1ed61bf44b3932a6d (diff)
bcachefs: Convert tracepoints to use %ps, not %pf
Symbol decoding was changed from %pf to %ps Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r--fs/bcachefs/trace.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/bcachefs/trace.h b/fs/bcachefs/trace.h
index c30fb4d74a95..09653c7ed858 100644
--- a/fs/bcachefs/trace.h
+++ b/fs/bcachefs/trace.h
@@ -513,7 +513,7 @@ TRACE_EVENT(transaction_restart_ip,
__entry->ip = ip;
),
- TP_printk("%pF %pF", (void *) __entry->caller, (void *) __entry->ip)
+ TP_printk("%pS %pS", (void *) __entry->caller, (void *) __entry->ip)
);
DECLARE_EVENT_CLASS(transaction_restart,
@@ -568,7 +568,7 @@ TRACE_EVENT(trans_restart_would_deadlock,
__entry->want_iter_type = want_iter_type;
),
- TP_printk("%pF %pF because %u have %u:%u want %u:%u",
+ TP_printk("%pS %pS because %u have %u:%u want %u:%u",
(void *) __entry->trans_ip,
(void *) __entry->caller_ip,
__entry->reason,