9
0
Fork 0

lib: update size_human_readable to latest version

Copy over the latest version from u-boot which handles bigger sizes now
and does arithmetic with shifts instead of divisions.

Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Wolfram Sang 2012-12-17 16:48:25 +01:00 committed by Sascha Hauer
parent 904adb80d4
commit 4f03bc5d9f
2 changed files with 34 additions and 19 deletions

View File

@ -105,7 +105,7 @@ void reginfo(void);
void __noreturn hang (void);
void __noreturn panic(const char *fmt, ...);
char *size_human_readable(ulong size);
char *size_human_readable(unsigned long long size);
/* common/main.c */
int run_command (const char *cmd, int flag);

View File

@ -21,35 +21,50 @@
/*
* return a pointer to a string containing the size
* as "xxx kB", "xxx.y kB", "xxx MB" or "xxx.y MB" as needed;
*"as xxx KiB", "xxx.y KiB", "xxx MiB", "xxx.y MiB",
* xxx GiB, xxx.y GiB, etc as needed;
*/
char *size_human_readable(ulong size)
char *size_human_readable(unsigned long long size)
{
static char buf[20];
ulong m, n;
ulong d = 1 << 20; /* 1 MB */
char c = 'M';
unsigned long m = 0, n;
unsigned long long f;
static const char names[] = {'E', 'P', 'T', 'G', 'M', 'K'};
unsigned long d = 10 * ARRAY_SIZE(names);
char c = 0;
unsigned int i;
char *ptr = buf;
if (size < d) { /* print in kB */
c = 'k';
d = 1 << 10;
for (i = 0; i < ARRAY_SIZE(names); i++, d -= 10) {
if (size >> d) {
c = names[i];
break;
}
}
n = size / d;
m = (10 * (size - (n * d)) + (d / 2) ) / d;
if (m >= 10) {
m -= 10;
n += 1;
if (!c) {
sprintf(buf, "%llu Bytes", size);
return buf;
}
ptr += sprintf(buf, "%2ld", n);
n = size >> d;
f = size & ((1ULL << d) - 1);
/* If there's a remainder, deal with it */
if (f) {
m = (10ULL * f + (1ULL << (d - 1))) >> d;
if (m >= 10) {
m -= 10;
n += 1;
}
}
ptr += sprintf(buf, "%lu", n);
if (m) {
ptr += sprintf (ptr,".%ld", m);
ptr += sprintf(ptr, ".%ld", m);
}
sprintf(ptr, " %cB", c);
sprintf(ptr, " %ciB", c);
return buf;
}