X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=t%2Flfsr-test.c;h=a01f2cfcb43c2cf963f69675bd462eb7f0f2fa33;hb=c3e2fc2526b8f148c02295ef9bc6e5188ee0ec0d;hp=901f1a66bfb30e2184391c1365872d1a646465af;hpb=dd9bd2b2e0ed9665325240fdd5a40253fe23bca6;p=fio.git diff --git a/t/lfsr-test.c b/t/lfsr-test.c index 901f1a66..a01f2cfc 100644 --- a/t/lfsr-test.c +++ b/t/lfsr-test.c @@ -1,17 +1,13 @@ #include #include -#include #include #include -#include -#include -#include #include "../lib/lfsr.h" #include "../gettime.h" #include "../fio_time.h" -void usage() +static void usage(void) { printf("Usage: lfsr-test 0x [seed] [spin] [verify]\n"); printf("-------------------------------------------------------------\n"); @@ -27,7 +23,7 @@ void usage() int main(int argc, char *argv[]) { int r; - struct timeval start, end; + struct timespec start, end; struct fio_lfsr *fl; int verify = 0; unsigned int spin = 0; @@ -38,6 +34,8 @@ int main(int argc, char *argv[]) void *v = NULL, *v_start; double total, mean; + arch_init(argv); + /* Read arguments */ switch (argc) { case 5: if (strncmp(argv[4], "verify", 7) == 0) @@ -78,7 +76,7 @@ int main(int argc, char *argv[]) v_size = numbers * sizeof(uint8_t); v = malloc(v_size); memset(v, 0, v_size); - printf("\nVerification table is %lf KBs\n", (double)(v_size) / 1024); + printf("\nVerification table is %lf KiB\n", (double)(v_size) / 1024); } v_start = v; @@ -122,7 +120,7 @@ int main(int argc, char *argv[]) if (verify) printf("(slower due to verification)"); printf("\n==============================\n"); - printf("Elapsed: %lf s\n", total / pow(10,9)); + printf("Elapsed: %lf s\n", total / pow(10,6)); printf("Mean: %lf us\n", mean); free(v_start);