mirror of
git://sourceware.org/git/lvm2.git
synced 2025-03-10 16:58:47 +03:00
Only make one attempt at contiguous allocation.
This commit is contained in:
parent
4f8781051a
commit
10b44b2d4a
@ -1,5 +1,6 @@
|
|||||||
Version 2.01.13 -
|
Version 2.01.13 -
|
||||||
================================
|
================================
|
||||||
|
Only make one attempt at contiguous allocation.
|
||||||
Fix lvm1 format metadata read.
|
Fix lvm1 format metadata read.
|
||||||
Fix lvm1 format non-mirror lvcreate.
|
Fix lvm1 format non-mirror lvcreate.
|
||||||
|
|
||||||
|
@ -721,7 +721,7 @@ static int _find_parallel_space(struct alloc_handle *ah, alloc_policy_t alloc,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
} while (*allocated != needed && can_split);
|
} while (!contiguous && *allocated != needed && can_split);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user