]> www.infradead.org Git - users/hch/block.git/commitdiff
rnbd: use set_capacity_and_notify
authorChristoph Hellwig <hch@lst.de>
Wed, 4 Nov 2020 14:54:34 +0000 (15:54 +0100)
committerChristoph Hellwig <hch@lst.de>
Sat, 14 Nov 2020 17:23:04 +0000 (18:23 +0100)
Use set_capacity_and_notify to set the size of both the disk and block
device.  This also gets the uevent notifications for the resize for free.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Jack Wang <jinpu.wang@cloud.ionos.com>
drivers/block/rnbd/rnbd-clt.c

index 8b2411ccbda97c4f613882bbdea554cf6b89e904..bb13d7dd195a08b305113345c8bba582890b376b 100644 (file)
@@ -100,8 +100,7 @@ static int rnbd_clt_change_capacity(struct rnbd_clt_dev *dev,
        rnbd_clt_info(dev, "Device size changed from %zu to %zu sectors\n",
                       dev->nsectors, new_nsectors);
        dev->nsectors = new_nsectors;
-       set_capacity(dev->gd, dev->nsectors);
-       revalidate_disk_size(dev->gd, true);
+       set_capacity_and_notify(dev->gd, dev->nsectors);
        return 0;
 }