X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=engines%2Ffilecreate.c;h=5fec8544a6a79898fed4e6c4854ffd416234c66a;hb=ee584d9605abbf3c86e7ef7a17ebdd06147af6bb;hp=0c3bcdd6b1989e3c331331021cf592e90cd897a2;hpb=19ee42ac3287f0080a19f5ba31004c245bf1ebbe;p=fio.git diff --git a/engines/filecreate.c b/engines/filecreate.c index 0c3bcdd6..5fec8544 100644 --- a/engines/filecreate.c +++ b/engines/filecreate.c @@ -5,12 +5,10 @@ * of the file creation. */ #include -#include #include #include #include "../fio.h" -#include "../filehash.h" struct fc_data { enum fio_ddir stat_ddir; @@ -51,13 +49,14 @@ static int open_file(struct thread_data *td, struct fio_file *f) uint64_t nsec; nsec = ntime_since_now(&start); - add_clat_sample(td, data->stat_ddir, nsec, 0, 0); + add_clat_sample(td, data->stat_ddir, nsec, 0, 0, 0); } return 0; } -static int queue_io(struct thread_data *td, struct io_u fio_unused *io_u) +static enum fio_q_status queue_io(struct thread_data *td, + struct io_u fio_unused *io_u) { return FIO_Q_COMPLETED; }