The following changes since commit 9fac0db7a09bac08bbff9b213d3b1daceee07679: steadystate: check for division by zero in mean calculation (2018-04-08 15:54:26 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to cb73748b9af3d678eb6ad0af7b9cea5a2ea1999e: stat: remove dead 'nr_uninit' assignment (2018-04-09 08:10:40 -0600) ---------------------------------------------------------------- Jens Axboe (2): init: fix memory leak in error handling stat: remove dead 'nr_uninit' assignment init.c | 3 ++- stat.c | 1 - 2 files changed, 2 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/init.c b/init.c index 0b6fedd..f5ff73d 100644 --- a/init.c +++ b/init.c @@ -1970,7 +1970,8 @@ static int __parse_jobs_ini(struct thread_data *td, if (p[0] == '[') { if (nested) { log_err("No new sections in included files\n"); - return 1; + ret = 1; + goto out; } skip_fgets = 1; diff --git a/stat.c b/stat.c index a837ed9..7b9dd3b 100644 --- a/stat.c +++ b/stat.c @@ -670,7 +670,6 @@ static int calc_block_percentiles(int nr_block_infos, uint32_t *block_infos, if (len > 1) qsort((void *)plist, len, sizeof(plist[0]), double_cmp); - nr_uninit = 0; /* Start only after the uninit entries end */ for (nr_uninit = 0; nr_uninit < nr_block_infos -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html