Date: Wed, 10 Jun 2009 21:31:57 +0000 (UTC) From: "Bjoern A. Zeeb" <bz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r193957 - head/sys/conf Message-ID: <200906102131.n5ALVvDd026710@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bz Date: Wed Jun 10 21:31:57 2009 New Revision: 193957 URL: http://svn.freebsd.org/changeset/base/193957 Log: Unfortunately fs/nfsserver depends on INET at the moment. It seems to be nfs_nfsdport.c and nfs_nfsdcache.c are the problem only but we need to mark all or we will run into problems at link time. One is because of calling an INET specific function, the other is because of VIMAGE putting all tcp* into struct vnet_inet. Both are general problems throughout the entire stack and not a fault of the NFS implementation and will need to be addressed in the future. Modified: head/sys/conf/files Modified: head/sys/conf/files ============================================================================== --- head/sys/conf/files Wed Jun 10 21:18:21 2009 (r193956) +++ head/sys/conf/files Wed Jun 10 21:31:57 2009 (r193957) @@ -1746,13 +1746,13 @@ fs/nfsclient/nfs_cllock.c optional nfscl fs/nfsclient/nfs_clport.c optional nfscl fs/nfsclient/nfs_clbio.c optional nfscl fs/nfsclient/nfs_clnfsiod.c optional nfscl -fs/nfsserver/nfs_nfsdsocket.c optional nfsd -fs/nfsserver/nfs_nfsdsubs.c optional nfsd -fs/nfsserver/nfs_nfsdstate.c optional nfsd -fs/nfsserver/nfs_nfsdkrpc.c optional nfsd -fs/nfsserver/nfs_nfsdserv.c optional nfsd -fs/nfsserver/nfs_nfsdport.c optional nfsd -fs/nfsserver/nfs_nfsdcache.c optional nfsd +fs/nfsserver/nfs_nfsdsocket.c optional nfsd inet +fs/nfsserver/nfs_nfsdsubs.c optional nfsd inet +fs/nfsserver/nfs_nfsdstate.c optional nfsd inet +fs/nfsserver/nfs_nfsdkrpc.c optional nfsd inet +fs/nfsserver/nfs_nfsdserv.c optional nfsd inet +fs/nfsserver/nfs_nfsdport.c optional nfsd inet +fs/nfsserver/nfs_nfsdcache.c optional nfsd inet fs/ntfs/ntfs_compr.c optional ntfs fs/ntfs/ntfs_iconv.c optional ntfs_iconv fs/ntfs/ntfs_ihash.c optional ntfs
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906102131.n5ALVvDd026710>