From 72fb82077a8e9ccd49b349c084d2a96476ea0bd1 Mon Sep 17 00:00:00 2001 From: Ankit Kumar Date: Wed, 17 Jul 2024 12:05:50 +0530 Subject: [PATCH] ioengines: bump up FIO_IOOPS_VERSION For fdp backend the way ruhs are fetched has been changed. Earlier fdp_fetch_ruhs was called once with a buffer that can store ruhs upto FDP_MAX_RUHS. The new fdp_fetch_ruhs is called twice. The first call doesn't have any buffer for ruhs, and is only to get the number of ruhs reported by the device. The second call has the buffer that can store all the ruhs. This impacts any external ioengines, so bump up FIO_IOOPS_VERSION. Fixes: commit 56d12245 (dataplacement: update ruh info initialization) Signed-off-by: Ankit Kumar --- ioengines.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ioengines.h b/ioengines.h index d5b0cafe33..6039d41ef4 100644 --- a/ioengines.h +++ b/ioengines.h @@ -9,7 +9,7 @@ #include "zbd_types.h" #include "dataplacement.h" -#define FIO_IOOPS_VERSION 34 +#define FIO_IOOPS_VERSION 35 #ifndef CONFIG_DYNAMIC_ENGINES #define FIO_STATIC static