]> www.infradead.org Git - users/hch/block.git/commitdiff
md: don't detour through bd_contains for the gendisk
authorChristoph Hellwig <hch@lst.de>
Wed, 2 Sep 2020 09:21:05 +0000 (11:21 +0200)
committerChristoph Hellwig <hch@lst.de>
Wed, 2 Sep 2020 09:27:17 +0000 (11:27 +0200)
bd_disk is set on all block devices, including those for partitions.

Signed-off-by: Christoph Hellwig <hch@lst.de>
drivers/md/md.c
drivers/md/md.h

index 7fbd5cb90b039c6015ce84bc01aff814f36fa160..d3d75e23efdcedda8cd04a5081e08065f195151b 100644 (file)
@@ -8444,7 +8444,7 @@ static int is_mddev_idle(struct mddev *mddev, int init)
        idle = 1;
        rcu_read_lock();
        rdev_for_each_rcu(rdev, mddev) {
-               struct gendisk *disk = rdev->bdev->bd_contains->bd_disk;
+               struct gendisk *disk = rdev->bdev->bd_disk;
                curr_events = (int)part_stat_read_accum(&disk->part0, sectors) -
                              atomic_read(&disk->sync_io);
                /* sync IO will cause sync_io to increase before the disk_stats
index d9c4e6b7e9398d368f45b55ce2ef1f661f775152..a5bfdfe93bf71b66c0a856247ffff04efc2a81c5 100644 (file)
@@ -551,7 +551,7 @@ extern void mddev_unlock(struct mddev *mddev);
 
 static inline void md_sync_acct(struct block_device *bdev, unsigned long nr_sectors)
 {
-       atomic_add(nr_sectors, &bdev->bd_contains->bd_disk->sync_io);
+       atomic_add(nr_sectors, &bdev->bd_disk->sync_io);
 }
 
 static inline void md_sync_acct_bio(struct bio *bio, unsigned long nr_sectors)