f2fs: adds a tracepoint for f2fs_submit_read_bio
This patch adds a tracepoint for f2fs_submit_read_bio. Signed-off-by: Chao Yu <chao2.yu@samsung.com> [Jaegeuk Kim: integrate tracepoints of f2fs_submit_read(_write)_bio] Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
This commit is contained in:
parent
87b8872d5b
commit
d4d288bc72
|
@ -421,6 +421,8 @@ void f2fs_submit_read_bio(struct f2fs_sb_info *sbi, int rw)
|
||||||
if (!io->bio)
|
if (!io->bio)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
trace_f2fs_submit_read_bio(sbi->sb, rw, META, io->bio);
|
||||||
|
|
||||||
mutex_lock(&io->io_mutex);
|
mutex_lock(&io->io_mutex);
|
||||||
if (io->bio) {
|
if (io->bio) {
|
||||||
submit_bio(rw, io->bio);
|
submit_bio(rw, io->bio);
|
||||||
|
|
|
@ -844,6 +844,9 @@ static void do_submit_bio(struct f2fs_sb_info *sbi,
|
||||||
|
|
||||||
if (type >= META_FLUSH)
|
if (type >= META_FLUSH)
|
||||||
rw = WRITE_FLUSH_FUA;
|
rw = WRITE_FLUSH_FUA;
|
||||||
|
|
||||||
|
trace_f2fs_submit_write_bio(sbi->sb, rw, btype, io->bio);
|
||||||
|
|
||||||
if (btype == META)
|
if (btype == META)
|
||||||
rw |= REQ_META;
|
rw |= REQ_META;
|
||||||
|
|
||||||
|
@ -851,8 +854,6 @@ static void do_submit_bio(struct f2fs_sb_info *sbi,
|
||||||
p->sbi = sbi;
|
p->sbi = sbi;
|
||||||
io->bio->bi_end_io = f2fs_end_io_write;
|
io->bio->bi_end_io = f2fs_end_io_write;
|
||||||
|
|
||||||
trace_f2fs_do_submit_bio(sbi->sb, btype, sync, io->bio);
|
|
||||||
|
|
||||||
if (type == META_FLUSH) {
|
if (type == META_FLUSH) {
|
||||||
DECLARE_COMPLETION_ONSTACK(wait);
|
DECLARE_COMPLETION_ONSTACK(wait);
|
||||||
p->is_sync = true;
|
p->is_sync = true;
|
||||||
|
|
|
@ -18,13 +18,14 @@
|
||||||
|
|
||||||
#define show_bio_type(type) \
|
#define show_bio_type(type) \
|
||||||
__print_symbolic(type, \
|
__print_symbolic(type, \
|
||||||
{ READ, "READ" }, \
|
{ READ, "READ" }, \
|
||||||
{ READA, "READAHEAD" }, \
|
{ READA, "READAHEAD" }, \
|
||||||
{ READ_SYNC, "READ_SYNC" }, \
|
{ READ_SYNC, "READ_SYNC" }, \
|
||||||
{ WRITE, "WRITE" }, \
|
{ WRITE, "WRITE" }, \
|
||||||
{ WRITE_SYNC, "WRITE_SYNC" }, \
|
{ WRITE_SYNC, "WRITE_SYNC" }, \
|
||||||
{ WRITE_FLUSH, "WRITE_FLUSH" }, \
|
{ WRITE_FLUSH, "WRITE_FLUSH" }, \
|
||||||
{ WRITE_FUA, "WRITE_FUA" })
|
{ WRITE_FUA, "WRITE_FUA" }, \
|
||||||
|
{ WRITE_FLUSH_FUA, "WRITE_FLUSH_FUA" })
|
||||||
|
|
||||||
#define show_data_type(type) \
|
#define show_data_type(type) \
|
||||||
__print_symbolic(type, \
|
__print_symbolic(type, \
|
||||||
|
@ -598,36 +599,50 @@ TRACE_EVENT(f2fs_reserve_new_block,
|
||||||
__entry->ofs_in_node)
|
__entry->ofs_in_node)
|
||||||
);
|
);
|
||||||
|
|
||||||
TRACE_EVENT(f2fs_do_submit_bio,
|
DECLARE_EVENT_CLASS(f2fs__submit_bio,
|
||||||
|
|
||||||
TP_PROTO(struct super_block *sb, int btype, bool sync, struct bio *bio),
|
TP_PROTO(struct super_block *sb, int rw, int type, struct bio *bio),
|
||||||
|
|
||||||
TP_ARGS(sb, btype, sync, bio),
|
TP_ARGS(sb, rw, type, bio),
|
||||||
|
|
||||||
TP_STRUCT__entry(
|
TP_STRUCT__entry(
|
||||||
__field(dev_t, dev)
|
__field(dev_t, dev)
|
||||||
__field(int, btype)
|
__field(int, rw)
|
||||||
__field(bool, sync)
|
__field(int, type)
|
||||||
__field(sector_t, sector)
|
__field(sector_t, sector)
|
||||||
__field(unsigned int, size)
|
__field(unsigned int, size)
|
||||||
),
|
),
|
||||||
|
|
||||||
TP_fast_assign(
|
TP_fast_assign(
|
||||||
__entry->dev = sb->s_dev;
|
__entry->dev = sb->s_dev;
|
||||||
__entry->btype = btype;
|
__entry->rw = rw;
|
||||||
__entry->sync = sync;
|
__entry->type = type;
|
||||||
__entry->sector = bio->bi_sector;
|
__entry->sector = bio->bi_sector;
|
||||||
__entry->size = bio->bi_size;
|
__entry->size = bio->bi_size;
|
||||||
),
|
),
|
||||||
|
|
||||||
TP_printk("dev = (%d,%d), type = %s, io = %s, sector = %lld, size = %u",
|
TP_printk("dev = (%d,%d), %s, %s, sector = %lld, size = %u",
|
||||||
show_dev(__entry),
|
show_dev(__entry),
|
||||||
show_block_type(__entry->btype),
|
show_bio_type(__entry->rw),
|
||||||
__entry->sync ? "sync" : "no sync",
|
show_block_type(__entry->type),
|
||||||
(unsigned long long)__entry->sector,
|
(unsigned long long)__entry->sector,
|
||||||
__entry->size)
|
__entry->size)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
DEFINE_EVENT(f2fs__submit_bio, f2fs_submit_write_bio,
|
||||||
|
|
||||||
|
TP_PROTO(struct super_block *sb, int rw, int type, struct bio *bio),
|
||||||
|
|
||||||
|
TP_ARGS(sb, rw, type, bio)
|
||||||
|
);
|
||||||
|
|
||||||
|
DEFINE_EVENT(f2fs__submit_bio, f2fs_submit_read_bio,
|
||||||
|
|
||||||
|
TP_PROTO(struct super_block *sb, int rw, int type, struct bio *bio),
|
||||||
|
|
||||||
|
TP_ARGS(sb, rw, type, bio)
|
||||||
|
);
|
||||||
|
|
||||||
DECLARE_EVENT_CLASS(f2fs__page,
|
DECLARE_EVENT_CLASS(f2fs__page,
|
||||||
|
|
||||||
TP_PROTO(struct page *page, int type),
|
TP_PROTO(struct page *page, int type),
|
||||||
|
|
Loading…
Reference in New Issue