diff options
-rw-r--r-- | drivers/block/loop.c | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/drivers/block/loop.c b/drivers/block/loop.c index c59a672a3de0..76c8da78212b 100644 --- a/drivers/block/loop.c +++ b/drivers/block/loop.c | |||
@@ -1540,9 +1540,9 @@ static const struct block_device_operations lo_fops = { | |||
1540 | * And now the modules code and kernel interface. | 1540 | * And now the modules code and kernel interface. |
1541 | */ | 1541 | */ |
1542 | static int max_loop; | 1542 | static int max_loop; |
1543 | module_param(max_loop, int, 0); | 1543 | module_param(max_loop, int, S_IRUGO); |
1544 | MODULE_PARM_DESC(max_loop, "Maximum number of loop devices"); | 1544 | MODULE_PARM_DESC(max_loop, "Maximum number of loop devices"); |
1545 | module_param(max_part, int, 0); | 1545 | module_param(max_part, int, S_IRUGO); |
1546 | MODULE_PARM_DESC(max_part, "Maximum number of partitions per loop device"); | 1546 | MODULE_PARM_DESC(max_part, "Maximum number of partitions per loop device"); |
1547 | MODULE_LICENSE("GPL"); | 1547 | MODULE_LICENSE("GPL"); |
1548 | MODULE_ALIAS_BLOCKDEV_MAJOR(LOOP_MAJOR); | 1548 | MODULE_ALIAS_BLOCKDEV_MAJOR(LOOP_MAJOR); |
@@ -1688,9 +1688,20 @@ static int __init loop_init(void) | |||
1688 | */ | 1688 | */ |
1689 | 1689 | ||
1690 | part_shift = 0; | 1690 | part_shift = 0; |
1691 | if (max_part > 0) | 1691 | if (max_part > 0) { |
1692 | part_shift = fls(max_part); | 1692 | part_shift = fls(max_part); |
1693 | 1693 | ||
1694 | /* | ||
1695 | * Adjust max_part according to part_shift as it is exported | ||
1696 | * to user space so that user can decide correct minor number | ||
1697 | * if [s]he want to create more devices. | ||
1698 | * | ||
1699 | * Note that -1 is required because partition 0 is reserved | ||
1700 | * for the whole disk. | ||
1701 | */ | ||
1702 | max_part = (1UL << part_shift) - 1; | ||
1703 | } | ||
1704 | |||
1694 | if ((1UL << part_shift) > DISK_MAX_PARTS) | 1705 | if ((1UL << part_shift) > DISK_MAX_PARTS) |
1695 | return -EINVAL; | 1706 | return -EINVAL; |
1696 | 1707 | ||