]> www.infradead.org Git - users/hch/block.git/commitdiff
rbd: use set_capacity_and_notify
authorChristoph Hellwig <hch@lst.de>
Wed, 4 Nov 2020 14:53:55 +0000 (15:53 +0100)
committerChristoph Hellwig <hch@lst.de>
Sat, 14 Nov 2020 17:22:59 +0000 (18:22 +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: Ilya Dryomov <idryomov@gmail.com>
drivers/block/rbd.c

index f84128abade3196b3a05812280973e0292b0f35e..b7a194ffda55b44a7b4fb235511140bd61bbdc85 100644 (file)
@@ -4920,8 +4920,7 @@ static void rbd_dev_update_size(struct rbd_device *rbd_dev)
            !test_bit(RBD_DEV_FLAG_REMOVING, &rbd_dev->flags)) {
                size = (sector_t)rbd_dev->mapping.size / SECTOR_SIZE;
                dout("setting size to %llu sectors", (unsigned long long)size);
-               set_capacity(rbd_dev->disk, size);
-               revalidate_disk_size(rbd_dev->disk, true);
+               set_capacity_and_notify(rbd_dev->disk, size);
        }
 }