]> www.infradead.org Git - users/hch/block.git/commitdiff
drbd: use bdev_nr_sectors instead of open coding it
authorChristoph Hellwig <hch@lst.de>
Mon, 11 Oct 2021 11:03:17 +0000 (13:03 +0200)
committerChristoph Hellwig <hch@lst.de>
Mon, 11 Oct 2021 11:05:09 +0000 (13:05 +0200)
Use the proper helper to read the block device size.

Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/block/drbd/drbd_int.h

index 5d9181382ce1909d7ebdd3c6e52e02044d42202a..75fda53eed8cf3cecadbad1f2bbb7dafee0ad475 100644 (file)
@@ -1826,8 +1826,7 @@ static inline sector_t drbd_md_last_sector(struct drbd_backing_dev *bdev)
 /* Returns the number of 512 byte sectors of the device */
 static inline sector_t drbd_get_capacity(struct block_device *bdev)
 {
-       /* return bdev ? get_capacity(bdev->bd_disk) : 0; */
-       return bdev ? i_size_read(bdev->bd_inode) >> 9 : 0;
+       return bdev ? bdev_nr_sectors(bdev) : 0;
 }
 
 /**