From 5e0a7d2a256c73cdc882d53f1192d405f2a949c8 Mon Sep 17 00:00:00 2001 From: Alexandre Ioffe Date: Mon, 14 Nov 2022 23:16:25 -0800 Subject: [PATCH] EX-6379 lipe: add dump_fids option in help Added missing dump_fids command line option in command line help Signed-off-by: Alexandre Ioffe Test-Parameters: trivial testlist=hot-pools Change-Id: I197fb7beb3e8712736fa29bb49d2df1ee4517616 Reviewed-on: https://review.whamcloud.com/c/ex/lustre-release/+/49161 Tested-by: jenkins Tested-by: Maloo Reviewed-by: Colin Faber Reviewed-by: Andreas Dilger --- lipe/src/lpurge.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lipe/src/lpurge.c b/lipe/src/lpurge.c index 74a9e25..10b8b35 100644 --- a/lipe/src/lpurge.c +++ b/lipe/src/lpurge.c @@ -271,6 +271,7 @@ static void usage(void) "\t-t, --scan_threads, scanning threads (default: %u)\n" "\t--timestamps, add timestamp to log messages (default: no)\n" "\t-w, --dump, stats file (via USR1 signal, default: %s)\n" + "\t--dump_fids, JSON stats file (via USR2 signal, default: %s)\n" "\t--version, print version information and exit\n", program_invocation_short_name, DEF_INTERVAL, @@ -281,7 +282,8 @@ static void usage(void) DEF_SCAN_RATE, DEF_SLOT_SIZE, DEF_SCAN_THREADS, - LPURGE_DUMPFILE); + LPURGE_DUMPFILE, + LPURGE_FIDS_DUMPFILE); printf("Usage: %s -f \n", -- 1.8.3.1