From fe3ce06dc82d00fda7ec9f891e2fe0ecf6f34aa3 Mon Sep 17 00:00:00 2001 From: Rodrigo Severo Date: Fri, 22 May 2020 09:31:58 -0300 Subject: [PATCH] rados: including GENERIC OPTIONS section in rados help message rados help message lacks info about the generic options it supports. This patch creates the GENERIC OPTIONS section in rados help message using the generic_client_usage() function. Signed-off-by: Rodrigo Severo --- src/tools/rados/rados.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/tools/rados/rados.cc b/src/tools/rados/rados.cc index ea02a3a40ef3..a44f17dd484f 100644 --- a/src/tools/rados/rados.cc +++ b/src/tools/rados/rados.cc @@ -243,7 +243,10 @@ void usage(ostream& out) " --with-clones include clones when doing flush or evict\n" "\n" "OMAP OPTIONS:\n" -" --omap-key-file file read the omap key from a file\n"; +" --omap-key-file file read the omap key from a file\n" +"\n" +"GENERIC OPTIONS:\n"; + generic_client_usage(); } namespace detail { -- 2.47.3