OSDN Git Service

bcache: initialize dirty stripes in flash_dev_run()
authorTang Junhui <tang.junhui@zte.com.cn>
Wed, 6 Sep 2017 17:28:53 +0000 (01:28 +0800)
committerJens Axboe <axboe@kernel.dk>
Thu, 7 Sep 2017 19:32:29 +0000 (13:32 -0600)
commit175206cf9ab63161dec74d9cd7f9992e062491f5
treee296d08687407bec1b6d28b84c41f1dcfb9e58dd
parentbf09375337077b692d21d062c30697c86f2872d3
bcache: initialize dirty stripes in flash_dev_run()

bcache uses a Proportion-Differentiation Controller algorithm to control
writeback rate to cached devices. In the PD controller algorithm, dirty
stripes of thin flash device should not be counted in, because flash only
volumes never write back dirty data.

Currently dirty stripe counter for thin flash device is not initialized
when the thin flash device starts. Which means the following calculation
in PD controller will reference an undefined dirty stripes number, and
all cached devices attached to the same cache set where the thin flash
device lies on may have an inaccurate writeback rate.

This patch calles bch_sectors_dirty_init() in flash_dev_run(), to
correctly initialize dirty stripe counter when the thin flash device
starts to run. This patch also does following parameter data type change,
 -void bch_sectors_dirty_init(struct cached_dev *dc);
 +void bch_sectors_dirty_init(struct bcache_device *);
to call this function conveniently in flash_dev_run().

(Commit log is composed by Coly Li)

Signed-off-by: Tang Junhui <tang.junhui@zte.com.cn>
Reviewed-by: Coly Li <colyli@suse.de>
Cc: stable@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/super.c
drivers/md/bcache/writeback.c
drivers/md/bcache/writeback.h