From: Shenghui Wang Date: Mon, 8 Oct 2018 12:41:15 +0000 (+0800) Subject: bcache: recal cached_dev_sectors on detach X-Git-Tag: microblaze-v5.0-rc1~201^2~101 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=46010141da6677b81cc77f9b47f8ac62bd1cbfd3;p=linux-2.6-microblaze.git bcache: recal cached_dev_sectors on detach Recal cached_dev_sectors on cached_dev detached, as recal done on cached_dev attached. Update the cached_dev_sectors before bcache_device_detach called as bcache_device_detach will set bcache_device->c to NULL. Signed-off-by: Shenghui Wang Signed-off-by: Coly Li Signed-off-by: Jens Axboe --- diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c index c116b6e0d85a..1155bd823b6f 100644 --- a/drivers/md/bcache/super.c +++ b/drivers/md/bcache/super.c @@ -1009,6 +1009,7 @@ static void cached_dev_detach_finish(struct work_struct *w) bch_write_bdev_super(dc, &cl); closure_sync(&cl); + calc_cached_dev_sectors(dc->disk.c); bcache_device_detach(&dc->disk); list_move(&dc->list, &uncached_devices);