From: Ankit Kumar Date: Mon, 14 Aug 2023 14:57:42 +0000 (+0530) Subject: io_u: move engine data out of union X-Git-Tag: fio-3.36~27 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=519fb6dadc6f7a4145d572ce0f6e41d7b1e59008;p=fio.git io_u: move engine data out of union io_uring_cmd ioengine requires engine data to store nvme protection information data. Signed-off-by: Ankit Kumar Link: https://lore.kernel.org/r/20230814145747.114725-6-ankit.kumar@samsung.com Signed-off-by: Vincent Fu --- diff --git a/io_u.h b/io_u.h index b432a540..786251d5 100644 --- a/io_u.h +++ b/io_u.h @@ -89,8 +89,8 @@ struct io_u { union { unsigned int index; unsigned int seen; - void *engine_data; }; + void *engine_data; union { struct flist_head verify_list;