Increase max loop device number upto 255 04/233304/1
authorJungwoo <jungwoo0.lee@samsung.com>
Wed, 13 May 2020 12:09:10 +0000 (21:09 +0900)
committerJungwoo <jungwoo0.lee@samsung.com>
Wed, 13 May 2020 12:26:41 +0000 (21:26 +0900)
commit63be4e5afa2e3337571ff4670493e93897f7ec8a
tree68106bba9adb6e7d9db7b25d8a3520540e96b700
parenta7c2449f41edb9a0b89a0dec49d14ee657298bdd
Increase max loop device number upto 255

According to loop manual,
kernel provides the /dev/loop-control device since Linux 3.1,
which permits an application to dynamically find a free device,
and to add and remove loop devices from the system.

The limit is the maximum number of minor devices for a single major
device(since loop has a single major, block 7), which is limited by
MINORBITS which is located in kdev_t.h file of Linux.
Therefore, it actually 2 to the power of 20, just over a million.

In result, Linux could support lots number of loop devices.

To use more than 100 loop devices,
increase max loop device number in mic.

Change-Id: I2e763f3c70c5aa919e67621bc54d37c0def9d07b
mic/utils/fs_related.py