From: Jens Axboe Date: Thu, 21 Jan 2016 00:45:13 +0000 (-0700) Subject: init: increment stat count if parent == default thread X-Git-Tag: fio-2.4~1 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=13978e86afb08a0453551a88680700fcad328522;p=fio.git init: increment stat count if parent == default thread We skip doing the stat increment if group_reporting is set, but that means we can end up with stat_number == 0. That isn't correct, increment for group_reporting as well, but only if the parent is the default thread. That means we still won't do it for sub-jobs. Signed-off-by: Jens Axboe --- diff --git a/init.c b/init.c index 77cf9f2a..98c53edd 100644 --- a/init.c +++ b/init.c @@ -493,7 +493,7 @@ static struct thread_data *get_new_job(int global, struct thread_data *parent, if (jobname) td->o.name = strdup(jobname); - if (!parent->o.group_reporting) + if (!parent->o.group_reporting || parent == &def_thread) stat_number++; set_cmd_options(td);