static char *mem_fmt(char *buf, int size, unsigned long hsize)
 {
-       if (hsize >= (1UL << 30))
-               snprintf(buf, size, "%luGB", hsize >> 30);
-       else if (hsize >= (1UL << 20))
-               snprintf(buf, size, "%luMB", hsize >> 20);
+       if (hsize >= SZ_1G)
+               snprintf(buf, size, "%luGB", hsize / SZ_1G);
+       else if (hsize >= SZ_1M)
+               snprintf(buf, size, "%luMB", hsize / SZ_1M);
        else
-               snprintf(buf, size, "%luKB", hsize >> 10);
+               snprintf(buf, size, "%luKB", hsize / SZ_1K);
        return buf;
 }