From owner-svn-src-head@FreeBSD.ORG Sun Jul 1 13:37:22 2012 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A96181065672; Sun, 1 Jul 2012 13:37:22 +0000 (UTC) (envelope-from andreast@FreeBSD.org) Received: from smtp.fgznet.ch (mail.fgznet.ch [81.92.96.47]) by mx1.freebsd.org (Postfix) with ESMTP id 1C12C8FC18; Sun, 1 Jul 2012 13:37:21 +0000 (UTC) Received: from deuterium.andreas.nets (dhclient-91-190-14-19.flashcable.ch [91.190.14.19]) by smtp.fgznet.ch (8.13.8/8.13.8/Submit_SMTPAUTH) with ESMTP id q61DbJLA061284; Sun, 1 Jul 2012 15:37:19 +0200 (CEST) (envelope-from andreast@FreeBSD.org) Message-ID: <4FF0528E.50002@FreeBSD.org> Date: Sun, 01 Jul 2012 15:37:18 +0200 From: Andreas Tobler User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.5; rv:13.0) Gecko/20120601 Thunderbird/13.0 MIME-Version: 1.0 To: Konstantin Belousov References: <201206210926.q5L9Q6nR002030@svn.freebsd.org> <4FF03316.5050609@FreeBSD.org> <20120701120408.GM2337@deviant.kiev.zoral.com.ua> In-Reply-To: <20120701120408.GM2337@deviant.kiev.zoral.com.ua> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.64 on 81.92.96.47 Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r237367 - head/sys/fs/nfsclient X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Jul 2012 13:37:22 -0000 On 01.07.12 14:04, Konstantin Belousov wrote: > On Sun, Jul 01, 2012 at 01:23:02PM +0200, Andreas Tobler wrote: >> On 21.06.12 11:26, Konstantin Belousov wrote: >>> Author: kib >>> Date: Thu Jun 21 09:26:06 2012 >>> New Revision: 237367 >>> URL: http://svn.freebsd.org/changeset/base/237367 >>> >>> Log: >>> Enable deadlock avoidance code for NFS client. >> >> >> Hm, since this commit I fail with my nfs installworld/kernel. >> >> I have a builder which installs world/kernel to a nfs mounted directory. >> Namely used for cross builds. >> >> Now since this commit I get the following when I install kernel to the >> nfs directory: >> >> .. >> install -o root -g wheel -m 555 zfs.ko.symbols >> /netboot/sparc64/boot/kernel >> install: /netboot/sparc64/boot/kernel/zfs.ko.symbols: No such file or >> directory >> *** [_kmodinstall] Error code 71 >> .. >> >> The file is there, a local install of the tree works without problems. >> Reverting to r237366 also makes it work again. >> >> The server is a -CURRENT, r237880, The client, -CURRENT too. >> >> How can I help to track down the real issue? > > Is it always the same file in the install procedure which causes the > failure ? Even more, is the failure pattern always the same ? I'd say so yes. When installing a kernel onto a nfs mounted fs then always (in my cases) the zfs.ko.symbols was the failing pattern. I tried ppc64 and sparc64 as target. With both it was the above file. When doing a installworld, it was, also in both cases, ppc64/sparc64, the cc1 in libexec which failed. > Might be, start with ktrace-ing the whole make invocation, including > the children processes. Some recipes how to start? > I used buildworld on the NFS-mounted obj/ as the test for the changes. Here the obj is local, only the src and the destination is on the nfs/netboot server. Thanks, Andreas