diff options
Diffstat (limited to 'fs/partitions')
-rw-r--r-- | fs/partitions/check.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/partitions/check.c b/fs/partitions/check.c index 0e411603fdf5..7408227c49c9 100644 --- a/fs/partitions/check.c +++ b/fs/partitions/check.c | |||
@@ -504,7 +504,6 @@ int rescan_partitions(struct gendisk *disk, struct block_device *bdev) | |||
504 | res = invalidate_partition(disk, 0); | 504 | res = invalidate_partition(disk, 0); |
505 | if (res) | 505 | if (res) |
506 | return res; | 506 | return res; |
507 | bdev->bd_invalidated = 0; | ||
508 | 507 | ||
509 | disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY); | 508 | disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY); |
510 | while ((part = disk_part_iter_next(&piter))) | 509 | while ((part = disk_part_iter_next(&piter))) |
@@ -513,6 +512,8 @@ int rescan_partitions(struct gendisk *disk, struct block_device *bdev) | |||
513 | 512 | ||
514 | if (disk->fops->revalidate_disk) | 513 | if (disk->fops->revalidate_disk) |
515 | disk->fops->revalidate_disk(disk); | 514 | disk->fops->revalidate_disk(disk); |
515 | check_disk_size_change(disk, bdev); | ||
516 | bdev->bd_invalidated = 0; | ||
516 | if (!get_capacity(disk) || !(state = check_partition(disk, bdev))) | 517 | if (!get_capacity(disk) || !(state = check_partition(disk, bdev))) |
517 | return 0; | 518 | return 0; |
518 | if (IS_ERR(state)) /* I/O error reading the partition table */ | 519 | if (IS_ERR(state)) /* I/O error reading the partition table */ |