Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'block-5.12-2021-04-23' of git://git.kernel.dk/linux-block

Pull block fix from Jens Axboe:
"A single fix for a behavioral regression in this series, when
re-reading the partition table with partitions open"

* tag 'block-5.12-2021-04-23' of git://git.kernel.dk/linux-block:
block: return -EBUSY when there are open partitions in blkdev_reread_part

+2
+2
block/ioctl.c
··· 89 89 return -EINVAL; 90 90 if (!capable(CAP_SYS_ADMIN)) 91 91 return -EACCES; 92 + if (bdev->bd_part_count) 93 + return -EBUSY; 92 94 93 95 /* 94 96 * Reopen the device to revalidate the driver state and force a