Merge https://bitbucket.org/vincentfu/fio-steadystate into steady-state-2
[fio.git] / init.c
diff --git a/init.c b/init.c
index 963afbf0cd62f2537c22b67c7fe2ae72367ff35e..f26f35dc5adcdca1b46133d934654651e8a8f021 100644 (file)
--- a/init.c
+++ b/init.c
@@ -823,7 +823,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;
        }