[PATCH 2/2] verify: bump up verify state file version

Shin'ichiro Kawasaki <[email protected]> Sat, 9 Aug 2025 10:15:55 +0900
Newsgroups org.kernel.vger.fio
Message-ID <[email protected]>
Commit 935297d18d58 ("verify: plumb inflight write information through
verify state") modified the data structure of the verify state file.
However, the version number of the file was not incremented. Then users
may encounter compatibility issues when working with the verify state
file across different fio version. To avoid the issue, bump up the
version number.

Fixes: 935297d18d58 ("verify: plumb inflight write information through verify state")
Signed-off-by: Shin'ichiro Kawasaki <[email protected]>
---
 verify-state.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/verify-state.h b/verify-state.h
index c055008e..d8997ace 100644
--- a/verify-state.h
+++ b/verify-state.h
@@ -41,7 +41,7 @@ struct all_io_list {
 	struct thread_io_list state[0];
 };
 
-#define VSTATE_HDR_VERSION	0x04
+#define VSTATE_HDR_VERSION	0x05
 
 struct verify_state_hdr {
 	uint64_t version;
-- 
2.49.0