]> sourceware.org Git - lvm2.git/commitdiff
thin: disallow creation of too big thin pools
authorZdenek Kabelac <zkabelac@redhat.com>
Thu, 8 Jun 2017 08:46:22 +0000 (10:46 +0200)
committerZdenek Kabelac <zkabelac@redhat.com>
Thu, 8 Jun 2017 09:58:36 +0000 (11:58 +0200)
When a combination of thin-pool chunk size and thin-pool data size
goes beyond addressable limit, such volume creation is directly
prohibited.

Maximum usable thin-pool size is calculated with use of maximal support
metadata size (even when it's created smaller) and given chunk-size.
If the value data size is found to be too big, the command reports
error and operation fails.

Previously thin-pool was created however lots of thin-pool data LV was
not usable and this space in VG has been wasted.

WHATS_NEW
lib/metadata/thin_manip.c

index ae704af710bcd5ccca434eb2ae52915c9c725e85..fcf314887a29b0f9d130adc67cdcfacfa2f23662 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 Version 2.02.172 - 
 ===============================
+  Limit maximal size of thin-pool for specific chunk size.
   Print a warning about in-use PVs with no VG using them.
   Disable automatic clearing of PVs that look like in-use orphans.
   Cache format2 flag is now using segment name type field.
index c2629ac9bc945dae449730af5324fc7be7968710..726b26b211d2b68c52263910a10828940b7f3b9a 100644 (file)
@@ -563,6 +563,12 @@ static uint64_t _estimate_metadata_size(uint32_t data_extents, uint32_t extent_s
        return _estimate_size(data_extents, extent_size, chunk_size);
 }
 
+/* Estimate maximal supportable thin pool data size for given chunk_size */
+static uint64_t _estimate_max_data_size(uint32_t chunk_size)
+{
+       return  chunk_size * (DEFAULT_THIN_POOL_MAX_METADATA_SIZE * 2) * SECTOR_SIZE / UINT64_C(64);
+}
+
 /* Estimate thin pool chunk size from data and metadata size (in sector units) */
 static uint32_t _estimate_chunk_size(uint32_t data_extents, uint32_t extent_size,
                                     uint64_t metadata_size, int attr)
@@ -628,6 +634,7 @@ int update_thin_pool_params(struct cmd_context *cmd,
 {
        uint64_t pool_metadata_size = (uint64_t) *pool_metadata_extents * extent_size;
        uint32_t estimate_chunk_size;
+       uint64_t max_pool_data_size;
        const char *str;
 
        if (!*chunk_size &&
@@ -704,6 +711,16 @@ int update_thin_pool_params(struct cmd_context *cmd,
                }
        }
 
+       max_pool_data_size = _estimate_max_data_size(*chunk_size);
+       if ((max_pool_data_size / extent_size) < pool_data_extents) {
+               log_error("Selected chunk size %s cannot address more then %s of thin pool data space.",
+                         display_size(cmd, *chunk_size), display_size(cmd, max_pool_data_size));
+               return 0;
+       }
+
+       log_print_unless_silent("Thin pool data with chunk size %s can address at most %s of data.",
+                               display_size(cmd, *chunk_size), display_size(cmd, max_pool_data_size));
+
        if (!validate_thin_pool_chunk_size(cmd, *chunk_size))
                return_0;
 
This page took 0.0404 seconds and 5 git commands to generate.