svn commit: r192574 - head/sys/fs/nfsserver

Rick Macklem rmacklem at FreeBSD.org
Fri May 22 01:15:08 UTC 2009


Author: rmacklem
Date: Fri May 22 01:15:07 2009
New Revision: 192574
URL: http://svn.freebsd.org/changeset/base/192574

Log:
  Fix the experimental nfs server so that it depends on the nlm,
  since it now calls nlm_acquire_next_sysid().
  
  Approved by:	kib (mentor)

Modified:
  head/sys/fs/nfsserver/nfs_nfsdport.c

Modified: head/sys/fs/nfsserver/nfs_nfsdport.c
==============================================================================
--- head/sys/fs/nfsserver/nfs_nfsdport.c	Thu May 21 23:30:38 2009	(r192573)
+++ head/sys/fs/nfsserver/nfs_nfsdport.c	Fri May 22 01:15:07 2009	(r192574)
@@ -3144,4 +3144,5 @@ DECLARE_MODULE(nfsd, nfsd_mod, SI_SUB_VF
 /* So that loader and kldload(2) can find us, wherever we are.. */
 MODULE_VERSION(nfsd, 1);
 MODULE_DEPEND(nfsd, nfscommon, 1, 1, 1);
+MODULE_DEPEND(nfsd, nfslockd, 1, 1, 1);
 


More information about the svn-src-head mailing list