]> sourceware.org Git - lvm2.git/commit
thin: improve 16g support for thin pool metadata
authorZdenek Kabelac <zkabelac@redhat.com>
Tue, 12 Jan 2021 16:59:29 +0000 (17:59 +0100)
committerZdenek Kabelac <zkabelac@redhat.com>
Mon, 1 Feb 2021 11:06:13 +0000 (12:06 +0100)
commitb4212be2e7e8797bbf8f9a166347659cc39ba075
treeb5db3667aa0bcb03d48d793870873d633ea48145
parentb218a7cfe7179ced64047374af51a883c1611c4d
thin: improve 16g support for thin pool metadata

Initial support for thin-pool used slightly smaller max size 15.81GiB
for thin-pool metadata. However the real limit later settled at 15.88GiB
(difference is ~64MiB - 16448 4K blocks).

lvm2 could not simply increase the size as it has been using hard cropping
of the loaded metadata device to avoid warnings printing warning of kernel
when the size was bigger (i.e. due to bigger extent_size).

This patch adds the new lvm.conf configurable setting:
allocation/thin_pool_crop_metadata
which defaults to 0 -> no crop of metadata beyond 15.81GiB.
Only user with these sizes of metadata will be affected.

Without cropping lvm2 now limits metadata allocation size to 15.88GiB.
Any space beyond is currently not used by thin-pool target.
Even if i.e. bigger LV is used for metadata via lvconvert,
or allocated bigger because of to large extent size.

With cropping enabled (=1) lvm2 preserves the old limitation
15.81GiB and should allow to work in the evironement with
older lvm2 tools (i.e. older distribution).

Thin-pool metadata with size bigger then 15.81G is now using CROP_METADATA
flag within lvm2 metadata, so older lvm2 recognizes an
incompatible thin-pool and cannot activate such pool!

Users should use uncropped version as it is not suffering
from various issues between thin_repair results and allocated
metadata LV as thin_repair limit is 15.88GiB
Users should use cropping only when really needed!

Patch also better handles resize of thin-pool metadata and prevents resize
beoyond usable size 15.88GiB. Resize beyond 15.81GiB automatically
switches pool to no-crop version. Even with existing bigger thin-pool
metadata command 'lvextend -l+1 vg/pool_tmeta' does the change.

Patch gives better controls 'coverted' metadata LV and
reports less confusing message during conversion.

Patch set also moves the code for updating min/max into pool_manip.c
for better sharing with cache_pool code.
17 files changed:
conf/example.conf.in
device_mapper/all.h
device_mapper/libdm-deptree.c
lib/activate/dev_manager.c
lib/config/config_settings.h
lib/config/defaults.h
lib/format_text/flags.c
lib/metadata/lv_manip.c
lib/metadata/merge.c
lib/metadata/metadata-exported.h
lib/metadata/metadata.h
lib/metadata/pool_manip.c
lib/metadata/thin_manip.c
lib/thin/thin.c
man/lvmthin.7_main
tools/lvconvert.c
tools/lvcreate.c
This page took 0.041867 seconds and 5 git commands to generate.