diff options
author | Pali Rohár <pali@kernel.org> | 2022-09-12 21:02:27 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-23 15:13:18 -0400 |
commit | d179018e4c9561afac5ca5c8878852f1171b836b (patch) | |
tree | 8ff2702026d701888ebc9145c4e567ff8ad31412 /lib | |
parent | 6f915a5d24b1c8cf30a29d7edff01eb5951bef0b (diff) | |
download | u-boot-d179018e4c9561afac5ca5c8878852f1171b836b.tar.gz |
display_options: print_size: Fix order overflow
Function print_size() round size to the nearst value with one decimal
fraction number. But in special cases also unit order may overflow.
For example value 1073689396 is printed as "1024 MiB" and value 1073741824
as "1 GiB".
Fix this issue by detecting order overflow and increasing unit order.
With this change also value 1073689396 is printed as "1 GiB".
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/display_options.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/display_options.c b/lib/display_options.c index 7feb446a55..80def5201f 100644 --- a/lib/display_options.c +++ b/lib/display_options.c @@ -127,6 +127,12 @@ void print_size(uint64_t size, const char *s) if (m >= 10) { m -= 10; n += 1; + + if (n == 1024 && i > 0) { + n = 1; + m = 0; + c = names[i - 1]; + } } } |