]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
bcache: recal cached_dev_sectors on detach
authorShenghui Wang <shhuiw@foxmail.com>
Mon, 8 Oct 2018 12:41:15 +0000 (20:41 +0800)
committerJens Axboe <axboe@kernel.dk>
Mon, 8 Oct 2018 14:19:50 +0000 (08:19 -0600)
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 <shhuiw@foxmail.com>
Signed-off-by: Coly Li <colyli@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/super.c

index c116b6e0d85aa42f1b86dd54a21402809ab0eff3..1155bd823b6f98dfca957fe02002984d0fa37ef7 100644 (file)
@@ -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);