Revert verify=pattern commit.

From: Shawn Lewis <shawnlewis_at_google.com>
Date: Tue, 15 Jan 2008 13:05:57 -0800 (PST)

This reverts bfb41d98f63cb9fb72cb7c82618be10bc6d52c33 commit "Remove
verify_pattern option, replace with verify=pattern:x".

Reverting lets us have verify=meta and specify a verify_pattern at the same
time. Sample surfacescan conf file coming up.

diff --git a/HOWTO b/HOWTO
index 7b717f7..ca095a3 100644
--- a/HOWTO
+++ b/HOWTO
@@ -629,15 +629,6 @@ verify=str If writing to a file, fio can
                                 (timestamp, block number etc.). The block
                                 number is verified.
 
- pattern Fill the IO buffers with a specific pattern,
- that we can use to verify. Depending on the
- width of the pattern, fio will fill 1/2/3/4
- bytes of the buffer at the time. The pattern
- cannot be larger than a 32-bit quantity. The
- given pattern is given as a postfix to this
- option, ala: verify=pattern:0x5a. It accepts
- both hex and dec values.
-
                         null Only pretend to verify. Useful for testing
                                 internals with ioengine=null, not for much
                                 else.
@@ -663,6 +654,14 @@ verify_interval=siint Write the verifica
                         size of header_interval. blocksize should divide this
                         evenly.
 
+verify_pattern=int If set, fio will fill the io buffers with this
+ pattern. Fio defaults to filling with totally random
+ bytes, but sometimes it's interesting to fill with a known
+ pattern for io verification purposes. Depending on the
+ width of the pattern, fio will fill 1/2/3/4 bytes of the
+ buffer at the time. The verify_pattern cannot be larger than
+ a 32-bit quantity.
+
 verify_fatal=bool Normally fio will keep checking the entire contents
                 before quitting on a block verification failure. If this
                 option is set, fio will exit the job on the first observed
diff --git a/fio.h b/fio.h
index 7c39be3..09bf6a2 100644
--- a/fio.h
+++ b/fio.h
@@ -184,7 +184,6 @@ enum {
         VERIFY_SHA256, /* sha256 sum data blocks */
         VERIFY_SHA512, /* sha512 sum data blocks */
         VERIFY_META, /* block_num, timestamp etc. */
- VERIFY_PATTERN, /* verify a specific pattern */
         VERIFY_NULL, /* pretend to verify */
 };
 
diff --git a/options.c b/options.c
index 36f80fc..d17dbb1 100644
--- a/options.c
+++ b/options.c
@@ -333,27 +333,12 @@ static int str_verify_offset_cb(void *da
         return 0;
 }
 
-static int str_verify_cb(void *data, const char *mem)
+static int str_verify_pattern_cb(void *data, unsigned int *off)
 {
         struct thread_data *td = data;
- unsigned int nr, msb;
- char *pat;
+ unsigned int msb;
 
- if (td->o.verify != VERIFY_PATTERN)
- return 0;
-
- pat = get_opt_postfix(mem);
- if (!pat) {
- log_err("fio: missing pattern\n");
- return 1;
- }
-
- if (strstr(pat, "0x") || strstr(pat, "0X"))
- nr = strtol(pat, NULL, 16);
- else
- nr = strtol(pat, NULL, 16);
-
- msb = fls(nr);
+ msb = fls(*off);
         if (msb <= 8)
                 td->o.verify_pattern_bytes = 1;
         else if (msb <= 16)
@@ -363,7 +348,7 @@ static int str_verify_cb(void *data, con
         else
                 td->o.verify_pattern_bytes = 4;
 
- td->o.verify_pattern = nr;
+ td->o.verify_pattern = *off;
         return 0;
 }
 
@@ -752,7 +737,6 @@ #endif
                 .name = "verify",
                 .type = FIO_OPT_STR,
                 .off1 = td_var_offset(verify),
- .cb = str_verify_cb,
                 .help = "Verify data written",
                 .def = "0",
                 .posval = {
@@ -792,10 +776,6 @@ #endif
                             .oval = VERIFY_META,
                             .help = "Use io information",
                           },
- { .ival = "pattern",
- .oval = VERIFY_PATTERN,
- .help = "Verify a specific buffer pattern",
- },
                           {
                             .ival = "null",
                             .oval = VERIFY_NULL,
@@ -836,6 +816,13 @@ #endif
                 .parent = "verify",
         },
         {
+ .name = "verify_pattern",
+ .type = FIO_OPT_INT,
+ .cb = str_verify_pattern_cb,
+ .help = "Fill pattern for IO buffers",
+ .parent = "verify",
+ },
+ {
                 .name = "verify_fatal",
                 .type = FIO_OPT_BOOL,
                 .off1 = td_var_offset(verify_fatal),
diff --git a/verify.c b/verify.c
index 59a9dde..3cda326 100644
--- a/verify.c
+++ b/verify.c
@@ -112,7 +112,6 @@ static inline unsigned int __hdr_size(in
         switch (verify_type) {
         case VERIFY_NONE:
         case VERIFY_NULL:
- case VERIFY_PATTERN:
                 len = 0;
                 break;
         case VERIFY_MD5:
@@ -406,6 +405,19 @@ int verify_io_u(struct thread_data *td,
                         return EIO;
                 }
 
+ if (td->o.verify_pattern_bytes) {
+ ret = verify_io_u_pattern(td->o.verify_pattern,
+ td->o.verify_pattern_bytes,
+ p + hdr_size,
+ hdr_inc - hdr_size,
+ hdr_size % 4);
+ if (ret)
+ log_err("fio: verify failed at %llu/%u\n",
+ io_u->offset + hdr_num * hdr->len,
+ hdr->len);
+ continue;
+ }
+
                 switch (hdr->verify_type) {
                 case VERIFY_MD5:
                         ret = verify_io_u_md5(hdr, io_u, hdr_num);
@@ -431,17 +443,6 @@ int verify_io_u(struct thread_data *td,
                 case VERIFY_META:
                         ret = verify_io_u_meta(hdr, td, io_u, hdr_num);
                         break;
- case VERIFY_PATTERN:
- ret = verify_io_u_pattern(td->o.verify_pattern,
- td->o.verify_pattern_bytes,
- p + hdr_size,
- hdr_inc - hdr_size,
- hdr_size % 4);
- if (ret)
- log_err("fio: verify failed at %llu/%u\n",
- io_u->offset + hdr_num * hdr->len,
- hdr->len);
- break;
                 default:
                         log_err("Bad verify type %u\n", hdr->verify_type);
                         ret = EINVAL;
@@ -580,8 +581,6 @@ void populate_verify_io_u(struct thread_
                 case VERIFY_META:
                         fill_meta(hdr, td, io_u, header_num);
                         break;
- case VERIFY_PATTERN:
- break;
                 default:
                         log_err("fio: bad verify type: %d\n", td->o.verify);
                         assert(0);
Received on Tue Jan 15 2008 - 22:05:57 CET

This archive was generated by hypermail 2.2.0 : Tue Jan 15 2008 - 22:30:02 CET