* main - debug: better error message
@ 2021-10-14 21:37 Zdenek Kabelac
0 siblings, 0 replies; only message in thread
From: Zdenek Kabelac @ 2021-10-14 21:37 UTC (permalink / raw)
To: lvm-devel
Gitweb: https://sourceware.org/git/?p=lvm2.git;a=commitdiff;h=af0ce203e9f78e307bfb9524dc8377ebbc53e8f1
Commit: af0ce203e9f78e307bfb9524dc8377ebbc53e8f1
Parent: 7e346ee2a5cd520fc038dda7451360bbe67e629f
Author: Zdenek Kabelac <zkabelac@redhat.com>
AuthorDate: Thu Oct 14 18:44:55 2021 +0200
Committer: Zdenek Kabelac <zkabelac@redhat.com>
CommitterDate: Thu Oct 14 23:34:11 2021 +0200
debug: better error message
Add more details about size difference.
---
lib/format_text/format-text.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/lib/format_text/format-text.c b/lib/format_text/format-text.c
index 654c387bf..941a34944 100644
--- a/lib/format_text/format-text.c
+++ b/lib/format_text/format-text.c
@@ -1922,7 +1922,9 @@ static int _text_pv_initialise(const struct format_type *fmt,
pv->pe_count = pva->extent_count;
if ((pv->pe_start + pv->pe_count * (uint64_t)pv->pe_size - 1) > pv->size) {
- log_error("Physical extents end beyond end of device %s.",
+ log_error("Physical extents (%s) end beyond end of device (%s) %s.",
+ display_size(pv->fmt->cmd, pv->pe_start + pv->pe_count * (uint64_t)pv->pe_size - 1),
+ display_size(pv->fmt->cmd, pv->size),
pv_dev_name(pv));
return 0;
}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-10-14 21:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-14 21:37 main - debug: better error message Zdenek Kabelac
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.