bcache: set dc->io_disable to true in conditional_stop_bcache_device()
authorColy Li <colyli@suse.de>
Thu, 3 May 2018 10:51:36 +0000 (18:51 +0800)
committerJens Axboe <axboe@kernel.dk>
Thu, 3 May 2018 14:35:15 +0000 (08:35 -0600)
commit4fd8e13843978cbba48b8c21119da60c7fd5910d
tree22076d16824b546806ee8b76cddb7eef1533d57a
parentecb2ba8cb83549f1bb06bc7e693ae8fed43c0e4f
bcache: set dc->io_disable to true in conditional_stop_bcache_device()

Commit 7e027ca4b534b ("bcache: add stop_when_cache_set_failed option to
backing device") adds stop_when_cache_set_failed option and stops bcache
device if stop_when_cache_set_failed is auto and there is dirty data on
broken cache device. There might exists a small time gap that the cache
set is released and set to NULL but bcache device is not released yet
(because they are released in parallel). During this time gap, dc->c is
NULL so CACHE_SET_IO_DISABLE won't be checked, and dc->io_disable is still
false, so new coming I/O requests will be accepted and directly go into
backing device as no cache set attached to. If there is dirty data on
cache device, this behavior may introduce potential inconsistent data.

This patch sets dc->io_disable to true before calling bcache_device_stop()
to make sure the backing device will reject new coming I/O request as
well, so even in the small time gap no I/O will directly go into backing
device to corrupt data consistency.

Fixes: 7e027ca4b534b ("bcache: add stop_when_cache_set_failed option to backing device")
Signed-off-by: Coly Li <colyli@suse.de>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/super.c