svn commit: r273762 - head/sys/modules/dtrace/dtraceall
John-Mark Gurney
jmg at funkthat.com
Tue Oct 28 06:44:07 UTC 2014
Julian Elischer wrote this message on Tue, Oct 28, 2014 at 04:18 +0000:
> Author: julian
> Date: Tue Oct 28 04:18:09 2014
> New Revision: 273762
> URL: https://svnweb.freebsd.org/changeset/base/273762
>
> Log:
> Allow loading of dtraceall without nfscl if what you really wnat is nfsclient
>
> Obtained from: Panzura tree
> MFC after: 1 week
>
> Modified:
> head/sys/modules/dtrace/dtraceall/dtraceall.c
>
> Modified: head/sys/modules/dtrace/dtraceall/dtraceall.c
> ==============================================================================
> --- head/sys/modules/dtrace/dtraceall/dtraceall.c Tue Oct 28 03:42:09 2014 (r273761)
> +++ head/sys/modules/dtrace/dtraceall/dtraceall.c Tue Oct 28 04:18:09 2014 (r273762)
> @@ -67,7 +67,9 @@ MODULE_DEPEND(dtraceall, cyclic, 1, 1, 1
> MODULE_DEPEND(dtraceall, opensolaris, 1, 1, 1);
> MODULE_DEPEND(dtraceall, dtrace, 1, 1, 1);
> MODULE_DEPEND(dtraceall, dtmalloc, 1, 1, 1);
> +#if defined(NFSCLIENT)
> MODULE_DEPEND(dtraceall, dtnfscl, 1, 1, 1);
> +#endif
> #if defined(NFSCLIENT)
> MODULE_DEPEND(dtraceall, dtnfsclient, 1, 1, 1);
> #endif
Why not put the MODULE_DEPEND in the same #if defined block that follows?
--
John-Mark Gurney Voice: +1 415 225 5579
"All that I will do, has been done, All that I have, has not."
More information about the svn-src-all
mailing list