Message ID | 1443541003-28073-1-git-send-email-smayhew@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 09/29/2015 11:36 AM, Scott Mayhew wrote: > The interface for controlling the debug level in libtirpc was added > over a year ago, but nothing's taking advantage of it. > > Signed-off-by: Scott Mayhew <smayhew@redhat.com> Committed.. after fixing a warning... steved. > --- > aclocal/libtirpc.m4 | 6 ++++++ > utils/gssd/gssd.c | 7 +++++++ > utils/gssd/svcgssd.c | 7 +++++++ > 3 files changed, 20 insertions(+) > > diff --git a/aclocal/libtirpc.m4 b/aclocal/libtirpc.m4 > index b7de636..27368ff 100644 > --- a/aclocal/libtirpc.m4 > +++ b/aclocal/libtirpc.m4 > @@ -20,6 +20,12 @@ AC_DEFUN([AC_LIBTIRPC], [ > [Define to 1 if your rpcsec library provides authgss_free_private_data])],, > [${LIBS}])]) > > + AS_IF([test -n "${LIBTIRPC}"], > + [AC_CHECK_LIB([tirpc], [libtirpc_set_debug], > + [AC_DEFINE([HAVE_LIBTIRPC_SET_DEBUG], [1], > + [Define to 1 if your tirpc library provides libtirpc_set_debug])],, > + [${LIBS}])]) > + > AC_SUBST([AM_CPPFLAGS]) > AC_SUBST(LIBTIRPC) > > diff --git a/utils/gssd/gssd.c b/utils/gssd/gssd.c > index e480349..078e558 100644 > --- a/utils/gssd/gssd.c > +++ b/utils/gssd/gssd.c > @@ -869,6 +869,13 @@ main(int argc, char *argv[]) > if (verbosity && rpc_verbosity == 0) > rpc_verbosity = verbosity; > authgss_set_debug_level(rpc_verbosity); > +#elif HAVE_LIBTIRPC_SET_DEBUG > + /* > + * Only set the libtirpc debug level if explicitly requested via -r... > + * gssd is chatty enough as it is. > + */ > + if (rpc_verbosity > 0) > + libtirpc_set_debug(progname, rpc_verbosity, fg); > #else > if (rpc_verbosity > 0) > printerr(0, "Warning: rpcsec_gss library does not " > diff --git a/utils/gssd/svcgssd.c b/utils/gssd/svcgssd.c > index f1b4347..0fe7c6d 100644 > --- a/utils/gssd/svcgssd.c > +++ b/utils/gssd/svcgssd.c > @@ -135,6 +135,13 @@ main(int argc, char *argv[]) > if (verbosity && rpc_verbosity == 0) > rpc_verbosity = verbosity; > authgss_set_debug_level(rpc_verbosity); > +#elif HAVE_LIBTIRPC_SET_DEBUG > + /* > + * Only set the libtirpc debug level if explicitly requested via -r... > + * svcgssd is chatty enough as it is. > + */ > + if (rpc_verbosity > 0) > + libtirpc_set_debug(progname, rpc_verbosity, fg); > #else > if (rpc_verbosity > 0) > printerr(0, "Warning: rpcsec_gss library does not " > -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/aclocal/libtirpc.m4 b/aclocal/libtirpc.m4 index b7de636..27368ff 100644 --- a/aclocal/libtirpc.m4 +++ b/aclocal/libtirpc.m4 @@ -20,6 +20,12 @@ AC_DEFUN([AC_LIBTIRPC], [ [Define to 1 if your rpcsec library provides authgss_free_private_data])],, [${LIBS}])]) + AS_IF([test -n "${LIBTIRPC}"], + [AC_CHECK_LIB([tirpc], [libtirpc_set_debug], + [AC_DEFINE([HAVE_LIBTIRPC_SET_DEBUG], [1], + [Define to 1 if your tirpc library provides libtirpc_set_debug])],, + [${LIBS}])]) + AC_SUBST([AM_CPPFLAGS]) AC_SUBST(LIBTIRPC) diff --git a/utils/gssd/gssd.c b/utils/gssd/gssd.c index e480349..078e558 100644 --- a/utils/gssd/gssd.c +++ b/utils/gssd/gssd.c @@ -869,6 +869,13 @@ main(int argc, char *argv[]) if (verbosity && rpc_verbosity == 0) rpc_verbosity = verbosity; authgss_set_debug_level(rpc_verbosity); +#elif HAVE_LIBTIRPC_SET_DEBUG + /* + * Only set the libtirpc debug level if explicitly requested via -r... + * gssd is chatty enough as it is. + */ + if (rpc_verbosity > 0) + libtirpc_set_debug(progname, rpc_verbosity, fg); #else if (rpc_verbosity > 0) printerr(0, "Warning: rpcsec_gss library does not " diff --git a/utils/gssd/svcgssd.c b/utils/gssd/svcgssd.c index f1b4347..0fe7c6d 100644 --- a/utils/gssd/svcgssd.c +++ b/utils/gssd/svcgssd.c @@ -135,6 +135,13 @@ main(int argc, char *argv[]) if (verbosity && rpc_verbosity == 0) rpc_verbosity = verbosity; authgss_set_debug_level(rpc_verbosity); +#elif HAVE_LIBTIRPC_SET_DEBUG + /* + * Only set the libtirpc debug level if explicitly requested via -r... + * svcgssd is chatty enough as it is. + */ + if (rpc_verbosity > 0) + libtirpc_set_debug(progname, rpc_verbosity, fg); #else if (rpc_verbosity > 0) printerr(0, "Warning: rpcsec_gss library does not "
The interface for controlling the debug level in libtirpc was added over a year ago, but nothing's taking advantage of it. Signed-off-by: Scott Mayhew <smayhew@redhat.com> --- aclocal/libtirpc.m4 | 6 ++++++ utils/gssd/gssd.c | 7 +++++++ utils/gssd/svcgssd.c | 7 +++++++ 3 files changed, 20 insertions(+)