On Fri, Nov 6, 2020 at 8:04 PM Christoph Hellwig <h...@lst.de> wrote: > > 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 <h...@lst.de> Thanks, Christoph! Acked-by: Jack Wang <jinpu.w...@cloud.ionos.com> > --- > drivers/block/rnbd/rnbd-clt.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/block/rnbd/rnbd-clt.c b/drivers/block/rnbd/rnbd-clt.c > index 8b2411ccbda97c..bb13d7dd195a08 100644 > --- a/drivers/block/rnbd/rnbd-clt.c > +++ b/drivers/block/rnbd/rnbd-clt.c > @@ -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; > } > > -- > 2.28.0 >
- [PATCH 03/24] nvme: let set_capacity_revalidate_and_not... Christoph Hellwig
- Re: [PATCH 03/24] nvme: let set_capacity_revalidat... Hannes Reinecke
- Re: [PATCH 03/24] nvme: let set_capacity_reval... Christoph Hellwig
- Re: [PATCH 03/24] nvme: let set_capacity_r... Hannes Reinecke
- [PATCH 07/24] nbd: remove the call to set_blocksize Christoph Hellwig
- [PATCH 08/24] nbd: move the task_recv check into nbd_si... Christoph Hellwig
- [PATCH 19/24] zram: use set_capacity_and_notify Christoph Hellwig
- [PATCH 17/24] rbd: use set_capacity_and_notify Christoph Hellwig
- [PATCH 11/24] nbd: use set_capacity_and_notify Christoph Hellwig
- [PATCH 18/24] rnbd: use set_capacity_and_notify Christoph Hellwig
- Re: [PATCH 18/24] rnbd: use set_capacity_and_notif... Jinpu Wang
- [PATCH 21/24] md: use set_capacity_and_notify Christoph Hellwig
- [PATCH 23/24] virtio-blk: remove a spurious call to rev... Christoph Hellwig
- Re: [PATCH 23/24] virtio-blk: remove a spurious ca... Paolo Bonzini
- Re: [PATCH 23/24] virtio-blk: remove a spurious ca... Stefan Hajnoczi
- Re: [PATCH 23/24] virtio-blk: remove a spurious ca... Michael S. Tsirkin
- [PATCH 16/24] drbd: use set_capacity_and_notify Christoph Hellwig
- [PATCH 12/24] aoe: don't call set_capacity from irq con... Christoph Hellwig
- [PATCH 20/24] dm-raid: use set_capacity_and_notify Christoph Hellwig
- [PATCH 13/24] dm: use set_capacity_and_notify Christoph Hellwig