summaryrefslogtreecommitdiffstats
path: root/include/trace/events/erofs.h
diff options
context:
space:
mode:
authorGao Xiang <hsiangkao@linux.alibaba.com>2021-12-09 09:29:18 +0800
committerGao Xiang <hsiangkao@linux.alibaba.com>2021-12-09 10:02:10 +0800
commit469407a3b5ed9390cfacb0363d1cc926a51f6a14 (patch)
treed6e63a313392ad5a1b5db91fa0bdc4b0309eead1 /include/trace/events/erofs.h
parent7acc3d1afd02a956f2a6fbe0e8395698943c9686 (diff)
downloadlinux-stable-469407a3b5ed9390cfacb0363d1cc926a51f6a14.tar.gz
linux-stable-469407a3b5ed9390cfacb0363d1cc926a51f6a14.tar.bz2
linux-stable-469407a3b5ed9390cfacb0363d1cc926a51f6a14.zip
erofs: clean up erofs_map_blocks tracepoints
Since the new type of chunk-based files is introduced, there is no need to leave flatmode tracepoints. Rename to erofs_map_blocks instead. Link: https://lore.kernel.org/r/20211209012918.30337-1-hsiangkao@linux.alibaba.com Reviewed-by: Yue Hu <huyue2@yulong.com> Signed-off-by: Gao Xiang <hsiangkao@linux.alibaba.com>
Diffstat (limited to 'include/trace/events/erofs.h')
-rw-r--r--include/trace/events/erofs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/trace/events/erofs.h b/include/trace/events/erofs.h
index 16ae7b666810..57de057bd503 100644
--- a/include/trace/events/erofs.h
+++ b/include/trace/events/erofs.h
@@ -169,7 +169,7 @@ DECLARE_EVENT_CLASS(erofs__map_blocks_enter,
__entry->flags ? show_map_flags(__entry->flags) : "NULL")
);
-DEFINE_EVENT(erofs__map_blocks_enter, erofs_map_blocks_flatmode_enter,
+DEFINE_EVENT(erofs__map_blocks_enter, erofs_map_blocks_enter,
TP_PROTO(struct inode *inode, struct erofs_map_blocks *map,
unsigned flags),
@@ -221,7 +221,7 @@ DECLARE_EVENT_CLASS(erofs__map_blocks_exit,
show_mflags(__entry->mflags), __entry->ret)
);
-DEFINE_EVENT(erofs__map_blocks_exit, erofs_map_blocks_flatmode_exit,
+DEFINE_EVENT(erofs__map_blocks_exit, erofs_map_blocks_exit,
TP_PROTO(struct inode *inode, struct erofs_map_blocks *map,
unsigned flags, int ret),