Commit 3dc5fcfc authored by Kent Overstreet's avatar Kent Overstreet Committed by Kent Overstreet

bcachefs: Convert tracepoints to use %ps, not %pf

Symbol decoding was changed from %pf to %ps
Signed-off-by: default avatarKent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent 4d54337c
...@@ -513,7 +513,7 @@ TRACE_EVENT(transaction_restart_ip, ...@@ -513,7 +513,7 @@ TRACE_EVENT(transaction_restart_ip,
__entry->ip = 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, DECLARE_EVENT_CLASS(transaction_restart,
...@@ -568,7 +568,7 @@ TRACE_EVENT(trans_restart_would_deadlock, ...@@ -568,7 +568,7 @@ TRACE_EVENT(trans_restart_would_deadlock,
__entry->want_iter_type = want_iter_type; __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->trans_ip,
(void *) __entry->caller_ip, (void *) __entry->caller_ip,
__entry->reason, __entry->reason,
......
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