From 13978e86afb08a0453551a88680700fcad328522 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 20 Jan 2016 17:45:13 -0700 Subject: [PATCH] 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 --- init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.25.1