summaryrefslogtreecommitdiffstats
path: root/include/trace/events/btrfs.h
diff options
context:
space:
mode:
authorLiu Bo <bo.li.liu@oracle.com>2014-08-15 17:38:06 +0200
committerChris Mason <clm@fb.com>2014-09-17 22:38:18 +0200
commitb7831b20f32019b741eb8fe3435c2516e13e0c4a (patch)
tree39e58ed60447f136352ab69964d86e68c8067911 /include/trace/events/btrfs.h
parentBtrfs: shrink further sizeof(struct extent_buffer) (diff)
downloadlinux-b7831b20f32019b741eb8fe3435c2516e13e0c4a.tar.xz
linux-b7831b20f32019b741eb8fe3435c2516e13e0c4a.zip
Btrfs: show real function name in btrfs workqueue tracepoint
Use %pf instead of %p, just same as kernel workqueue tracepoints. Signed-off-by: Liu Bo <bo.li.liu@oracle.com> Reviewed-by: David Sterba <dsterba@suse.cz> Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'include/trace/events/btrfs.h')
-rw-r--r--include/trace/events/btrfs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/events/btrfs.h b/include/trace/events/btrfs.h
index 64a90d78e6bb..e022a60699df 100644
--- a/include/trace/events/btrfs.h
+++ b/include/trace/events/btrfs.h
@@ -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)