mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #40056 from kolyshkin/dm-unit
devmapper: fix unit test
This commit is contained in:
commit
4faf65f250
1 changed files with 3 additions and 2 deletions
|
@ -34,8 +34,9 @@ func initLoopbacks() error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
// create at least 8 loopback files, ya, that is a good number
|
||||
for i := 0; i < 8; i++ {
|
||||
// create at least 128 loopback files, since a few first ones
|
||||
// might be already in use by the host OS
|
||||
for i := 0; i < 128; i++ {
|
||||
loopPath := fmt.Sprintf("/dev/loop%d", i)
|
||||
// only create new loopback files if they don't exist
|
||||
if _, err := os.Stat(loopPath); err != nil {
|
||||
|
|
Loading…
Add table
Reference in a new issue