svn commit: r197998 - head/sys/modules/nfsclient

Robert Watson rwatson at FreeBSD.org
Mon Oct 12 18:59:32 UTC 2009


Author: rwatson
Date: Mon Oct 12 18:59:31 2009
New Revision: 197998
URL: http://svn.freebsd.org/changeset/base/197998

Log:
  Export DTrace symbols from nfsclient so that dtnfsclient can get to them.
  This fixes DTrace with nfsclient built as a module.
  
  MFC after:	3 days
  Reported by:	markm

Modified:
  head/sys/modules/nfsclient/Makefile

Modified: head/sys/modules/nfsclient/Makefile
==============================================================================
--- head/sys/modules/nfsclient/Makefile	Mon Oct 12 18:58:42 2009	(r197997)
+++ head/sys/modules/nfsclient/Makefile	Mon Oct 12 18:59:31 2009	(r197998)
@@ -41,4 +41,14 @@ NFS_ROOT=	1
 SRCS+=	nfs_diskless.c
 .endif
 
+EXPORT_SYMS=						\
+	dtrace_nfsclient_accesscache_flush_done_probe	\
+	dtrace_nfsclient_accesscache_get_hit_probe	\
+	dtrace_nfsclient_accesscache_get_miss_probe	\
+	dtrace_nfsclient_accesscache_load_done_probe	\
+	nfsclient_accesscache_flush_done_id		\
+	nfsclient_accesscache_get_hit_id		\
+	nfsclient_accesscache_get_miss_id		\
+	nfsclient_accesscache_load_done_id
+
 .include <bsd.kmod.mk>


More information about the svn-src-all mailing list