Re: [libvirt] freecell gives out bytes instead of kilobytes

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Gerrit Slomma a écrit :

--- a/src/virsh.c        2009-04-02 17:45:50.000000000 +0200
+++ b/src/virsh.c 2009-04-02 23:35:54.000000000 +0200
@@ -1661,10 +1661,23 @@
    }

    if (cell == -1)
-        vshPrint(ctl, "%s: %llu kB\n", _("Total"), memory);
+       if (memory < 10*1024*1204*1024)

If I may, it should probably read "1024", not "1204" here.

+               {
+ vshPrint(ctl, "%s: %.0f MB\n", _("Total"), (float)memory/1024/1024);
+               }
+               else
+               {
+ vshPrint(ctl, "%s: %.2f GB\n", _("Total"), (float)memory/1024/1024/1024);
+               }
    else
-        vshPrint(ctl, "%d: %llu kB\n", cell, memory);
-
+       if (memory < 10*1024*1204*1024)

and here.

+               {
+ vshPrint(ctl, "%d: %.0f MB\n", cell, (float)memory/1024/1024);
+               }
+       else
+       {
+ vshPrint(ctl, "%d: %.2f GB\n", cell, (float)memory/1024/1024/1024);
+       }
    return TRUE;
}

Florian

--
Libvir-list mailing list
Libvir-list@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libvir-list

[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]