I founded it very handy to have library verbosity enabled when verbosity is enabled on either the gssd or svcgssd daemons. So this patch will set the verbosity level in the librpcsecgss library and in the libnfsidmapd (for svcgssd) when verbosity level is set by the '-v' flag it on either daemon. Signed-off-by: Steve Dickson <steved@xxxxxxxxxx> ---------------------------------------------- diff --git a/utils/gssd/gssd.c b/utils/gssd/gssd.c index f6949db..40a2b4d 100644 --- a/utils/gssd/gssd.c +++ b/utils/gssd/gssd.c @@ -171,6 +171,8 @@ main(int argc, char *argv[]) initerr(progname, verbosity, fg); #ifdef HAVE_AUTHGSS_SET_DEBUG_LEVEL + if (verbosity && rpc_verbosity == 0) + rpc_verbosity = verbosity; authgss_set_debug_level(rpc_verbosity); #else if (rpc_verbosity > 0) diff --git a/utils/gssd/svcgssd.c b/utils/gssd/svcgssd.c index 6ca0e8d..69d2a69 100644 --- a/utils/gssd/svcgssd.c +++ b/utils/gssd/svcgssd.c @@ -208,6 +208,8 @@ main(int argc, char *argv[]) initerr(progname, verbosity, fg); #ifdef HAVE_AUTHGSS_SET_DEBUG_LEVEL + if (verbosity && rpc_verbosity == 0) + rpc_verbosity = verbosity; authgss_set_debug_level(rpc_verbosity); #else if (rpc_verbosity > 0) @@ -215,6 +217,8 @@ main(int argc, char *argv[]) "support setting debug level\n"); #endif #ifdef HAVE_NFS4_SET_DEBUG + if (verbosity && idmap_verbosity == 0) + idmap_verbosity = verbosity; nfs4_set_debug(idmap_verbosity, NULL); #else if (idmap_verbosity > 0) -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html