mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
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>
This commit is contained in:
parent
4d54337cdb
commit
3dc5fcfcf5
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue