diff --git a/examples/bdev/fio_plugin/fio_plugin.c b/examples/bdev/fio_plugin/fio_plugin.c index 75d929619f..d826ec43b8 100644 --- a/examples/bdev/fio_plugin/fio_plugin.c +++ b/examples/bdev/fio_plugin/fio_plugin.c @@ -228,6 +228,12 @@ spdk_fio_cleanup_thread(struct spdk_fio_thread *fio_thread) free(fio_thread); } +static void +spdk_fio_module_finish_done(void *cb_arg) +{ + *(bool *)cb_arg = true; +} + static void * spdk_init_thread_poll(void *arg) { @@ -725,12 +731,6 @@ static void fio_init spdk_fio_register(void) register_ioengine(&ioengine); } -static void -spdk_fio_module_finish_done(void *cb_arg) -{ - *(bool *)cb_arg = true; -} - static void spdk_fio_finish_env(void) {