svn commit: r273762 - head/sys/modules/dtrace/dtraceall

Rui Paulo rpaulo at me.com
Mon Nov 10 21:31:25 UTC 2014


On Oct 27, 2014, at 21:18, Julian Elischer <julian at freebsd.org> wrote:
> 
> 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

This change is wrong.  NFSCLIENT is the old NFS client implementation and NFSCL is the new client implementation.  The DTrace modules match them respectively.

--
Rui Paulo





More information about the svn-src-all mailing list