From 4ca5f57cb8d9ee530093fe71d9a9a41144d34158 Mon Sep 17 00:00:00 2001 From: Sebastien GODARD Date: Sun, 4 Mar 2018 10:22:22 +0100 Subject: [PATCH] RAW: Reorder values displayed in debug mode by sadf This is now: nr of slots used/nr of slots allocated (intial number of slots) Signed-off-by: Sebastien GODARD --- sadf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sadf.c b/sadf.c index a105714..350aedf 100644 --- a/sadf.c +++ b/sadf.c @@ -687,7 +687,7 @@ int generic_write_stats(int curr, int use_tm_start, int use_tm_end, int reset, /* Raw output */ if (DISPLAY_DEBUG_MODE(flags)) { printf("[%s: %d/%d (%d)]\n", act[i]->name, - act[i]->nr[curr], act[i]->nr_ini, act[i]->nr_allocated); + act[i]->nr[curr], act[i]->nr_allocated, act[i]->nr_ini); } (*act[i]->f_raw_print)(act[i], pre, curr); -- 2.40.0