1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

profile: add thin-performance.profile

Define a "performance" profile for thin pools which is exactly:
  - allocation/thin_pool_zero = 0
  - thin_pool_chunk_size_calculation = "performance"
This commit is contained in:
Peter Rajnoha 2013-09-25 16:02:38 +02:00
parent 78cba8eb3f
commit dd796d6a94
3 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.103 -
======================================
Add thin-performance configuration profile.
Add lvm.conf allocation/thin_pool_chunk_size_calculation option.
Fix contiguous & cling allocation policies for parity RAID. (2.02.100)
Set use_lvmetad=0 on lvmconf --enable-cluster, reset to default on --disable-cluster.

View File

@ -19,7 +19,7 @@ CONFSRC=example.conf
CONFDEST=lvm.conf
DEFAULT_PROFILE=default.profile
PROFILES=$(DEFAULT_PROFILE)
PROFILES=$(DEFAULT_PROFILE) thin-performance.profile
include $(top_builddir)/make.tmpl

View File

@ -0,0 +1,4 @@
allocation {
thin_pool_chunk_size_calculation = "performance"
thin_pool_zero = 0
}