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

Commit b7831b20 authored by Liu Bo's avatar Liu Bo Committed by Chris Mason
Browse files

Btrfs: show real function name in btrfs workqueue tracepoint



Use %pf instead of %p, just same as kernel workqueue tracepoints.

Signed-off-by: default avatarLiu Bo <bo.li.liu@oracle.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.cz>
Signed-off-by: default avatarChris Mason <clm@fb.com>
parent 2a39e598
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1009,7 +1009,7 @@ DECLARE_EVENT_CLASS(btrfs__work,
		__entry->normal_work	= &work->normal_work;
	),

	TP_printk("work=%p (normal_work=%p), wq=%p, func=%p, ordered_func=%p,"
	TP_printk("work=%p (normal_work=%p), wq=%p, func=%pf, ordered_func=%p,"
		  " ordered_free=%p",
		  __entry->work, __entry->normal_work, __entry->wq,
		   __entry->func, __entry->ordered_func, __entry->ordered_free)