Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3048e17e authored by Jan Kara's avatar Jan Kara Committed by Gerrit - the friendly Code Review server
Browse files

block: Move bdev_unhash_inode() after invalidate_partition()



Move bdev_unhash_inode() after invalidate_partition() as
invalidate_partition() looks up bdev and it cannot find the right bdev
inode after bdev_unhash_inode() is called. Thus invalidate_partition()
would not invalidate page cache of the previously used bdev. Also use
part_devt() when calling bdev_unhash_inode() instead of manually
creating the device number.

Change-Id: Ieda217d808e35b2d3d0a689e027b2022d6077943
Tested-by: default avatarLekshmi Pillai <lekshmicpillai@in.ibm.com>
Acked-by: default avatarTejun Heo <tj@kernel.org>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
Signed-off-by: default avatarJens Axboe <axboe@fb.com>
Git-commit: 4b8c861a7c79806fb9ee564c87f517dc26fc2d1e
Git-repo: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git


[riteshh@codeaurora.org: Resolved merge conflicts]
Signed-off-by: default avatarRitesh Harjani <riteshh@codeaurora.org>
parent b8439981
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -648,9 +648,8 @@ void del_gendisk(struct gendisk *disk)
	disk_part_iter_init(&piter, disk,
			     DISK_PITER_INCL_EMPTY | DISK_PITER_REVERSE);
	while ((part = disk_part_iter_next(&piter))) {
		bdev_unhash_inode(MKDEV(disk->major,
					disk->first_minor + part->partno));
		invalidate_partition(disk, part->partno);
		bdev_unhash_inode(part_devt(part));
		delete_partition(disk, part->partno);
	}
	disk_part_iter_exit(&piter);