Message ID | 20201106190337.1973127-25-hch@lst.de (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [01/24] block: remove the call to __invalidate_device in check_disk_size_change | expand |
Christoph Hellwig <hch@lst.de>于2020年11月6日 周五20:15写道: > revalidate_disk_size is not only called from set_capacity_and_notify, > so drop the export. s/not/now > > > Signed-off-by: Christoph Hellwig <hch@lst.de> Thanks! Jack Wang > > --- > fs/block_dev.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/fs/block_dev.c b/fs/block_dev.c > index 66ebf594c97f47..d8664f5c1ff669 100644 > --- a/fs/block_dev.c > +++ b/fs/block_dev.c > @@ -1362,7 +1362,6 @@ void revalidate_disk_size(struct gendisk *disk, bool > verbose) > bdput(bdev); > } > } > -EXPORT_SYMBOL(revalidate_disk_size); > > void bd_set_nr_sectors(struct block_device *bdev, sector_t sectors) > { > -- > 2.28.0 > > > _______________________________________________ > Linux-nvme mailing list > Linux-nvme@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-nvme >
diff --git a/fs/block_dev.c b/fs/block_dev.c index 66ebf594c97f47..d8664f5c1ff669 100644 --- a/fs/block_dev.c +++ b/fs/block_dev.c @@ -1362,7 +1362,6 @@ void revalidate_disk_size(struct gendisk *disk, bool verbose) bdput(bdev); } } -EXPORT_SYMBOL(revalidate_disk_size); void bd_set_nr_sectors(struct block_device *bdev, sector_t sectors) {
revalidate_disk_size is not only called from set_capacity_and_notify, so drop the export. Signed-off-by: Christoph Hellwig <hch@lst.de> --- fs/block_dev.c | 1 - 1 file changed, 1 deletion(-)