X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=verify.c;h=a9441b4179615c83c43056e134a1c92b10c180b8;hp=6cbd0add35d2683186771a20f8b3079cb8079f5b;hb=127f686514ef8b1d9ab6ed702971b205454974e6;hpb=d2d7fa53c18f1fc3fb89f3fe20df9b39986bde72 diff --git a/verify.c b/verify.c index 6cbd0add..a9441b41 100644 --- a/verify.c +++ b/verify.c @@ -38,8 +38,8 @@ static void hexdump(void *buffer, int len) int i; for (i = 0; i < len; i++) - fprintf(f_out, "%02x", p[i]); - fprintf(f_out, "\n"); + log_info("%02x", p[i]); + log_info("\n"); } static int verify_io_u_crc32(struct verify_header *hdr, struct io_u *io_u) @@ -85,7 +85,7 @@ int verify_io_u(struct io_u *io_u) if (hdr->fio_magic != FIO_HDR_MAGIC) { log_err("Bad verify header %x\n", hdr->fio_magic); - return 1; + return EIO; } if (hdr->verify_type == VERIFY_MD5) @@ -97,7 +97,10 @@ int verify_io_u(struct io_u *io_u) ret = 1; } - return ret; + if (ret) + return EIO; + + return 0; } static void fill_crc32(struct verify_header *hdr, void *p, unsigned int len)