diff options
author | Nico Weber <thakis@chromium.org> | 2020-08-15 14:28:15 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-16 16:33:28 +0200 |
commit | 43a0ffe54d46577227326419a8983767dc3e9bb2 (patch) | |
tree | 3ccda4ac7f67f9cfad834889e53ee2ab78fdd594 | |
parent | f47dbb6a58159993b37974c85a3cc9f1c00fa1e0 (diff) | |
download | serenity-43a0ffe54d46577227326419a8983767dc3e9bb2.zip |
Userland/allocate: Switch to KiB/MiB
-rw-r--r-- | Userland/allocate.cpp | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/Userland/allocate.cpp b/Userland/allocate.cpp index cb712b8b3d..c3bb3778a0 100644 --- a/Userland/allocate.cpp +++ b/Userland/allocate.cpp @@ -33,18 +33,20 @@ static void usage(void) { - printf("usage: allocate [number [unit (B/KB/MB)]]\n"); + printf("usage: allocate [number [unit (B/KiB/MiB)]]\n"); exit(1); } -enum class Unit { Bytes, - KiloBytes, - MegaBytes }; +enum class Unit { + Bytes, + KiB, + MiB, +}; int main(int argc, char** argv) { int count = 50; - auto unit = Unit::MegaBytes; + auto unit = Unit::MiB; if (argc >= 2) { auto number = String(argv[1]).to_uint(); @@ -57,10 +59,10 @@ int main(int argc, char** argv) if (argc >= 3) { if (strcmp(argv[2], "B") == 0) unit = Unit::Bytes; - else if (strcmp(argv[2], "KB") == 0) - unit = Unit::KiloBytes; - else if (strcmp(argv[2], "MB") == 0) - unit = Unit::MegaBytes; + else if (strcmp(argv[2], "KiB") == 0) + unit = Unit::KiB; + else if (strcmp(argv[2], "MiB") == 0) + unit = Unit::MiB; else usage(); } @@ -68,11 +70,11 @@ int main(int argc, char** argv) switch (unit) { case Unit::Bytes: break; - case Unit::KiloBytes: - count *= 1024; + case Unit::KiB: + count *= KiB; break; - case Unit::MegaBytes: - count *= 1024 * 1024; + case Unit::MiB: + count *= MiB; break; } @@ -87,7 +89,7 @@ int main(int argc, char** argv) } printf("done in %dms\n", timer.elapsed()); - auto pages = count / 4096; + auto pages = count / PAGE_SIZE; auto step = pages / 10; Core::ElapsedTimer timer2; @@ -96,16 +98,16 @@ int main(int argc, char** argv) timer.start(); timer2.start(); for (int i = 0; i < pages; ++i) { - ptr[i * 4096] = 1; + ptr[i * PAGE_SIZE] = 1; if (i != 0 && (i % step) == 0) { auto ms = timer2.elapsed(); if (ms == 0) ms = 1; - auto bps = double(step * 4096) / (double(ms) / 1000); + auto bps = double(step * PAGE_SIZE) / (double(ms) / 1000); - printf("step took %dms (%fMB/s)\n", ms, bps / 1024 / 1024); + printf("step took %dms (%fMiB/s)\n", ms, bps / MiB); timer2.start(); } |