X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;ds=sidebyside;f=ioengines.c;h=9aacc335d906b21b4b5c397c8d26049338bc1b42;hb=d090f6f6fa92e66bc448a9bf47b6c52c1fd9c1ba;hp=cf8c2f148ca8df611c2817e854cf43ace609f56a;hpb=7101d9c24abec4be58a086d85d6d92ec6e6492e9;p=fio.git diff --git a/ioengines.c b/ioengines.c index cf8c2f14..9aacc335 100644 --- a/ioengines.c +++ b/ioengines.c @@ -165,7 +165,7 @@ int td_io_prep(struct thread_data *td, struct io_u *io_u) return 0; } -int td_io_getevents(struct thread_data *td, int min, int max, +int td_io_getevents(struct thread_data *td, unsigned int min, unsigned int max, struct timespec *t) { if (min > 0 && td->io_ops->commit) { @@ -245,7 +245,7 @@ int td_io_init(struct thread_data *td) if (td->io_ops->init) { ret = td->io_ops->init(td); if (ret && td->o.iodepth > 1) - log_err("fio: io engine init failed. Perhaps try reducing io dpeth?\n"); + log_err("fio: io engine init failed. Perhaps try reducing io depth?\n"); } return ret;