]> git.baikalelectronics.ru Git - kernel.git/commit
bcache: add journal statistic
authorTang Junhui <tang.junhui@zte.com.cn>
Wed, 7 Feb 2018 19:41:39 +0000 (11:41 -0800)
committerJens Axboe <axboe@kernel.dk>
Wed, 7 Feb 2018 19:50:01 +0000 (12:50 -0700)
commit8dbeec3a3dcf0c6674add8285cbf097a2723eb25
tree16b0773daa7c4b7d222b221cf75470ad34c39dc8
parenta3cca9e174dce268e20c477ddc65c650f8f018e4
bcache: add journal statistic

Sometimes, Journal takes up a lot of CPU, we need statistics
to know what's the journal is doing. So this patch provide
some journal statistics:
1) reclaim: how many times the journal try to reclaim resource,
   usually the journal bucket or/and the pin are exhausted.
2) flush_write: how many times the journal try to flush btree node
   to cache device, usually the journal bucket are exhausted.
3) retry_flush_write: how many times the journal retry to flush
   the next btree node, usually the previous tree node have been
   flushed by other thread.
we show these statistic by sysfs interface. Through these statistics
We can totally see the status of journal module when the CPU is too
high.

Signed-off-by: Tang Junhui <tang.junhui@zte.com.cn>
Reviewed-by: Michael Lyle <mlyle@lyle.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/bcache.h
drivers/md/bcache/journal.c
drivers/md/bcache/sysfs.c