From 1f1c664b78d5f8464e0bbee5a00402cad93c7029 Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Thu, 9 Aug 2012 11:24:37 +0200 Subject: thin: default discards for old mda is IGNORE If the discard was not set in metadata, use IGNORE, as this is the equivalent behavior for this case. --- WHATS_NEW | 4 ++++ lib/thin/thin.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/WHATS_NEW b/WHATS_NEW index fd741bb6..c7d3a2d5 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,3 +1,7 @@ +Version 2.02.98 +================================= + Use 'ignore' discards for thin metadata created with older versions. + Version 2.02.97 - 7th August 2012 ================================= Issue error message when arguments do not match specified RAID type. diff --git a/lib/thin/thin.c b/lib/thin/thin.c index cfd50add..25c1947b 100644 --- a/lib/thin/thin.c +++ b/lib/thin/thin.c @@ -119,7 +119,7 @@ static int _thin_pool_text_import(struct lv_segment *seg, return SEG_LOG_ERROR("Could not read discards for"); if (!discards_str) - seg->discards = THIN_DISCARDS_PASSDOWN; + seg->discards = THIN_DISCARDS_IGNORE; else if (!get_pool_discards(discards_str, &seg->discards)) return SEG_LOG_ERROR("Discards option unsupported for"); -- cgit