X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=verify.c;h=9ee3bc42ca215961b03951445fdb64070b3f35aa;hp=fc207cf635bc731fbdbb788d4f791bb9bba4124b;hb=3f36aa6b73eb5730d7de716391dcf0735e886d10;hpb=2b13e716c0921356c0930522718e00b8df34293a diff --git a/verify.c b/verify.c index fc207cf6..9ee3bc42 100644 --- a/verify.c +++ b/verify.c @@ -36,41 +36,27 @@ void fill_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u if (use_seed) __fill_random_buf(p, len, seed); else - io_u->rand_seed = fill_random_buf(p, len); + io_u->rand_seed = fill_random_buf(&td->buf_state, p, len); break; case 1: - /* - * See below write barrier comment - */ -#if 0 - read_barrier(); if (io_u->buf_filled_len >= len) { dprint(FD_VERIFY, "using already filled verify pattern b=0 len=%u\n", len); return; } -#endif dprint(FD_VERIFY, "fill verify pattern b=0 len=%u\n", len); memset(p, td->o.verify_pattern[0], len); - /* - * We need to ensure that the pattern stores are seen before - * the fill length store, or we could observe headers that - * aren't valid to the extent notified by the fill length - */ - write_barrier(); io_u->buf_filled_len = len; break; default: { unsigned int i = 0, size = 0; unsigned char *b = p; -#if 0 - read_barrier(); if (io_u->buf_filled_len >= len) { dprint(FD_VERIFY, "using already filled verify pattern b=%d len=%u\n", td->o.verify_pattern_bytes, len); return; } -#endif + dprint(FD_VERIFY, "fill verify pattern b=%d len=%u\n", td->o.verify_pattern_bytes, len); @@ -81,7 +67,6 @@ void fill_pattern(struct thread_data *td, void *p, unsigned int len, struct io_u memcpy(b+i, td->o.verify_pattern, size); i += size; } - write_barrier(); io_u->buf_filled_len = len; break; } @@ -269,6 +254,9 @@ static void dump_verify_buffers(struct verify_header *hdr, struct vcont *vc) struct io_u dummy; void *buf; + if (!td->o.verify_dump) + return; + /* * Dump the contents we just read off disk */ @@ -599,10 +587,8 @@ int verify_io_u_async(struct thread_data *td, struct io_u *io_u) if (io_u->file) put_file_log(td, io_u->file); - io_u->file = NULL; - pthread_mutex_lock(&td->io_u_lock); - + if (io_u->flags & IO_U_F_IN_CUR_DEPTH) { td->cur_depth--; io_u->flags &= ~IO_U_F_IN_CUR_DEPTH; @@ -1032,7 +1018,7 @@ static void *verify_async_thread(void *data) put_io_u(td, io_u); if (!ret) continue; - if (td->o.continue_on_error && + if (td->o.continue_on_error & ERROR_TYPE_VERIFY && td_non_fatal_error(ret)) { update_error_count(td, ret); td_clear_error(td);