X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=init.c;h=36feb513db122183166bc86ea38ae6631cde4a2f;hp=382fa1ff6de82edc9d74644edcace6a7f233839e;hb=13e0f06b805eb0bb3a100ed710c7da18684c8950;hpb=a79f17bf3bfa20b83424c2301de092bdcfbaaea4;ds=sidebyside diff --git a/init.c b/init.c index 382fa1ff..36feb513 100644 --- a/init.c +++ b/init.c @@ -822,7 +822,8 @@ static int fixup_options(struct thread_data *td) * If size is set but less than the min block size, complain */ if (o->size && o->size < td_min_bs(td)) { - log_err("fio: size too small, must be larger than the IO size: %llu\n", (unsigned long long) o->size); + log_err("fio: size too small, must not be less than minimum block size: %llu < %u\n", + (unsigned long long) o->size, td_min_bs(td)); ret = 1; }