spdk_top: delete free_data() function

Delete free_data() function, because it is called only once
and contains only three lines of code. This is to make
spdk_top code cleaner.

Signed-off-by: Krzysztof Karas <krzysztof.karas@intel.com>
Change-Id: I78e0edd941e8fb81ac58ea13bdc91148db0a2417
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/7972
Community-CI: Mellanox Build Bot
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
Krzysztof Karas 2021-05-20 08:47:39 +02:00 committed by Tomasz Zawadzki
parent 3154d4c9b1
commit 6726f45969

View File

@ -735,14 +735,6 @@ end:
return rc;
}
static void
free_data(void)
{
free_rpc_threads_stats(&g_threads_stats);
free_rpc_pollers_stats(&g_pollers_stats);
free_rpc_cores_stats(&g_cores_stats);
}
enum str_alignment {
ALIGN_LEFT,
ALIGN_RIGHT,
@ -2490,7 +2482,11 @@ show_stats(pthread_t *data_thread)
pthread_join(*data_thread, NULL);
free_resources();
free_data();
/* Free memory holding current data states before quitting application */
free_rpc_threads_stats(&g_threads_stats);
free_rpc_pollers_stats(&g_pollers_stats);
free_rpc_cores_stats(&g_cores_stats);
}
static void