From 8f263acd48fc983df7f9d457976c6dcc986107c0 Mon Sep 17 00:00:00 2001 From: Alasdair Kergon Date: Fri, 19 Aug 2011 22:55:07 +0000 Subject: [PATCH] Remove incorrect error message added in 2.02.87. --- lib/metadata/lv_manip.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/metadata/lv_manip.c b/lib/metadata/lv_manip.c index f5988fdc3..51f038db6 100644 --- a/lib/metadata/lv_manip.c +++ b/lib/metadata/lv_manip.c @@ -1706,10 +1706,8 @@ static int _find_some_parallel_space(struct alloc_handle *ah, const struct alloc if ((alloc_parms->alloc == ALLOC_ANYWHERE && ix + ix_offset >= devices_needed + alloc_state->log_area_count_still_needed) || (preferred_count == ix_offset && - (ix_offset == devices_needed + alloc_state->log_area_count_still_needed))) { - log_error("Breaking: preferred_count = %d, ix_offset = %d, devices_needed = %d", preferred_count, ix_offset, devices_needed); + (ix_offset == devices_needed + alloc_state->log_area_count_still_needed))) break; - } } } while ((alloc_parms->alloc == ALLOC_ANYWHERE && last_ix != ix && ix < devices_needed + alloc_state->log_area_count_still_needed) || /* With cling_to_alloced, if there were gaps in the preferred areas, have a second iteration */ -- 2.43.5