mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 02:27:36 +03:00
Linux 5.16: use bdev_nr_bytes() to get device capacity
This helper was introduced long ago, in 5.16. Since 6.10, bd_inode no longer exists, but the helper has been updated, so detect it and use it in all versions where it is available. Signed-off-by: Rob Norris <robn@despairlabs.com> Sponsored-by: https://despairlabs.com/sponsor/ Reviewed-by: Tony Hutter <hutter2@llnl.gov> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
@@ -150,7 +150,11 @@ vdev_bdev_mode(spa_mode_t smode)
|
||||
static uint64_t
|
||||
bdev_capacity(struct block_device *bdev)
|
||||
{
|
||||
#ifdef HAVE_BDEV_NR_BYTES
|
||||
return (bdev_nr_bytes(bdev));
|
||||
#else
|
||||
return (i_size_read(bdev->bd_inode));
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !defined(HAVE_BDEV_WHOLE)
|
||||
@@ -209,7 +213,7 @@ bdev_max_capacity(struct block_device *bdev, uint64_t wholedisk)
|
||||
* "reserved" EFI partition: in such cases return the device
|
||||
* usable capacity.
|
||||
*/
|
||||
available = i_size_read(bdev_whole(bdev)->bd_inode) -
|
||||
available = bdev_capacity(bdev_whole(bdev)) -
|
||||
((EFI_MIN_RESV_SIZE + NEW_START_BLOCK +
|
||||
PARTITION_END_ALIGNMENT) << SECTOR_BITS);
|
||||
psize = MAX(available, bdev_capacity(bdev));
|
||||
@@ -925,12 +929,12 @@ vdev_disk_io_rw(zio_t *zio)
|
||||
/*
|
||||
* Accessing outside the block device is never allowed.
|
||||
*/
|
||||
if (zio->io_offset + zio->io_size > bdev->bd_inode->i_size) {
|
||||
if (zio->io_offset + zio->io_size > bdev_capacity(bdev)) {
|
||||
vdev_dbgmsg(zio->io_vd,
|
||||
"Illegal access %llu size %llu, device size %llu",
|
||||
(u_longlong_t)zio->io_offset,
|
||||
(u_longlong_t)zio->io_size,
|
||||
(u_longlong_t)i_size_read(bdev->bd_inode));
|
||||
(u_longlong_t)bdev_capacity(bdev));
|
||||
return (SET_ERROR(EIO));
|
||||
}
|
||||
|
||||
@@ -1123,12 +1127,12 @@ vdev_classic_physio(zio_t *zio)
|
||||
/*
|
||||
* Accessing outside the block device is never allowed.
|
||||
*/
|
||||
if (io_offset + io_size > bdev->bd_inode->i_size) {
|
||||
if (io_offset + io_size > bdev_capacity(bdev)) {
|
||||
vdev_dbgmsg(zio->io_vd,
|
||||
"Illegal access %llu size %llu, device size %llu",
|
||||
(u_longlong_t)io_offset,
|
||||
(u_longlong_t)io_size,
|
||||
(u_longlong_t)i_size_read(bdev->bd_inode));
|
||||
(u_longlong_t)bdev_capacity(bdev));
|
||||
return (SET_ERROR(EIO));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user