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

Robert Watson rwatson at FreeBSD.org
Tue Oct 13 09:21:20 UTC 2009


Author: rwatson
Date: Tue Oct 13 09:21:20 2009
New Revision: 198024
URL: http://svn.freebsd.org/changeset/base/198024

Log:
  EXPORT_SYMS is not, in fact, required, for a dependent module to access
  non-static symbols in a module they depend on, so remove dtrace symbols
  from nfsclient's EXPORT_SYMS again.
  
  Suggested by:	jhb

Modified:
  head/sys/modules/nfsclient/Makefile

Modified: head/sys/modules/nfsclient/Makefile
==============================================================================
--- head/sys/modules/nfsclient/Makefile	Tue Oct 13 09:21:15 2009	(r198023)
+++ head/sys/modules/nfsclient/Makefile	Tue Oct 13 09:21:20 2009	(r198024)
@@ -41,14 +41,4 @@ 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