From owner-freebsd-current@FreeBSD.ORG Sat Nov 15 11:59:13 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 573E116A4CE for ; Sat, 15 Nov 2003 11:59:13 -0800 (PST) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EAC443F93 for ; Sat, 15 Nov 2003 11:59:12 -0800 (PST) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.9p2/8.12.9) with ESMTP id hAFJxAeG016490; Sat, 15 Nov 2003 12:59:11 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Sat, 15 Nov 2003 12:58:56 -0700 (MST) Message-Id: <20031115.125856.123335183.imp@bsdimp.com> To: A.Tobola@wilk.2a.pl From: "M. Warner Losh" In-Reply-To: <20031115183712.GA92131@wilk.2a.pl> References: <20031115013231.GE35957@elvis.mu.org> <20031115183712.GA92131@wilk.2a.pl> X-Mailer: Mew version 2.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: bright@mu.org cc: current@freebsd.org Subject: Re: NFSv4 Client code committed. X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Nov 2003 19:59:13 -0000 In message: <20031115183712.GA92131@wilk.2a.pl> Andrzej Tobola writes: : Did you tested it with nfsclient dynamically loaded ? I can't load nfs4client.ko either. If you put all the files/paths in nfsclient, it will load and work. I load nfsclient.ko in my boot loader, so I couldn't boot at all due to the unresolved symbols. :-( Warner P.S. Here's what I have in p4 to make it work. .PATH: ${.CURDIR}/../../nfsclient ${.CURDIR}/../../nfs4client \ ${.CURDIR}/../../nfs ${.CURDIR}/../../rpc KMOD= nfsclient SRCS= vnode_if.h \ nfs_bio.c nfs_lock.c nfs_node.c nfs_socket.c nfs_subs.c nfs_nfsiod.c \ nfs_vfsops.c nfs_vnops.c nfs_common.c \ opt_inet.h opt_nfs.h opt_bootp.h opt_nfsroot.h SRCS+= nfs4_dev.c nfs4_idmap.c nfs4_socket.c nfs4_subs.c \ nfs4_vfs_subs.c nfs4_vfsops.c nfs4_vn_subs.c nfs4_vnops.c SRCS+= opt_inet6.h NFS_INET?= 1 # 0/1 - requires INET to be configured in kernel NFS_INET6?= 1 # 0/1 - requires INET6 to be configured in kernel # USE THE RPCCLNT: CFLAGS+= -DRPCCLNT_DEBUG SRCS+= rpcclnt.c # USE THE NEW IDMAPPER CFLAGS+= -DUSE_NEW_IDMAPPER opt_inet.h: touch ${.TARGET} .if ${NFS_INET} > 0 echo "#define INET 1" > ${.TARGET} .endif .if ${NFS_INET6} > 0 opt_inet6.h: echo "#define INET6 1" > ${.TARGET} .endif .include