Use OP_WRITE_STABLE in bs_fio

This commit is contained in:
Vitaliy Filippov
2025-07-26 14:12:48 +03:00
parent 93a30efd86
commit 8049e3c14a
2 changed files with 10 additions and 10 deletions
+4 -4
View File
@@ -147,7 +147,7 @@ Output:
struct blockstore_op_t
{
// operation
uint64_t opcode;
uint64_t opcode = 0;
// finish callback
std::function<void (blockstore_op_t*)> callback;
union __attribute__((__packed__))
@@ -171,9 +171,9 @@ struct blockstore_op_t
uint32_t list_stable_limit;
};
};
void *buf;
void *bitmap;
int retval;
void *buf = NULL;
void *bitmap = NULL;
int retval = 0;
uint8_t private_data[BS_OP_PRIVATE_DATA_SIZE];
};