From owner-freebsd-stable@FreeBSD.ORG Sun Apr 5 00:26:28 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 53A03871; Sun, 5 Apr 2015 00:26:28 +0000 (UTC) Received: from mail-ob0-x22c.google.com (mail-ob0-x22c.google.com [IPv6:2607:f8b0:4003:c01::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 142BD649; Sun, 5 Apr 2015 00:26:28 +0000 (UTC) Received: by obbgh1 with SMTP id gh1so2615168obb.1; Sat, 04 Apr 2015 17:26:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=KNHubj2ugQUQn4Kj23W9joNMgB7M7/nsM/H2ftzqaNU=; b=shj9Az6bl6Fh4AHCYMSw0qQCEmppTCCY9mCu8Dvx7U2tqwW9D8mb/F4E/N7Nr2cpzY TTNgwmn1xK33pzsaIRxnLnd5rYmTVLwozNlO4RjHIPJa7nLakWImnsdYrHp/kSR8zVed ja2pSNy/DrxwthVzvaiBrQJP3NCTyvfMYAUCQQYgOwmNVM6UJNNipdZE5ZvBO8P5Nt36 JQ/wZ+0u0HCf5GgGDFB5KCcxsU/8wbQ/1PAEecC2d+9Da1waePCWh5/zRj6FcYVRK4NA Yn967cN4tZR7aH6BbKZNfEok99W8goj5YllDONZ1Sg675kX3z80y2FnIVoXMQOotWBDQ aThw== MIME-Version: 1.0 X-Received: by 10.60.77.38 with SMTP id p6mr10663592oew.75.1428193587201; Sat, 04 Apr 2015 17:26:27 -0700 (PDT) Received: by 10.202.177.136 with HTTP; Sat, 4 Apr 2015 17:26:27 -0700 (PDT) In-Reply-To: References: <20150402183939.GC30115@ivaldir.etoilebsd.net> Date: Sun, 5 Apr 2015 02:26:27 +0200 Message-ID: Subject: Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1 From: Zenny To: Baptiste Daroussin Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2015 00:26:28 -0000 Hi again, I appended the nanobsd configuration file with: cust_NANOBSD_packages() { env SSL_NO_VERIFY_HOSTNAME=3D"true" \ env SSL_NO_VERIFY_PPER=3D"true" \ pkg -c ${NANO_WORLDIR} install -fy ${PACKAGELIST} env SSL_NO_VERIFY_HOSTNAME=3D"true" \ SSL_NO_VERIFY_PEER=3D"true" \ pkg -c ${NANO_WORLDDIR} clean -a -y rm -f ${NANO_WORLDDIR}/var/db/pkg/repo-*.sqlite } But it keeps on saying that both -f and -y option for the package is illegal as shown below: + cust_NANOBSD_packages + env SSL_NO_VERIFY_HOSTNAME=3Dtrue env SSL_NO_VERIFY_PPER=3Dtrue pkg -c install -fy nano pkg: illegal option -- f pkg: illegal option -- y pkg: chroot failed! When I install with -y flag on the host node, it works fine, but causing problem only in the chrooted environment. Where did I get wrong? Thanks in advance. Cheers, /z when I checked On 4/3/15, Zenny wrote: > On 4/2/15, Baptiste Daroussin wrote: >> On Wed, Apr 01, 2015 at 12:48:21PM +0200, Zenny wrote: >>> Hi, >>> >>> 1. In order to comply with the pkgng in FreeBSD 10.1, the following >>> changes >>> were appended to my customized nanobsd.conf: >>> >>> customize_cmd cust_NANOBSD_setup >>> > >>> > cust_NANOBSD_packages() { >>> > chroot ${NANO_WORLDDIR} sh -c 'cd packages; pkg; pkg install nano; pk= g >>> > clean;' >>> > } >>> > >>> > customize_cmd cust_NANOBSD_packages >>> > >>> >>> Certainly I had tuned chrooted /etc/resolv.conf with: >>> >>> #tune resolv.conf >>> > echo ' >>> > nameserver 8.8.8.8 >>> > nameserver 8.8.4.4 >>> > ' >> ${NANO_WORLDDIR}/etc/resolv.conf >>> > >> >> This tuning is not needed you can specify the nameserver on pkg command >> line: >> pkg -o NAMESERVER=3D"8.8.8.8" -c ${NANO_WORLDDIR} update > > Segmentation fault with above, > + cust_NANOBSD_packages > + pkg -o NAMESERVER=3D8.8.8.8 -c /usr/obj/nanobsd.NANOBSD//_.w update > Child process pid=3D88756 terminated abnormally: Segmentation fault > > # dmesg | grep pkg =E2= =94=82 > pid 88756 (pkg), uid 0: exited on signal 11 (core dumped) > >> >> You can also simply add NAMESERVER in your environement variable >>> >>> Still the package cannot be downloaded from PACKAGESITE and got built >>> into >>> nanobsd image. >>> >>> 2. Also tried with: >>> >>> cust_pkg() { >>> > pkg -c ${NANO_WORLDDIR} update >>> > pkg -c ${NANO_WORLDDIR} install nano >>> > pkg -c ${NANO_WORLDDIR} clean >>> > } >>> > >>> > customize_cmd cust_pkg >>> > >>> >>> Both ways, I get the same error that reads as of below: >>> >>> cd: packages: No such file or directory >>> > pkg: Error fetching >>> > http://pkg.FreeBSD.org/freebsd:10:x86:64/latest/Latest/pkg.txz: No >>> > address record >>> > A pre-built version of pkg could not be found for your system. >>> > Consider changing PACKAGESITE or installing it from ports: >>> > 'ports-mgmt/pkg'. >>> > The package management tool is not yet installed on your system. >>> > Do you want to fetch and install it now? [y/N]: Bootstrapping pkg fro= m >>> > pkg+ >>> > http://pkg.FreeBSD.org/freebsd:10:x86:64/latest, please wait... >>> > pkg: Error fetching >>> > http://pkg.FreeBSD.org/freebsd:10:x86:64/latest/Latest/pkg.txz: No >>> > address record >>> > A pre-built version of pkg could not be found for your system. >>> > Consider changing PACKAGESITE or installing it from ports: >>> > 'ports-mgmt/pkg'. >>> > The package management tool is not yet installed on your system. >>> > Do you want to fetch and install it now? [y/N]: Bootstrapping pkg fro= m >>> > pkg+ >>> > http://pkg.FreeBSD.org/freebsd:10:x86:64/latest, please wait... >>> > pkg: Error fetching >>> > http://pkg.FreeBSD.org/freebsd:10:x86:64/latest/Latest/pkg.txz: No >>> > address record >>> > A pre-built version of pkg could not be found for your system. >>> > Consider changing PACKAGESITE or installing it from ports: >>> > 'ports-mgmt/pkg'. >>> > The package management tool is not yet installed on your system. >>> > Do you want to fetch and install it now? [y/N]: Bootstrapping pkg fro= m >>> > pkg+ >>> > http://pkg.FreeBSD.org/freebsd:10:x86:64/latest, please wait... >>> > >>> >> Is pkg installed on your host? it seems not? >> >> Best regards, >> Bapt >> > From owner-freebsd-stable@FreeBSD.ORG Sun Apr 5 00:33:41 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D440B91; Sun, 5 Apr 2015 00:33:41 +0000 (UTC) Received: from mail-pd0-x22b.google.com (mail-pd0-x22b.google.com [IPv6:2607:f8b0:400e:c02::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CC4727BF; Sun, 5 Apr 2015 00:33:40 +0000 (UTC) Received: by pdea3 with SMTP id a3so3584492pde.3; Sat, 04 Apr 2015 17:33:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=VfyivNCNuvYL9eiv36AXR0NWAdxtgxWXYlqBBoLi1EY=; b=Qk4oTUnFBRGOPOZxv/v4LN43xIg0D2xBWcqleeheKSRx4xkwY6j8w5CXtlqgLXQQN2 Lr2KzxXcYYpRjrztWZuDUUXgbrXMfzwYQBg7sesEElVmMGWwZVgkrff6JRJCnMgT4twE G8k5VsuF7e39ErXKyeI78zKLa9KqdlSd65QXQpuJ//ryPUBREnZ95oGGcqGn8Q+QIeWu RXGl6W5o8mKYz30RJ9qCAtyO9F6DySPaWPEv2hYqQzcuHsg3k2FqSsfDLRxfhmlbGpj8 EnK2AaRrmoh5L28fq6fBuFybEdYvJ5/er/ZamKjMJbnYTqSkxBSYcRTv+LYHFLGdRguW XR1w== MIME-Version: 1.0 X-Received: by 10.70.44.203 with SMTP id g11mr16027698pdm.130.1428194020437; Sat, 04 Apr 2015 17:33:40 -0700 (PDT) Received: by 10.70.40.165 with HTTP; Sat, 4 Apr 2015 17:33:40 -0700 (PDT) In-Reply-To: References: <20150402183939.GC30115@ivaldir.etoilebsd.net> Date: Sat, 4 Apr 2015 20:33:40 -0400 Message-ID: Subject: Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1 From: Brandon Allbery To: Zenny Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: Baptiste Daroussin , "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2015 00:33:41 -0000 On Sat, Apr 4, 2015 at 8:26 PM, Zenny wrote: > + cust_NANOBSD_packages > + env SSL_NO_VERIFY_HOSTNAME=true env SSL_NO_VERIFY_PPER=true pkg -c > install -fy nano > pkg: illegal option -- f > pkg: illegal option -- y > pkg: chroot failed! > > When I install with -y flag on the host node, it works fine, but > causing problem only in the chrooted environment. Where did I get > wrong? Thanks in advance. > Notice that ${NANO_WORLDDIR} didn't substitute anything; it used "install" as the chroot (which is why it failed) and -fy as global options instead of options to the "install" command it didn't see because -c ate it. -- brandon s allbery kf8nh sine nomine associates allbery.b@gmail.com ballbery@sinenomine.net unix, openafs, kerberos, infrastructure, xmonad http://sinenomine.net From owner-freebsd-stable@FreeBSD.ORG Sun Apr 5 01:00:54 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3FC55656; Sun, 5 Apr 2015 01:00:54 +0000 (UTC) Received: from mail-ob0-x22e.google.com (mail-ob0-x22e.google.com [IPv6:2607:f8b0:4003:c01::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F3B4AADE; Sun, 5 Apr 2015 01:00:53 +0000 (UTC) Received: by obbec2 with SMTP id ec2so2979580obb.3; Sat, 04 Apr 2015 18:00:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=C/zMhzQgezIJYl+chn+89pv9wVWL8V1PKfeBxD44yz4=; b=KeB8H94P1Mur/el4/O+/HV8iIML0pOXkCc6wO32an63MQwuDHskTKPGoPxsDfkHV3c bgOW9vRbWKX+aknDxPURTyQLs8O63q5fXsTn/4DvS2oKb7okaVVw9X6vFeZBoE6ZYcMI nuww0xc+XGSFMjtkKeBE5IwsL+YwGQhnjVwIpVuD3cvFPV+i1lbIY3eMG0wuyH7bD9H5 FjuUlCC7iQpY8PraVjVZRMFpZhBH/7usMj+rjY7itpVjITme2EMI5qRT1hJQL2jlxGbY xbuskmoAsZTaW0gB7LeIqfMGgleX/m6jgyGnliPZmIQY51KthXdT9OUrQIhh+6ELFdcd MpHg== MIME-Version: 1.0 X-Received: by 10.60.46.66 with SMTP id t2mr10557818oem.60.1428195653291; Sat, 04 Apr 2015 18:00:53 -0700 (PDT) Received: by 10.202.177.136 with HTTP; Sat, 4 Apr 2015 18:00:53 -0700 (PDT) In-Reply-To: References: <20150402183939.GC30115@ivaldir.etoilebsd.net> Date: Sun, 5 Apr 2015 03:00:53 +0200 Message-ID: Subject: Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1 From: Zenny To: Brandon Allbery Content-Type: text/plain; charset=UTF-8 Cc: Baptiste Daroussin , "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2015 01:00:54 -0000 Thanks Brandon. Yes, I did notice a typo. Missed a 'D' in NANO_WORLDDIR: pkg -c ${NANO_WORLDIR} install -fy ${PACKAGELIST} /z On 4/5/15, Brandon Allbery wrote: > On Sat, Apr 4, 2015 at 8:26 PM, Zenny wrote: > >> + cust_NANOBSD_packages >> + env SSL_NO_VERIFY_HOSTNAME=true env SSL_NO_VERIFY_PPER=true pkg -c >> install -fy nano >> pkg: illegal option -- f >> pkg: illegal option -- y >> pkg: chroot failed! >> >> When I install with -y flag on the host node, it works fine, but >> causing problem only in the chrooted environment. Where did I get >> wrong? Thanks in advance. >> > > Notice that ${NANO_WORLDDIR} didn't substitute anything; it used "install" > as the chroot (which is why it failed) and -fy as global options instead of > options to the "install" command it didn't see because -c ate it. > > -- > brandon s allbery kf8nh sine nomine > associates > allbery.b@gmail.com > ballbery@sinenomine.net > unix, openafs, kerberos, infrastructure, xmonad > http://sinenomine.net > From owner-freebsd-stable@FreeBSD.ORG Sun Apr 5 01:20:20 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 17F9ABC5; Sun, 5 Apr 2015 01:20:20 +0000 (UTC) Received: from mail-ob0-x22f.google.com (mail-ob0-x22f.google.com [IPv6:2607:f8b0:4003:c01::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CA1ABDD3; Sun, 5 Apr 2015 01:20:19 +0000 (UTC) Received: by obvd1 with SMTP id d1so3303066obv.0; Sat, 04 Apr 2015 18:20:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=gpNG+WMj4i/y3nxVGkcZWbVMe1HyFrJqdMCs9f7wtbY=; b=bM5Y8vkzvjZSocludWY1yG8WE08jxPZSeHQXX7cwp7nTxwRfwclEOPxJMk37iLFZd9 HcByHxID/ChqeKxkQXVNz8O76+9YCINbgndZQdAyDfuSYHT8Br/zwf4xD3w9MZTgw9A+ FkxnwH7Wdcd1rr03vzoT86VDQM7saVqbmdWx6dC8PH7h47qAuoWDdqiBeEy23PFCvZ7L HGBOAOsb9+r8X9qRC4HHEd55ClLaFXwZwm18ZXnDjCaefQpGScjMvMEQW6IlYV5MK0Oq eigT6vNJcnTEO0Ecg8cTjxGPjSz6twC1qWWOTwoM/7F01I79vV+H7Fyoy2gO0HS0IzzQ sd/g== MIME-Version: 1.0 X-Received: by 10.60.147.165 with SMTP id tl5mr2617564oeb.81.1428196819158; Sat, 04 Apr 2015 18:20:19 -0700 (PDT) Received: by 10.202.177.136 with HTTP; Sat, 4 Apr 2015 18:20:19 -0700 (PDT) In-Reply-To: References: <20150402183939.GC30115@ivaldir.etoilebsd.net> Date: Sun, 5 Apr 2015 03:20:19 +0200 Message-ID: Subject: Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1 From: Zenny To: Brandon Allbery Content-Type: text/plain; charset=UTF-8 Cc: Baptiste Daroussin , "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2015 01:20:20 -0000 On 4/5/15, Zenny wrote: > Thanks Brandon. > > Yes, I did notice a typo. Missed a 'D' in NANO_WORLDDIR: > pkg -c ${NANO_WORLDIR} install -fy ${PACKAGELIST} The above asked to do a 'pkg update', so accordingly, I added to custom_packages the following: cust_NANOBSD_packages() { env SSL_NO_VERIFY_HOSTNAME="true" \ env SSL_NO_VERIFY_PPER="true" \ pkg -c ${NANO_WORLDDIR} -f update env SSL_NO_VERIFY_HOSTNAME="true" \ env SSL_NO_VERIFY_PPER="true" \ pkg -c ${NANO_WORLDDIR} install -y ${PACKAGELIST} env SSL_NO_VERIFY_HOSTNAME="true" \ SSL_NO_VERIFY_PEER="true" \ pkg -c ${NANO_WORLDDIR} clean -a -y rm -f ${NANO_WORLDDIR}/var/db/pkg/repo-*.sqlite } But it fails with: + env SSL_NO_VERIFY_HOSTNAME=true env SSL_NO_VERIFY_PPER=true pkg -c /usr/obj/nanobsd.NANOBSD-PFS//_.w -f update pkg: illegal option -- f Updating FreeBSD repository catalogue... pkg: http://pkg.FreeBSD.org/FreeBSD:10:amd64/latest/meta.txz: No address record pkg: repository FreeBSD has no meta file, using default settings pkg: http://pkg.FreeBSD.org/FreeBSD:10:amd64/latest/packagesite.txz: No address record pkg: Unable to update repository FreeBSD hmmmm.... > > /z > > > On 4/5/15, Brandon Allbery wrote: >> On Sat, Apr 4, 2015 at 8:26 PM, Zenny wrote: >> >>> + cust_NANOBSD_packages >>> + env SSL_NO_VERIFY_HOSTNAME=true env SSL_NO_VERIFY_PPER=true pkg -c >>> install -fy nano >>> pkg: illegal option -- f >>> pkg: illegal option -- y >>> pkg: chroot failed! >>> >>> When I install with -y flag on the host node, it works fine, but >>> causing problem only in the chrooted environment. Where did I get >>> wrong? Thanks in advance. >>> >> >> Notice that ${NANO_WORLDDIR} didn't substitute anything; it used >> "install" >> as the chroot (which is why it failed) and -fy as global options instead >> of >> options to the "install" command it didn't see because -c ate it. >> >> -- >> brandon s allbery kf8nh sine nomine >> associates >> allbery.b@gmail.com >> ballbery@sinenomine.net >> unix, openafs, kerberos, infrastructure, xmonad >> http://sinenomine.net >> > From owner-freebsd-stable@FreeBSD.ORG Sun Apr 5 01:34:55 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 84C2290; Sun, 5 Apr 2015 01:34:55 +0000 (UTC) Received: from mail-ob0-x22c.google.com (mail-ob0-x22c.google.com [IPv6:2607:f8b0:4003:c01::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 41BEB74; Sun, 5 Apr 2015 01:34:55 +0000 (UTC) Received: by obbfy7 with SMTP id fy7so3420261obb.2; Sat, 04 Apr 2015 18:34:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=pLtfwRixcMF0+7dHvZLykaXDZGXPW9GCnU0tdrzbha0=; b=G+beB1naR78WXVTUuYvZPKaL0sp/pf3WCVNwcy98grVEVG/zeS45X3Z9JhiaWJjesM wfmgwKgCdoI+fm7Y0PTzUSjmG7Ti/UICioKlZyNX/JFGsAtG9ditdAYaBr9kuM5biwvV o/NJc0QWhYQu990rfH7lg4WT5Lk5Y+oAX6RTUo0uWDcEjuTuSeWfVBnmOBXGT7Pz7UA5 J/TzfZbUD0n9bsO9Z15gooy3HF6OJ8Aur7WiiPSCgj0muy1jCzN2V4Ocx97eOsRW7OmP XLeA3FEG/bkwVyJLMhFtEXDLBgGaHvWNn8h4HPhRlLeXXPHYXG1AszOTQF+lPbY2IPJb /bfA== MIME-Version: 1.0 X-Received: by 10.60.15.133 with SMTP id x5mr5437360oec.80.1428197694631; Sat, 04 Apr 2015 18:34:54 -0700 (PDT) Received: by 10.202.177.136 with HTTP; Sat, 4 Apr 2015 18:34:54 -0700 (PDT) In-Reply-To: References: <20150402183939.GC30115@ivaldir.etoilebsd.net> Date: Sun, 5 Apr 2015 03:34:54 +0200 Message-ID: Subject: Re: pkgng cannot fetch from PACKAGESITE with nanobsd.sh in FreeBSD 10.1 From: Zenny To: Brandon Allbery Content-Type: text/plain; charset=UTF-8 Cc: Baptiste Daroussin , "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2015 01:34:55 -0000 On 4/5/15, Zenny wrote: > On 4/5/15, Zenny wrote: >> Thanks Brandon. >> >> Yes, I did notice a typo. Missed a 'D' in NANO_WORLDDIR: >> pkg -c ${NANO_WORLDIR} install -fy ${PACKAGELIST} > > The above asked to do a 'pkg update', so accordingly, I added to > custom_packages the following: > > cust_NANOBSD_packages() { > env SSL_NO_VERIFY_HOSTNAME="true" \ > env SSL_NO_VERIFY_PPER="true" \ > pkg -c ${NANO_WORLDDIR} -f update > env SSL_NO_VERIFY_HOSTNAME="true" \ > env SSL_NO_VERIFY_PPER="true" \ > pkg -c ${NANO_WORLDDIR} install -y ${PACKAGELIST} > env SSL_NO_VERIFY_HOSTNAME="true" \ > SSL_NO_VERIFY_PEER="true" \ > pkg -c ${NANO_WORLDDIR} clean -a -y > rm -f ${NANO_WORLDDIR}/var/db/pkg/repo-*.sqlite > } It worked when I copied the /etc/resolv.conf to the ${NANO_WORLDDIR}. cp /etc/resolv.conf ${NANO_WORLDDIR}/etc/ > > But it fails with: > > + env SSL_NO_VERIFY_HOSTNAME=true env SSL_NO_VERIFY_PPER=true pkg -c > /usr/obj/nanobsd.NANOBSD-PFS//_.w -f update > pkg: illegal option -- f > Updating FreeBSD repository catalogue... > pkg: http://pkg.FreeBSD.org/FreeBSD:10:amd64/latest/meta.txz: No address > record > pkg: repository FreeBSD has no meta file, using default settings > pkg: http://pkg.FreeBSD.org/FreeBSD:10:amd64/latest/packagesite.txz: > No address record > pkg: Unable to update repository FreeBSD > > hmmmm.... > >> >> /z >> >> >> On 4/5/15, Brandon Allbery wrote: >>> On Sat, Apr 4, 2015 at 8:26 PM, Zenny wrote: >>> >>>> + cust_NANOBSD_packages >>>> + env SSL_NO_VERIFY_HOSTNAME=true env SSL_NO_VERIFY_PPER=true pkg -c >>>> install -fy nano >>>> pkg: illegal option -- f >>>> pkg: illegal option -- y >>>> pkg: chroot failed! >>>> >>>> When I install with -y flag on the host node, it works fine, but >>>> causing problem only in the chrooted environment. Where did I get >>>> wrong? Thanks in advance. >>>> >>> >>> Notice that ${NANO_WORLDDIR} didn't substitute anything; it used >>> "install" >>> as the chroot (which is why it failed) and -fy as global options instead >>> of >>> options to the "install" command it didn't see because -c ate it. >>> >>> -- >>> brandon s allbery kf8nh sine nomine >>> associates >>> allbery.b@gmail.com >>> ballbery@sinenomine.net >>> unix, openafs, kerberos, infrastructure, xmonad >>> http://sinenomine.net >>> >> > From owner-freebsd-stable@FreeBSD.ORG Sun Apr 5 03:57:34 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7D35C978; Sun, 5 Apr 2015 03:57:34 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 66C86C9; Sun, 5 Apr 2015 03:57:34 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 4F8597F3; Sun, 5 Apr 2015 03:57:30 +0000 (UTC) Date: Sun, 5 Apr 2015 03:57:22 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-stable@freebsd.org, bdrewery@FreeBSD.org, kib@FreeBSD.org, alc@FreeBSD.org, dim@FreeBSD.org Message-ID: <1103583768.0.1428206243976.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: FreeBSD_stable_10 #1335 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2015 03:57:34 -0000 See Changes: [kib] MFC r280342: msdosfs: mark unused compat-mount fields. [dim] MFC r272444 (by jkim): Merge ACPICA 20140926. MFC r278970 (by jkim): Merge ACPICA 20141107 and 20150204. Approved by: jkim Relnotes: yes [kib] MFC r280797: Make debug.vmem_check a tunable. It is useful to set it early. [kib] MFC r280323: Somewhat modernize the SysV shm code. MFC r280325 (by cognet): Fix warning for !MAC case. [kib] MFC r278697 (by alc): Preset the object's color, or alignment, to maximize superpage usage. [kib] MFC r258056 (by alc): Eliminate the gratuitous use of mmap(2) flags from the implementation of kern_shmat(). Use a simpler approach to determine whether to pass VMFS_NO_SPACE or VMFS_OPTIMAL_SPACE to vm_map_find(). [bdrewery] MFC r280179,r280180: r280179: Add LIB_CXX so that C++ libraries will use CXX to link. This adds some extra dependencies directly to Makefile.inc1 as atf is still a prebuild library in stable/10. If r273449 is MFCd these can come out. r280180: Document LIB and LIB_CXX. [bdrewery] MFC r280870: Fix --one-file-system to include the directory encountered rather than excluding it. This was broken in 3.0.4 (r238856). Relnotes: yes [bdrewery] MFC r280178: Unhide linker line for libraries. [bdrewery] MFC r280177: Remove unneeded handling of undefined NM. [bdrewery] MFC r278600: Correct and clarify comment for __SMBF. [bdrewery] MFC r278530: When catopen(3) returns an error, it caches the result of that error from r202992. The refcount on the cache entry is not initialized, so any attempt to clean the cache will skip over this item since it likely has a >0 value. This change is currently a NOP. [bdrewery] MFC r272291: Document [EPERM] for UNIX sockets. [alc] MFC r279720 Correct a typo in vm_object_backing_scan() that originated in r254141. Specifically, change a lock acquire into a lock release. ------------------------------------------ [...truncated 50411 lines...] --- obj --- --- sbin.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sbin/pfctl created for /builds/FreeBSD_stable_10/sbin/pfctl --- obj_subdir_pflogd --- --- lib.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/lib/clang/libllvmpowerpcinstprinter created for /builds/FreeBSD_stable_10/lib/clang/libllvmpowerpcinstprinter --- sbin.obj__D --- ===> sbin/pflogd (obj) --- lib.obj__D --- --- obj_subdir_libllvmsparcasmparser --- ===> lib/clang/libllvmsparcasmparser (obj) --- share.obj__D --- --- obj --- --- sys.obj__D --- --- obj --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/cdboot created for /builds/FreeBSD_stable_10/sys/boot/i386/cdboot --- share.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/share/doc/psd/26.rpcrfc created for /builds/FreeBSD_stable_10/share/doc/psd/26.rpcrfc ===> share/doc/psd/27.nfsrpc (obj) --- sys.obj__D --- ===> sys/boot/i386/gptboot (obj) --- sbin.obj__D --- --- obj --- --- lib.obj__D --- --- obj --- --- share.obj__D --- --- obj --- --- lib.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/lib/clang/libllvmsparcasmparser created for /builds/FreeBSD_stable_10/lib/clang/libllvmsparcasmparser --- sys.obj__D --- --- obj --- --- lib.obj__D --- --- obj_subdir_libllvmsparccodegen --- --- sbin.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sbin/pflogd created for /builds/FreeBSD_stable_10/sbin/pflogd --- share.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/share/doc/psd/27.nfsrpc created for /builds/FreeBSD_stable_10/share/doc/psd/27.nfsrpc --- lib.obj__D --- ===> lib/clang/libllvmsparccodegen (obj) --- sys.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/gptboot created for /builds/FreeBSD_stable_10/sys/boot/i386/gptboot --- sbin.obj__D --- --- obj_subdir_ping --- --- sys.obj__D --- ===> sys/boot/i386/kgzldr (obj) --- share.obj__D --- ===> share/doc/smm (obj) --- sbin.obj__D --- ===> sbin/ping (obj) --- share.obj__D --- --- _sub.obj --- ===> share/doc/smm/title (obj) --- sbin.obj__D --- --- obj --- --- sys.obj__D --- --- obj --- --- lib.obj__D --- --- obj --- --- sys.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/kgzldr created for /builds/FreeBSD_stable_10/sys/boot/i386/kgzldr --- sbin.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sbin/ping created for /builds/FreeBSD_stable_10/sbin/ping --- lib.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/lib/clang/libllvmsparccodegen created for /builds/FreeBSD_stable_10/lib/clang/libllvmsparccodegen --- sys.obj__D --- ===> sys/boot/i386/libi386 (obj) --- lib.obj__D --- --- obj_subdir_libllvmsparcdesc --- --- sbin.obj__D --- --- obj_subdir_ping6 --- ===> sbin/ping6 (obj) --- lib.obj__D --- ===> lib/clang/libllvmsparcdesc (obj) --- share.obj__D --- --- obj --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/share/doc/smm/title created for /builds/FreeBSD_stable_10/share/doc/smm/title --- sys.obj__D --- --- obj --- --- share.obj__D --- ===> share/doc/smm/contents (obj) --- sys.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/libi386 created for /builds/FreeBSD_stable_10/sys/boot/i386/libi386 ===> sys/boot/i386/libfirewire (obj) --- sbin.obj__D --- --- obj --- --- lib.obj__D --- --- obj --- --- sbin.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sbin/ping6 created for /builds/FreeBSD_stable_10/sbin/ping6 --- lib.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/lib/clang/libllvmsparcdesc created for /builds/FreeBSD_stable_10/lib/clang/libllvmsparcdesc --- sbin.obj__D --- --- obj_subdir_quotacheck --- ===> sbin/quotacheck (obj) --- lib.obj__D --- --- obj_subdir_libllvmsparcdisassembler --- ===> lib/clang/libllvmsparcdisassembler (obj) --- share.obj__D --- --- obj --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/share/doc/smm/contents created for /builds/FreeBSD_stable_10/share/doc/smm/contents ===> share/doc/smm/01.setup (obj) --- sys.obj__D --- --- obj --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/libfirewire created for /builds/FreeBSD_stable_10/sys/boot/i386/libfirewire ===> sys/boot/i386/loader (obj) --- sbin.obj__D --- --- obj --- --- lib.obj__D --- --- obj --- --- sbin.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sbin/quotacheck created for /builds/FreeBSD_stable_10/sbin/quotacheck --- share.obj__D --- --- obj --- --- lib.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/lib/clang/libllvmsparcdisassembler created for /builds/FreeBSD_stable_10/lib/clang/libllvmsparcdisassembler --- share.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/share/doc/smm/01.setup created for /builds/FreeBSD_stable_10/share/doc/smm/01.setup --- sbin.obj__D --- --- obj_subdir_rcorder --- --- lib.obj__D --- --- obj_subdir_libllvmsparcinfo --- --- share.obj__D --- ===> share/doc/smm/02.config (obj) --- sbin.obj__D --- ===> sbin/rcorder (obj) --- lib.obj__D --- ===> lib/clang/libllvmsparcinfo (obj) --- sys.obj__D --- --- obj --- --- sbin.obj__D --- --- obj --- --- sys.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/loader created for /builds/FreeBSD_stable_10/sys/boot/i386/loader ===> sys/boot/i386/pxeldr (obj) --- sbin.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sbin/rcorder created for /builds/FreeBSD_stable_10/sbin/rcorder --- share.obj__D --- --- obj --- --- sbin.obj__D --- --- obj_subdir_reboot --- --- share.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/share/doc/smm/02.config created for /builds/FreeBSD_stable_10/share/doc/smm/02.config --- sbin.obj__D --- ===> sbin/reboot (obj) --- lib.obj__D --- --- obj --- --- share.obj__D --- ===> share/doc/smm/03.fsck (obj) --- lib.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/lib/clang/libllvmsparcinfo created for /builds/FreeBSD_stable_10/lib/clang/libllvmsparcinfo --- obj_subdir_libllvmsparcinstprinter --- ===> lib/clang/libllvmsparcinstprinter (obj) --- sys.obj__D --- --- obj --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/pxeldr created for /builds/FreeBSD_stable_10/sys/boot/i386/pxeldr ===> sys/boot/i386/zfsboot (obj) --- sbin.obj__D --- --- obj --- --- share.obj__D --- --- obj --- --- sbin.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sbin/reboot created for /builds/FreeBSD_stable_10/sbin/reboot --- share.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/share/doc/smm/03.fsck created for /builds/FreeBSD_stable_10/share/doc/smm/03.fsck --- sbin.obj__D --- --- obj_subdir_recoverdisk --- ===> sbin/recoverdisk (obj) --- share.obj__D --- ===> share/doc/smm/04.quotas (obj) --- lib.obj__D --- --- obj --- --- sys.obj__D --- --- obj --- --- lib.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/lib/clang/libllvmsparcinstprinter created for /builds/FreeBSD_stable_10/lib/clang/libllvmsparcinstprinter --- sys.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/zfsboot created for /builds/FreeBSD_stable_10/sys/boot/i386/zfsboot --- lib.obj__D --- --- obj_subdir_libllvmx86asmparser --- --- sys.obj__D --- ===> sys/boot/i386/gptzfsboot (obj) --- lib.obj__D --- ===> lib/clang/libllvmx86asmparser (obj) --- share.obj__D --- --- obj --- --- sbin.obj__D --- --- obj --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sbin/recoverdisk created for /builds/FreeBSD_stable_10/sbin/recoverdisk --- share.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/share/doc/smm/04.quotas created for /builds/FreeBSD_stable_10/share/doc/smm/04.quotas ===> share/doc/smm/05.fastfs (obj) --- sbin.obj__D --- --- obj_subdir_resolvconf --- ===> sbin/resolvconf (obj) --- sys.obj__D --- --- obj --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/gptzfsboot created for /builds/FreeBSD_stable_10/sys/boot/i386/gptzfsboot ===> sys/boot/i386/zfsloader (obj) --- share.obj__D --- --- obj --- --- lib.obj__D --- --- obj --- --- sbin.obj__D --- --- obj --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sbin/resolvconf created for /builds/FreeBSD_stable_10/sbin/resolvconf --- lib.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/lib/clang/libllvmx86asmparser created for /builds/FreeBSD_stable_10/lib/clang/libllvmx86asmparser --- share.obj__D --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/share/doc/smm/05.fastfs created for /builds/FreeBSD_stable_10/share/doc/smm/05.fastfs --- sbin.obj__D --- --- obj_subdir_restore --- --- share.obj__D --- ===> share/doc/smm/06.nfs (obj) --- lib.obj__D --- --- obj_subdir_libllvmx86codegen --- ===> lib/clang/libllvmx86codegen (obj) --- sbin.obj__D --- ===> sbin/restore (obj) --- sys.obj__D --- --- obj --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sys/boot/i386/zfsloader created for /builds/FreeBSD_stable_10/sys/boot/i386/zfsloader --- sbin.obj__D --- --- obj_subdir_route --- --- obj_subdir_restore --- --- obj --- /builds/FreeBSD_stable_10/obj/builds/FreeBSD_stable_10/sbin/restore created for /builds/FreeBSD_stable_10/sbin/restore Slave went offline during the build Build step 'Execute shell' marked build as failure FATAL: channel is already closed hudson.remoting.ChannelClosedException: channel is already closed at hudson.remoting.Channel.send(Channel.java:550) at hudson.remoting.Request.call(Request.java:129) at hudson.remoting.Channel.call(Channel.java:752) at hudson.Launcher$RemoteLauncher.kill(Launcher.java:941) at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:542) at hudson.model.Run.execute(Run.java:1751) at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43) at hudson.model.ResourceController.execute(ResourceController.java:89) at hudson.model.Executor.run(Executor.java:240) Caused by: java.io.IOException: Unexpected termination of the channel at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:50) Caused by: java.io.EOFException at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2325) at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:2794) at java.io.ObjectInputStream.readStreamHeader(ObjectInputStream.java:801) at java.io.ObjectInputStream.(ObjectInputStream.java:299) at hudson.remoting.ObjectInputStreamEx.(ObjectInputStreamEx.java:40) at hudson.remoting.AbstractSynchronousByteArrayCommandTransport.read(AbstractSynchronousByteArrayCommandTransport.java:34) at hudson.remoting.SynchronousCommandTransport$ReaderThread.run(SynchronousCommandTransport.java:48) From owner-freebsd-stable@FreeBSD.ORG Sun Apr 5 04:00:10 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 88051AE7; Sun, 5 Apr 2015 04:00:10 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id 71339E9; Sun, 5 Apr 2015 04:00:10 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id A79D47F6; Sun, 5 Apr 2015 04:00:09 +0000 (UTC) Date: Sun, 5 Apr 2015 04:00:09 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-stable@freebsd.org Message-ID: <389371408.3.1428206409103.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: FreeBSD_stable_8 #244 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: FreeBSD_stable_8 X-Jenkins-Result: FAILURE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2015 04:00:10 -0000 See ------------------------------------------ [...truncated 6591 lines...] AU sys/dev/ep/if_epvar.h AU sys/dev/ep/if_ep.c AU sys/dev/ep/if_ep_mca.c AU sys/dev/ep/if_ep_eisa.c AU sys/dev/ep/if_epreg.h A sys/dev/mvs AU sys/dev/mvs/mvs_soc.c AU sys/dev/mvs/mvs.h AU sys/dev/mvs/mvs_if.m AU sys/dev/mvs/mvs_pci.c AU sys/dev/mvs/mvs.c A sys/dev/spibus AU sys/dev/spibus/spibus.c AU sys/dev/spibus/spibus_if.m AU sys/dev/spibus/spi.h AU sys/dev/spibus/spibusvar.h A sys/dev/ichsmb AU sys/dev/ichsmb/ichsmb_pci.c AU sys/dev/ichsmb/ichsmb_var.h AU sys/dev/ichsmb/ichsmb.c AU sys/dev/ichsmb/ichsmb_reg.h A sys/dev/oce AU sys/dev/oce/oce_sysctl.c AU sys/dev/oce/oce_hw.h AU sys/dev/oce/oce_if.h AU sys/dev/oce/oce_queue.c AU sys/dev/oce/oce_mbox.c AU sys/dev/oce/oce_util.c AU sys/dev/oce/oce_hw.c AU sys/dev/oce/oce_if.c A sys/dev/agp AU sys/dev/agp/agp_ati.c AU sys/dev/agp/agp_sis.c AU sys/dev/agp/agpvar.h AU sys/dev/agp/agp_via.c AU sys/dev/agp/agp.c AU sys/dev/agp/agp_amd.c AU sys/dev/agp/agp_i810.c AU sys/dev/agp/agpreg.h AU sys/dev/agp/agp_ali.c AU sys/dev/agp/agppriv.h AU sys/dev/agp/agp_if.m AU sys/dev/agp/agp_nvidia.c AU sys/dev/agp/agp_amd64.c AU sys/dev/agp/agp_intel.c A sys/dev/siis AU sys/dev/siis/siis.h AU sys/dev/siis/siis.c A sys/dev/scc AU sys/dev/scc/scc_bfe_macio.c AU sys/dev/scc/scc_dev_sab82532.c AU sys/dev/scc/scc_dev_z8530.c AU sys/dev/scc/scc_bfe_sbus.c AU sys/dev/scc/scc_core.c AU sys/dev/scc/scc_if.m AU sys/dev/scc/scc_bfe_ebus.c AU sys/dev/scc/scc_bus.h AU sys/dev/scc/scc_bfe_quicc.c AU sys/dev/scc/scc_bfe.h AU sys/dev/scc/scc_dev_quicc.c A sys/dev/mge AU sys/dev/mge/if_mgevar.h AU sys/dev/mge/if_mge.c A sys/dev/et AU sys/dev/et/if_etvar.h AU sys/dev/et/if_et.c AU sys/dev/et/if_etreg.h A sys/dev/scd AU sys/dev/scd/scd_isa.c AU sys/dev/scd/scdvar.h AU sys/dev/scd/scd.c AU sys/dev/scd/scdreg.h A sys/dev/pccbb AU sys/dev/pccbb/pccbb_pci.c AU sys/dev/pccbb/pccbb_isa.c AU sys/dev/pccbb/pccbbvar.h AU sys/dev/pccbb/pccbb.c AU sys/dev/pccbb/pccbbdevid.h AU sys/dev/pccbb/pccbbreg.h A sys/dev/mn AU sys/dev/mn/if_mn.c A sys/dev/txp AU sys/dev/txp/3c990img.h AU sys/dev/txp/if_txp.c AU sys/dev/txp/if_txpreg.h A sys/dev/jme AU sys/dev/jme/if_jmevar.h AU sys/dev/jme/if_jme.c AU sys/dev/jme/if_jmereg.h A sys/dev/digi AU sys/dev/digi/CX_PCI.c AU sys/dev/digi/CX_PCI.bios.h AU sys/dev/digi/digi_pci.c AU sys/dev/digi/digi_isa.c AU sys/dev/digi/Xr.fepos.h AU sys/dev/digi/Xem.fepos.h AU sys/dev/digi/CX.bios.h AU sys/dev/digi/CX.c AU sys/dev/digi/EPCX_PCI.fepos.h AU sys/dev/digi/digi_pci.h AU sys/dev/digi/digi.c AU sys/dev/digi/Xe.bios.h AU sys/dev/digi/Xe.c AU sys/dev/digi/digireg.h AU sys/dev/digi/EPCX.fepos.h AU sys/dev/digi/digi_mod.h AU sys/dev/digi/digi.h AU sys/dev/digi/CX_PCI.fepos.h AU sys/dev/digi/Xem.bios.h AU sys/dev/digi/Xem.c AU sys/dev/digi/Xr.bios.h AU sys/dev/digi/Xr.c AU sys/dev/digi/EPCX_PCI.c AU sys/dev/digi/EPCX_PCI.bios.h AU sys/dev/digi/CX.fepos.h AU sys/dev/digi/Xe.fepos.h AU sys/dev/digi/EPCX.c AU sys/dev/digi/EPCX.bios.h A sys/dev/ex AU sys/dev/ex/if_ex_isa.c AU sys/dev/ex/if_ex_pccard.c AU sys/dev/ex/if_exvar.h AU sys/dev/ex/if_ex.c AU sys/dev/ex/if_exreg.h A sys/dev/siba AU sys/dev/siba/siba_cc.c AU sys/dev/siba/siba_bwn.c AU sys/dev/siba/siba_core.c AU sys/dev/siba/siba_pcibvar.h AU sys/dev/siba/siba_pcib.c AU sys/dev/siba/sibavar.h AU sys/dev/siba/siba.c AU sys/dev/siba/sibareg.h AU sys/dev/siba/siba_ids.h A sys/dev/my AU sys/dev/my/if_my.c AU sys/dev/my/if_myreg.h A sys/dev/fb AU sys/dev/fb/vga.c AU sys/dev/fb/vgareg.h AU sys/dev/fb/machfb.c AU sys/dev/fb/s3_pci.c AU sys/dev/fb/gallant12x22.c AU sys/dev/fb/machfbreg.h AU sys/dev/fb/fb.c AU sys/dev/fb/splash_bmp.c AU sys/dev/fb/boot_font.c AU sys/dev/fb/splash_txt.c AU sys/dev/fb/fbreg.h AU sys/dev/fb/splash.c AU sys/dev/fb/splashreg.h AU sys/dev/fb/vesa.c AU sys/dev/fb/creator.c AU sys/dev/fb/creatorreg.h AU sys/dev/fb/gfb.h AU sys/dev/fb/vesa.h AU sys/dev/fb/splash_pcx.c A sys/dev/malo AU sys/dev/malo/if_malohal.h AU sys/dev/malo/if_malo_pci.c AU sys/dev/malo/if_malo.c AU sys/dev/malo/if_maloioctl.h AU sys/dev/malo/if_malo.h AU sys/dev/malo/if_malohal.c A sys/dev/iwi AU sys/dev/iwi/if_iwivar.h AU sys/dev/iwi/if_iwi.c AU sys/dev/iwi/if_iwireg.h A sys/dev/pbio AU sys/dev/pbio/pbioio.h AU sys/dev/pbio/pbio.c A sys/dev/aha AU sys/dev/aha/ahareg.h AU sys/dev/aha/aha_isa.c AU sys/dev/aha/aha.c AU sys/dev/aha/aha_mca.c A sys/dev/ahb AU sys/dev/ahb/ahb.c AU sys/dev/ahb/ahbreg.h A sys/dev/fe AU sys/dev/fe/mb86960.h AU sys/dev/fe/if_fe_cbus.c AU sys/dev/fe/if_fe_isa.c AU sys/dev/fe/if_fe_pccard.c AU sys/dev/fe/if_fevar.h ERROR: Failed to check out svn://svn.freebsd.org/base/stable/8 org.tmatesoft.svn.core.SVNException: svn: E200030: There are unfinished transactions detected in ' at org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:64) at org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:51) at org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot.ensureNoUnfinishedTransactions(SVNWCDbRoot.java:177) at org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb.ensureNoUnfinishedTransactions(SVNWCDb.java:209) at org.tmatesoft.svn.core.internal.wc17.SVNWCContext.ensureNoUnfinishedTransactions(SVNWCContext.java:5147) at org.tmatesoft.svn.core.wc2.SvnOperationFactory.releaseWcContext(SvnOperationFactory.java:1283) at org.tmatesoft.svn.core.wc2.SvnOperationFactory.run(SvnOperationFactory.java:1273) at org.tmatesoft.svn.core.wc2.SvnOperation.run(SvnOperation.java:294) at hudson.scm.subversion.CheckoutUpdater$1.perform(CheckoutUpdater.java:115) at hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:162) at hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:170) at hudson.scm.subversion.UpdateUpdater$TaskImpl.perform(UpdateUpdater.java:133) at hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:162) at hudson.scm.SubversionSCM$CheckOutTask.perform(SubversionSCM.java:991) at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:972) at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:948) at hudson.FilePath.act(FilePath.java:989) at hudson.FilePath.act(FilePath.java:967) at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:897) at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:833) at hudson.scm.SCM.checkout(SCM.java:484) at hudson.model.AbstractProject.checkout(AbstractProject.java:1270) at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:609) at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86) at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:531) at hudson.model.Run.execute(Run.java:1751) at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43) at hudson.model.ResourceController.execute(ResourceController.java:89) at hudson.model.Executor.run(Executor.java:240) java.io.IOException: Failed to check out svn://svn.freebsd.org/base/stable/8 at hudson.scm.subversion.CheckoutUpdater$1.perform(CheckoutUpdater.java:126) at hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:162) at hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:170) at hudson.scm.subversion.UpdateUpdater$TaskImpl.perform(UpdateUpdater.java:133) at hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:162) at hudson.scm.SubversionSCM$CheckOutTask.perform(SubversionSCM.java:991) at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:972) at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:948) at hudson.FilePath.act(FilePath.java:989) at hudson.FilePath.act(FilePath.java:967) at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:897) at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:833) at hudson.scm.SCM.checkout(SCM.java:484) at hudson.model.AbstractProject.checkout(AbstractProject.java:1270) at hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:609) at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86) at hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:531) at hudson.model.Run.execute(Run.java:1751) at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43) at hudson.model.ResourceController.execute(ResourceController.java:89) at hudson.model.Executor.run(Executor.java:240) Caused by: org.tmatesoft.svn.core.SVNException: svn: E200030: There are unfinished transactions detected in ' at org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:64) at org.tmatesoft.svn.core.internal.wc.SVNErrorManager.error(SVNErrorManager.java:51) at org.tmatesoft.svn.core.internal.wc17.db.SVNWCDbRoot.ensureNoUnfinishedTransactions(SVNWCDbRoot.java:177) at org.tmatesoft.svn.core.internal.wc17.db.SVNWCDb.ensureNoUnfinishedTransactions(SVNWCDb.java:209) at org.tmatesoft.svn.core.internal.wc17.SVNWCContext.ensureNoUnfinishedTransactions(SVNWCContext.java:5147) at org.tmatesoft.svn.core.wc2.SvnOperationFactory.releaseWcContext(SvnOperationFactory.java:1283) at org.tmatesoft.svn.core.wc2.SvnOperationFactory.run(SvnOperationFactory.java:1273) at org.tmatesoft.svn.core.wc2.SvnOperation.run(SvnOperation.java:294) at hudson.scm.subversion.CheckoutUpdater$1.perform(CheckoutUpdater.java:115) ... 20 more From owner-freebsd-stable@FreeBSD.ORG Sun Apr 5 08:26:37 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8149B65; Sun, 5 Apr 2015 08:26:37 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id D3F18CF1; Sun, 5 Apr 2015 08:26:37 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 1F66289B; Sun, 5 Apr 2015 08:26:37 +0000 (UTC) Date: Sun, 5 Apr 2015 08:26:36 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-stable@freebsd.org Message-ID: <1550307576.0.1428222396606.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Jenkins build is back to normal : FreeBSD_stable_8 #245 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: FreeBSD_stable_8 X-Jenkins-Result: SUCCESS X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2015 08:26:38 -0000 See From owner-freebsd-stable@FreeBSD.ORG Sun Apr 5 09:51:02 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1CF8B7F; Sun, 5 Apr 2015 09:51:02 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id A316E647; Sun, 5 Apr 2015 09:51:02 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id 51CA88D0; Sun, 5 Apr 2015 09:51:02 +0000 (UTC) Date: Sun, 5 Apr 2015 09:51:00 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-stable@freebsd.org, mav@FreeBSD.org, dim@FreeBSD.org, alc@FreeBSD.org, kib@FreeBSD.org, bdrewery@FreeBSD.org Message-ID: <144542972.2.1428227461352.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <1103583768.0.1428206243976.JavaMail.jenkins@jenkins-9.freebsd.org> References: <1103583768.0.1428206243976.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Build failed in Jenkins: FreeBSD_stable_10 #1336 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: FAILURE X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2015 09:51:03 -0000 See Changes: [mav] MFC r280822: Some cosmetic polishing. No functional change. ------------------------------------------ [...truncated 128050 lines...] --- tests.depend__D --- --- scripts.depend --- (cd && make -f SUBDIR= _RECURSING_PROGS= depend) --- sbin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -I -I -std=gnu99 --- tests.depend__D --- ===> tests/sys/pjdfstest/tests/open (depend) --- scripts.depend --- (cd && make -f SUBDIR= _RECURSING_PROGS= depend) --- sbin.depend__D --- echo mount_udf: >> .depend --- depend_subdir_mount_unionfs --- ===> sbin/mount_unionfs (depend) --- tests.depend__D --- ===> tests/sys/pjdfstest/tests/rename (depend) --- sbin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -I -std=gnu99 --- tests.depend__D --- --- scripts.depend --- (cd && make -f SUBDIR= _RECURSING_PROGS= depend) ===> tests/sys/pjdfstest/tests/rmdir (depend) --- sbin.depend__D --- echo mount_unionfs: >> .depend --- depend_subdir_natd --- ===> sbin/natd (depend) --- tests.depend__D --- --- scripts.depend --- (cd && make -f SUBDIR= _RECURSING_PROGS= depend) --- sbin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 --- tests.depend__D --- ===> tests/sys/pjdfstest/tests/symlink (depend) --- scripts.depend --- (cd && make -f SUBDIR= _RECURSING_PROGS= depend) --- sbin.depend__D --- echo natd: >> .depend --- tests.depend__D --- ===> tests/sys/pjdfstest/tests/truncate (depend) --- sbin.depend__D --- --- depend_subdir_newfs --- ===> sbin/newfs (depend) --- tests.depend__D --- --- scripts.depend --- (cd && make -f SUBDIR= _RECURSING_PROGS= depend) --- sbin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 --- tests.depend__D --- ===> tests/sys/pjdfstest/tests/unlink (depend) --- scripts.depend --- --- usr.sbin.depend__D --- echo acpidb: >> .depend --- tests.depend__D --- (cd && make -f SUBDIR= _RECURSING_PROGS= depend) --- usr.sbin.depend__D --- ===> usr.sbin/acpi/acpidump (depend) --- tests.depend__D --- ===> tests/sys/kern (depend) --- usr.sbin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -I -std=gnu99 --- sbin.depend__D --- echo newfs: >> .depend --- depend_subdir_newfs_msdos --- ===> sbin/newfs_msdos (depend) --- tests.depend__D --- (cd && make -f _RECURSING_PROGS= SUBDIR= PROG=unix_seqpacket_test DEPENDFILE=.depend.unix_seqpacket_test .MAKE.DEPENDFILE=.depend.unix_seqpacket_test depend) --- sbin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 --- tests.depend__D --- --- .depend.unix_seqpacket_test --- rm -f .depend.unix_seqpacket_test CC='cc ' mkdep -f .depend.unix_seqpacket_test -a -std=gnu99 --- sbin.depend__D --- echo newfs_msdos: >> .depend --- depend_subdir_nfsiod --- ===> sbin/nfsiod (depend) --- tests.depend__D --- echo unix_seqpacket_test: >> .depend.unix_seqpacket_test ===> tests/sys/netinet (depend) --- usr.sbin.depend__D --- echo acpidump: >> .depend --- sbin.depend__D --- --- .depend --- --- usr.sbin.depend__D --- ===> usr.sbin/acpi/iasl (depend) --- sbin.depend__D --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 --- tests.depend__D --- (cd && make -f _RECURSING_PROGS= SUBDIR= PROG=udp_dontroute DEPENDFILE=.depend.udp_dontroute .MAKE.DEPENDFILE=.depend.udp_dontroute depend) --- .depend.udp_dontroute --- --- sbin.depend__D --- echo nfsiod: >> .depend --- tests.depend__D --- rm -f .depend.udp_dontroute CC='cc ' mkdep -f .depend.udp_dontroute -a -std=gnu99 --- sbin.depend__D --- --- depend_subdir_nos-tun --- ===> sbin/nos-tun (depend) --- usr.sbin.depend__D --- --- aslcompilerlex.c --- lex -i -s -PAslCompiler -oaslcompilerlex.c --- sbin.depend__D --- --- .depend --- rm -f .depend --- tests.depend__D --- echo udp_dontroute: >> .depend.udp_dontroute --- sbin.depend__D --- CC='cc ' mkdep -f .depend -a -std=gnu99 --- usr.sbin.depend__D --- --- aslcompiler.y --- m4 -P -I > aslcompiler.y --- depend_subdir_adduser --- --- sbin.depend__D --- echo nos-tun: >> .depend --- usr.sbin.depend__D --- ===> usr.sbin/adduser (depend) --- sbin.depend__D --- --- depend_subdir_nvmecontrol --- ===> sbin/nvmecontrol (depend) --- depend_subdir_pfctl --- ===> sbin/pfctl (depend) --- depend_subdir_nvmecontrol --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -std=gnu99 --- depend_subdir_pfctl --- --- parse.c --- yacc -o parse.c --- usr.sbin.depend__D --- --- depend_subdir_acpi --- --- dtparserlex.c --- lex -i -s -PDtParser -odtparserlex.c --- dtparserparse.c --- yacc -d -pDtParser -odtparserparse.c --- sbin.depend__D --- --- .depend --- rm -f .depend CC='cc ' mkdep -f .depend -a -DENABLE_ALTQ -I -DWITH_INET6 -DWITH_INET -std=gnu99 parse.c --- usr.sbin.depend__D --- --- prparserlex.c --- lex -i -s -PPrParser -oprparserlex.c --- prparserparse.c --- yacc -d -pPrParser -oprparserparse.c --- aslcompilerparse.c --- yacc -d -pAslCompiler -oaslcompilerparse.c aslcompiler.y yacc: 89 shift/reduce conflicts. --- sbin.depend__D --- --- depend_subdir_nvmecontrol --- echo nvmecontrol: >> .depend --- usr.sbin.depend__D --- --- dtparser.y.h --- ln -f dtparserparse.h dtparser.y.h --- depend_subdir_amd --- ===> usr.sbin/amd (depend) --- depend_subdir_acpi --- --- aslcompilerparse.c --- yacc: f - maximum table size exceeded *** [aslcompilerparse.c] Error code 2 make[5]: stopped in 1 error make[5]: stopped in *** [_sub.depend] Error code 2 make[4]: stopped in 1 error make[4]: stopped in *** [depend_subdir_acpi] Error code 2 make[3]: stopped in --- depend_subdir_amd --- A failure has been detected in another branch of the parallel make make[4]: stopped in *** [depend_subdir_amd] Error code 2 make[3]: stopped in 2 errors make[3]: stopped in *** [usr.sbin.depend__D] Error code 2 make[2]: stopped in --- sbin.depend__D --- --- depend_subdir_pfctl --- echo pfctl: >> .depend A failure has been detected in another branch of the parallel make make[4]: stopped in *** [depend_subdir_pfctl] Error code 2 make[3]: stopped in 1 error make[3]: stopped in *** [sbin.depend__D] Error code 2 make[2]: stopped in --- usr.bin.depend__D --- echo tblgen: >> .depend echo tblgen: >> .depend A failure has been detected in another branch of the parallel make make[5]: stopped in *** [depend_subdir_tblgen] Error code 2 make[4]: stopped in 1 error make[4]: stopped in *** [depend_subdir_clang] Error code 2 make[3]: stopped in 1 error make[3]: stopped in *** [usr.bin.depend__D] Error code 2 make[2]: stopped in 3 errors make[2]: stopped in *** [_depend] Error code 2 make[1]: stopped in 1 error make[1]: stopped in *** [buildworld] Error code 2 make: stopped in 1 error make: stopped in Build step 'Execute shell' marked build as failure From owner-freebsd-stable@FreeBSD.ORG Sun Apr 5 11:46:01 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 04657277; Sun, 5 Apr 2015 11:46:01 +0000 (UTC) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "tensor.andric.com", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B298D133; Sun, 5 Apr 2015 11:46:00 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7::ad2b:8d8e:bb8:c23a] (unknown [IPv6:2001:7b8:3a7:0:ad2b:8d8e:bb8:c23a]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 6C7AC5C2E; Sun, 5 Apr 2015 13:45:50 +0200 (CEST) Subject: Re: Build failed in Jenkins: FreeBSD_stable_10 #1336 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2070.6\)) Content-Type: multipart/signed; boundary="Apple-Mail=_9AAC0297-7FA9-4809-B28F-E1BAC7E42F68"; protocol="application/pgp-signature"; micalg=pgp-sha1 X-Pgp-Agent: GPGMail 2.5b6 From: Dimitry Andric In-Reply-To: <144542972.2.1428227461352.JavaMail.jenkins@jenkins-9.freebsd.org> Date: Sun, 5 Apr 2015 13:45:38 +0200 Message-Id: <8A872461-064A-4272-8FE0-955EBE79B49F@FreeBSD.org> References: <1103583768.0.1428206243976.JavaMail.jenkins@jenkins-9.freebsd.org> <144542972.2.1428227461352.JavaMail.jenkins@jenkins-9.freebsd.org> To: jenkins-admin@freebsd.org X-Mailer: Apple Mail (2.2070.6) Cc: FreeBSD stable X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2015 11:46:01 -0000 --Apple-Mail=_9AAC0297-7FA9-4809-B28F-E1BAC7E42F68 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii On 05 Apr 2015, at 11:51, jenkins-admin@freebsd.org wrote: >=20 > See ... > --- aslcompilerparse.c --- > yacc -d -pAslCompiler -oaslcompilerparse.c aslcompiler.y > yacc: 89 shift/reduce conflicts. > --- sbin.depend__D --- > --- depend_subdir_nvmecontrol --- > echo nvmecontrol: = >> .depend > --- usr.sbin.depend__D --- > --- dtparser.y.h --- > ln -f dtparserparse.h dtparser.y.h > --- depend_subdir_amd --- > =3D=3D=3D> usr.sbin/amd (depend) > --- depend_subdir_acpi --- > --- aslcompilerparse.c --- > yacc: f - maximum table size exceeded > *** [aslcompilerparse.c] Error code 2 Strangely, this worked fine for me when making a universe on our reference stable/10 machine. Is this particular Jenkins slave still at FreeBSD 10.1-RELEASE? I suspect that it is missing r277086, which increases yacc's MAXTABLE. -Dimitry --Apple-Mail=_9AAC0297-7FA9-4809-B28F-E1BAC7E42F68 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.27 iEYEARECAAYFAlUhIG0ACgkQsF6jCi4glqNB0QCg6xM3cyiWvBr4+o01pRgVrqk4 hGQAoLf9xS4PcWsdA40IiorS8bDmmkjW =Nh5f -----END PGP SIGNATURE----- --Apple-Mail=_9AAC0297-7FA9-4809-B28F-E1BAC7E42F68-- From owner-freebsd-stable@FreeBSD.ORG Sun Apr 5 23:00:50 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE015822; Sun, 5 Apr 2015 23:00:50 +0000 (UTC) Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209]) by mx1.freebsd.org (Postfix) with ESMTP id B6150A8A; Sun, 5 Apr 2015 23:00:50 +0000 (UTC) Received: from jenkins-9.freebsd.org (localhost [127.0.0.1]) by jenkins-9.freebsd.org (Postfix) with ESMTP id DC48AA8C; Sun, 5 Apr 2015 23:00:50 +0000 (UTC) Date: Sun, 5 Apr 2015 23:00:47 +0000 (GMT) From: jenkins-admin@freebsd.org To: jenkins-admin@FreeBSD.org, freebsd-stable@freebsd.org, kib@FreeBSD.org, mav@FreeBSD.org, alc@FreeBSD.org, dim@FreeBSD.org, bdrewery@FreeBSD.org Message-ID: <504325256.0.1428274848083.JavaMail.jenkins@jenkins-9.freebsd.org> In-Reply-To: <144542972.2.1428227461352.JavaMail.jenkins@jenkins-9.freebsd.org> References: <144542972.2.1428227461352.JavaMail.jenkins@jenkins-9.freebsd.org> Subject: Jenkins build is back to normal : FreeBSD_stable_10 #1337 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Instance-Identity: MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAkKKb2VAfYQKfu1t7qk4nR5qzUBEI+UqT4BPec4qHVhqUy0FFdq50sMH+3y9bCDNOufctov6VqTNffZ3YXArnZK95YF0OX97fh+E9txYOUX1adc+TikcKjuYpHmL5dE62eaZTI+4A5jnRonskQ1PaoIFz0Kbu4mWzkFsmdiXTraGzomXq4cHUCATA2+K4eDYgjXEQI30z3GOMmmZ4t/+6QGk1cMb/BqMWHbn80AsRCb4tU7Hpd72XLDpsuO7YRP1Q0CjmNAuBOTj+sFiiOe6U9HpqOlQN+iFUvBdZo/ybuy5Kh71cAaYQNL68cYdZJ6binH/DkG3KY/fS7DFYAeuwjwIDAQAB X-Jenkins-Job: FreeBSD_stable_10 X-Jenkins-Result: SUCCESS X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Apr 2015 23:00:50 -0000 See From owner-freebsd-stable@FreeBSD.ORG Mon Apr 6 07:41:14 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 70BE790; Mon, 6 Apr 2015 07:41:14 +0000 (UTC) Received: from mail-la0-x22f.google.com (mail-la0-x22f.google.com [IPv6:2a00:1450:4010:c03::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E2A0C13C; Mon, 6 Apr 2015 07:41:13 +0000 (UTC) Received: by laat2 with SMTP id t2so7922544laa.1; Mon, 06 Apr 2015 00:41:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=ofD85zSgFLPkJDaKo16+rP/e6W7l4pBc9CVPNydLVl4=; b=znRxQF1FUrz157o63BZEdV4AzQakfqja+2EixSK6O0YQigOc0h0YqEWqY6oHbX8/GT H37nxI2b7wh4dCIuJj6l6HWwVFm46v/7L8PIgwKdy7IJRadXF0TbO98g2aQUS3vt83nu IiXmEPW4vS0MqCrw0rlu6PQjijtp5q6gvEGz3eMcioshY4pmBW3PmU6Xxn3Vn5Ch8T6G B2Y2sndsG9hp+Ft7b6xQLN/XkvH8OTiD51I3cnD15qEilxh2TQakBqNxHQrseQ3xvSlH svDqYPDFAGf3WIwBKkidKHcGUew0ELAxDkTPHw0nLJq3ElaEIlUZNjqbqupUVWm/gmiE 45DA== MIME-Version: 1.0 X-Received: by 10.112.26.209 with SMTP id n17mr12443336lbg.84.1428306070973; Mon, 06 Apr 2015 00:41:10 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.108.168 with HTTP; Mon, 6 Apr 2015 00:41:10 -0700 (PDT) In-Reply-To: <8A872461-064A-4272-8FE0-955EBE79B49F@FreeBSD.org> References: <1103583768.0.1428206243976.JavaMail.jenkins@jenkins-9.freebsd.org> <144542972.2.1428227461352.JavaMail.jenkins@jenkins-9.freebsd.org> <8A872461-064A-4272-8FE0-955EBE79B49F@FreeBSD.org> Date: Mon, 6 Apr 2015 00:41:10 -0700 X-Google-Sender-Auth: UEF3c_ukP9WG1wT7UaYTpVsdLfA Message-ID: Subject: Re: Build failed in Jenkins: FreeBSD_stable_10 #1336 From: Craig Rodrigues To: Dimitry Andric Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: FreeBSD stable , "jenkins-admin@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Apr 2015 07:41:14 -0000 On Sun, Apr 5, 2015 at 4:45 AM, Dimitry Andric wrote: > > --- aslcompilerparse.c --- > > yacc: f - maximum table size exceeded > > *** [aslcompilerparse.c] Error code 2 > > Strangely, this worked fine for me when making a universe on our > reference stable/10 machine. Is this particular Jenkins slave still at > FreeBSD 10.1-RELEASE? > Yes, that's right. > > I suspect that it is missing r277086, which increases yacc's MAXTABLE. > > -Dimitry > > From owner-freebsd-stable@FreeBSD.ORG Mon Apr 6 08:55:27 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98D2C2E8 for ; Mon, 6 Apr 2015 08:55:27 +0000 (UTC) Received: from onlyone.friendlyhosting.spb.ru (onlyone.friendlyhosting.spb.ru [IPv6:2a01:4f8:131:60a2::2]) by mx1.freebsd.org (Postfix) with ESMTP id 5BFF19CC for ; Mon, 6 Apr 2015 08:55:27 +0000 (UTC) Received: from [IPv6:2001:470:923f:2:617c:73a8:3a0c:e90f] (unknown [IPv6:2001:470:923f:2:617c:73a8:3a0c:e90f]) (Authenticated sender: lev@serebryakov.spb.ru) by onlyone.friendlyhosting.spb.ru (Postfix) with ESMTPSA id 7DB7C56400 for ; Mon, 6 Apr 2015 11:55:10 +0300 (MSK) Message-ID: <552249ED.4050700@FreeBSD.org> Date: Mon, 06 Apr 2015 11:55:09 +0300 From: Lev Serebryakov Reply-To: lev@FreeBSD.org Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: 10-STABLE live locks, looks like VM-related Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Apr 2015 08:55:27 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 I got several live locks of my server in a row (3 in one week). It is amd64 10-STABLE r277307. Looks like live locks is VM related but manifest themselves under multi-threaded mixed CPU + I/O load (CrashPlan backup + torrents + openjdk8 rebuild, for example). This system doesn't have ZFS, but have several UFS2 SU+J with different block sizes (16Kb and 32Kb)! As far as I remeber several versions ago "16Kb + 64Kb" mix was a killer (known bug). but "16 + 32" works well for several years. I have INVARIANTS and WITNESS in the kernel, but it doesn't help: only report is "bufwait/dirhash" right after booting. When system hangs, I could ping it, but NFS, SMB, ssh, local console, everything else userland-related stop to answer. I could break into kernel debugger on console and "panic" manually, so I have two "crash dumps" of system in this state. Many processes are in "vmwait" or "pfault" state according to DDB's "ps" output. here are logs from two latest crashes: http://lev.serebryakov.spb.ru/freebsd/ll/ I've tested memory with memtest86 for 12 hours without errors. - -- // Lev Serebryakov AKA Black Lion -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (MingW32) iQJ8BAEBCgBmBQJVIknjXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRGOTZEMUNBMEI1RjQzMThCNjc0QjMzMEFF QUIwM0M1OEJGREM0NzhGAAoJEOqwPFi/3EeP5ZkP+QGJje5ejYvKrDS28/Dqrew8 7H07Oqh6XXHG/CPqsQts0MCSfJTjZ/XnaYM5hFARJQYBVj+nZfMyIgaUTgFp6hOd UnQ+qGYgEuTYm3uxewyPL4C6NtLTJq79Au28oz6ONIbLsl5VQIkTxJMn/40RxtQr EjqXSDc2al9s36bOidbD/ZdvuK91NaYcNH2tCvv2uNKR8SwA4LXPU+P/K3MtMDsT K5c+yI9Fb0OWmYAF7wTUgrUrJeXxWcVyTsirtBB4C4sKXFKz1RDieGvUWnVjikbP 27c+cOpGPFzf3EgqFDwER2tLXdoB/YJ4BEY87alNI+mogjNrQa+2ck4wetfUKnSS QrYKUEoQCJuskbgc2J4LKxIPGOJfYGLBIKv5QzlPcdu5hVOiwNmxn5zpaHbI8nRR ikXhHmUl5dBOJ1u+6p6fPFJ38l8Ig+vZKRPhSsft6450yftLPliPiOH43mTaAoyd dhCO0xHBbTNmt0QJEyniyBKxIEs3qYBFYFSQmZjiIXY70lP16Tea0m5r5zt9JYr6 j38IBgFL+TbK0BhwSU0479d29J7loOuIutoVbzKwpgjgu8eGZRcILjyAFonUX4EA r90Lp4WUjR7qsjyCqFLG+g8kt4Hr6oTKAbMTtscWWlst5PCUOo07j6NAOhTjj5bV XfC55FMCCuSa95UEC/5M =a3a7 -----END PGP SIGNATURE----- From owner-freebsd-stable@FreeBSD.ORG Mon Apr 6 10:16:09 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E142A417 for ; Mon, 6 Apr 2015 10:16:09 +0000 (UTC) Received: from onlyone.friendlyhosting.spb.ru (onlyone.friendlyhosting.spb.ru [46.4.40.135]) by mx1.freebsd.org (Postfix) with ESMTP id A33051AA for ; Mon, 6 Apr 2015 10:16:09 +0000 (UTC) Received: from [IPv6:2001:470:923f:2:617c:73a8:3a0c:e90f] (unknown [IPv6:2001:470:923f:2:617c:73a8:3a0c:e90f]) (Authenticated sender: lev@serebryakov.spb.ru) by onlyone.friendlyhosting.spb.ru (Postfix) with ESMTPSA id 3886856400 for ; Mon, 6 Apr 2015 13:15:52 +0300 (MSK) Message-ID: <55225CD6.6000509@FreeBSD.org> Date: Mon, 06 Apr 2015 13:15:50 +0300 From: Lev Serebryakov Reply-To: lev@FreeBSD.org Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Re: 10-STABLE live locks, looks like VM-related References: <552249ED.4050700@FreeBSD.org> In-Reply-To: <552249ED.4050700@FreeBSD.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Apr 2015 10:16:10 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 On 06.04.2015 11:55, Lev Serebryakov wrote: > I have INVARIANTS and WITNESS in the kernel, but it doesn't help: > only report is "bufwait/dirhash" right after booting. One more LOR: lock order reversal: 1st 0xfffff8011b9b82d8 ufs (ufs) @ /usr/src/sys/kern/vfs_subr.c:2157 2nd 0xfffffe0170ffaec8 bufwait (bufwait) @ /usr/src/sys/ufs/ffs/ffs_vnops.c:262 3rd 0xfffff800b6587a28 ufs (ufs) @ /usr/src/sys/kern/vfs_subr.c:2157 - -- // Lev Serebryakov AKA Black Lion -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (MingW32) iQJ8BAEBCgBmBQJVIlzTXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRGOTZEMUNBMEI1RjQzMThCNjc0QjMzMEFF QUIwM0M1OEJGREM0NzhGAAoJEOqwPFi/3EeP8RYP/jJjw6sru0HIqHlPKAAbIFoT f2NFqSI7aBlfYghC9mQxIpSGOtT5trrG5ZN2hg1jONbk/c2gmSm4otknp4lPDU00 jEghidQ5XQEpSsyr23fMvou3NYLn1iGKGYNuIJE1VZshQUdtxnBUbMokPZb5aVyu nn3jUsxW3bcHxRR1ygHjU1XC/nv0AKw1xhy6aHodJci9TJnUxOFPEiYWXe3E66YC 83miSicOeJZTPaji2IH6T1pO2aqOaVZhqioAku5eqt6R3NEb41zNyeID6+4swgXb bDdo7mE9i9L/QTOoAoVn1eKgLLJialhOpDxj3wHOiM3PeziTwS6Hw40F+7oCKcqi gor5anq9apu9x8npElUGJOgSBZDxEuFzZBWx5ApJj7Iq3DqRF8iGY5/OJ++XP86O PsKX9AhtQxQojTBqk5FXjSp5LRQLGSAN6m2uB4A7cB17r/MgJo0ZXer1ryZTwNXp 7zVL1xaZNcZHfZusrDs6m69Czpm1PE5Z2e33qa7YNFLihRpBbYazfVhDFORhVS5W FUeQWJzIdYe7AA7hl/7hpCL2G8dj1+RH5oyQX1kEF76bOSx5LEgPr4vE3WnoTQQr Go4uFUBJ9zjjAnKdKhUXfJG3i7rBNGwTuAxkU+o+jLX+Ry00iP0GC9xLJBJGtQZo Kwnd2fW/6hLfNvTzivbS =o9pc -----END PGP SIGNATURE----- From owner-freebsd-stable@FreeBSD.ORG Mon Apr 6 11:43:49 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8CEE8FAB; Mon, 6 Apr 2015 11:43:49 +0000 (UTC) Received: from tensor.andric.com (unknown [IPv6:2001:7b8:3a7:1:2d0:b7ff:fea0:8c26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "tensor.andric.com", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 45C21C3D; Mon, 6 Apr 2015 11:43:49 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7::d17d:f5f9:5c88:9ccf] (unknown [IPv6:2001:7b8:3a7:0:d17d:f5f9:5c88:9ccf]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id E50B55C2E; Mon, 6 Apr 2015 13:43:41 +0200 (CEST) Subject: Re: Build failed in Jenkins: FreeBSD_stable_10 #1336 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2070.6\)) Content-Type: multipart/signed; boundary="Apple-Mail=_3E9995FC-B31C-48AE-A364-235D491A104A"; protocol="application/pgp-signature"; micalg=pgp-sha1 X-Pgp-Agent: GPGMail 2.5b6 From: Dimitry Andric In-Reply-To: Date: Mon, 6 Apr 2015 13:43:33 +0200 Message-Id: <93151FA8-FF89-45CD-86C7-85B131B0E625@FreeBSD.org> References: <1103583768.0.1428206243976.JavaMail.jenkins@jenkins-9.freebsd.org> <144542972.2.1428227461352.JavaMail.jenkins@jenkins-9.freebsd.org> <8A872461-064A-4272-8FE0-955EBE79B49F@FreeBSD.org> To: Craig Rodrigues X-Mailer: Apple Mail (2.2070.6) Cc: "jenkins-admin@freebsd.org" , FreeBSD stable X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Apr 2015 11:43:49 -0000 --Apple-Mail=_3E9995FC-B31C-48AE-A364-235D491A104A Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii On 06 Apr 2015, at 09:41, Craig Rodrigues wrote: > > On Sun, Apr 5, 2015 at 4:45 AM, Dimitry Andric wrote: > >>> --- aslcompilerparse.c --- >>> yacc: f - maximum table size exceeded >>> *** [aslcompilerparse.c] Error code 2 >> >> Strangely, this worked fine for me when making a universe on our >> reference stable/10 machine. Is this particular Jenkins slave still at >> FreeBSD 10.1-RELEASE? >> > > Yes, that's right. I've committed a fix in r281110. This ensures a fresh copy of yacc is built during bootstrap-tools. -Dimitry --Apple-Mail=_3E9995FC-B31C-48AE-A364-235D491A104A Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.27 iEYEARECAAYFAlUicWwACgkQsF6jCi4glqMC+QCfW9hEo4Z4TK3alCQxFUFkk+sD soUAn1B5dbgnksPzs0blXHY3EP1Z836l =5z5n -----END PGP SIGNATURE----- --Apple-Mail=_3E9995FC-B31C-48AE-A364-235D491A104A-- From owner-freebsd-stable@FreeBSD.ORG Tue Apr 7 06:37:59 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 98CF190B; Tue, 7 Apr 2015 06:37:59 +0000 (UTC) Received: from mail-pa0-x232.google.com (mail-pa0-x232.google.com [IPv6:2607:f8b0:400e:c03::232]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5FC968F7; Tue, 7 Apr 2015 06:37:59 +0000 (UTC) Received: by pacyx8 with SMTP id yx8so68350120pac.1; Mon, 06 Apr 2015 23:37:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:content-type:subject:date:message-id:cc:to:mime-version; bh=9U8rlICfZ/9c7Gh2I50G0ofQlTcuOL955nj4G6fyJ8w=; b=AgL5xYsHCmqdtpLLKQ8fC98YnufuYm4uwUXbw/01lxw7eCsuoud7hpAlOASXbX3dF0 rhleHRuO9oRnlcb7aoMdtU8FRejHFvcz0jX2My6RFAEmvQmZErsyF0neN3BzvW0JJ45B PxgcEP9OpC8MOd6iZgQnKUB0fQxZzw0oYrIgun9zXDRCPIcatCU2f98wKdrd0A3ObGFA PGYi2lI1HqtdjrwxgTsUswR1eSNNx/6a8uzig0QE2thFcgEV1yTkrNEr4NuD8QnWMJsB v5ICZCL25E3CYTeL2+BzlSSFrrga6cB7IHrhxWVQZ5iU68r9hRRslh0gzlEGHUgcl20f quig== X-Received: by 10.70.131.76 with SMTP id ok12mr33435205pdb.155.1428388678675; Mon, 06 Apr 2015 23:37:58 -0700 (PDT) Received: from ?IPv6:2601:8:ab80:7d6:578:9b2c:a252:4667? ([2601:8:ab80:7d6:578:9b2c:a252:4667]) by mx.google.com with ESMTPSA id pa6sm6883498pac.45.2015.04.06.23.37.57 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 06 Apr 2015 23:37:58 -0700 (PDT) From: Garrett Cooper Content-Type: multipart/signed; boundary="Apple-Mail=_C5F0CD32-23D7-44BA-8C8E-E252FF9CCF4C"; protocol="application/pgp-signature"; micalg=pgp-sha512 Subject: FreeBSD/ZFS on 9.3-RELEASE chews up memory with "wide" directories when calling readdir, etc; causes trap 12 panics Date: Mon, 6 Apr 2015 23:37:56 -0700 Message-Id: To: freebsd-fs@freebsd.org Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) X-Mailer: Apple Mail (2.1878.6) Cc: freebsd-stable X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Apr 2015 06:37:59 -0000 --Apple-Mail=_C5F0CD32-23D7-44BA-8C8E-E252FF9CCF4C Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 Hi, Long story short, I had a lot of mail spooled up in /var/spool. = When I did ls /var/spool, ZFS chewed up almost all 12GB of my memory in = <10 mins (because there were enough files there) and the system = eventually panicked because [I assume that a memory allocation failed = and] a trap 12 panic was caught. I don=92t have the exact details, but = it should be relatively easy to repro (YMMV if you have a boatload of = RAM): repro_end=3D10000000000 for i in $(seq 1 $repro_end); do mktemp tmp.XXXXXXXXXXXX; done ls This might be ameliorated via r281026, but this change is only = available in CURRENT (so far), and I haven=92t tested it. Are there any comments about this scalability issue with = FreeBSD/ZFS? Thanks, --Apple-Mail=_C5F0CD32-23D7-44BA-8C8E-E252FF9CCF4C Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJVI3tFAAoJEMZr5QU6S73eR6kH/A1XPCegxem49+98PdTl4NuY 95tQEbzANC8xbnOFueluyEk6/8/X0kIFvEwraQxJg9kPUuC1goWghzNVPp/iTXuv TOxv3jTUmg2GYP0nvkcP/0G7G/7QRthr59XYtZZQZZiw3XqjpnDLECJ37eGjAxyY QiQte9z7FnzUMAE/f+vPGTffwkEYh9+DcFwmoCfTAnS9vmt8UfyYbOyuPmP58Dyv OJkAa9WpIVUrGSlILnXi+H8A5S9BTLZb91g+pOsp1YTeXoE6X7v+JafoM6kHMZEM gV/xaHoJXeCecp1VDDt/yLXM6ZTu36GnuDBxVdtghLJPH1eRBQyOdEXJQUhEX3c= =nPfJ -----END PGP SIGNATURE----- --Apple-Mail=_C5F0CD32-23D7-44BA-8C8E-E252FF9CCF4C-- From owner-freebsd-stable@FreeBSD.ORG Tue Apr 7 14:37:16 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6EC5D103 for ; Tue, 7 Apr 2015 14:37:16 +0000 (UTC) Received: from mail-ob0-x233.google.com (mail-ob0-x233.google.com [IPv6:2607:f8b0:4003:c01::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 342F5C77 for ; Tue, 7 Apr 2015 14:37:16 +0000 (UTC) Received: by obbfy7 with SMTP id fy7so91695610obb.2 for ; Tue, 07 Apr 2015 07:37:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=yUovEbgXFBPFqJmGXmPFnxwAgdfJlEBi5DE6fypvmAk=; b=xrfvuM/38W6+puVZyFE+Z93VCzgklqhvN0LMbihQLfA/TImnJs9OOQKtzP7CTGNd0T kxdvQHj1SdKfJKE99XHMm/bMGSVkBVPzlZpJdn7j3ZC9RNhkULNYC15rcK/9hZBKKnJC +K1W4pDQg2RZPkrmpmYWiOFY0YMZeuDz7vK4OoutXGXGoeMwvPifG36ITPOpocIAeKb8 6gCPhk4GJD6cbR9wl6FEldCoUZEOgUZKKauOopE2DVSA3M+luOSR0bqpD48SumQ9cxOt vHpxNRY+uPI77VpPDkIfTI6+ytMJ59TTev97ptx90K4/G4dZ5lhegbnt05F0Wc0Ysj/X IGuw== MIME-Version: 1.0 X-Received: by 10.182.166.71 with SMTP id ze7mr25788994obb.73.1428417423699; Tue, 07 Apr 2015 07:37:03 -0700 (PDT) Received: by 10.182.18.7 with HTTP; Tue, 7 Apr 2015 07:37:03 -0700 (PDT) Date: Tue, 7 Apr 2015 16:37:03 +0200 Message-ID: Subject: php version From: Cristiano Deana To: FreeBSD Stable Mailing List Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Apr 2015 14:37:16 -0000 Hi, please help me understand. In /usr/ports/UPDATING we have: --- # grep -A11 ^20150220 /usr/ports/UPDATING | more 20150220: AFFECTS: users of PHP The default PHP version has been updated from 5.4 to 5.6. If you use binary packages you should make a list of php packages before running 'pkg upgrade': # pkg info php5\* > ~/installed-php-ports-list After the upgrade, check with such list if all your php extensions are still installed, and reinstall them if needed. --- but, also: --- # grep -B1 ^PORTVERSION /usr/ports/lang/php5/Makefile PORTNAME= php5 PORTVERSION= 5.4.38 --- same with pkg: --- # pkg install -n php5 Updating FreeBSD repository catalogue... FreeBSD repository is up-to-date. All repositories are up-to-date. The following 1 packages will be affected (of 0 checked): New packages to be INSTALLED: php5: 5.4.39 The process will require 15 MiB more space. 2 MiB to be downloaded. This in a 10.1-RELENG. Is UPDATING wrong? Thank you -- Cris, member of G.U.F.I Italian FreeBSD User Group http://www.gufi.org/ From owner-freebsd-stable@FreeBSD.ORG Tue Apr 7 14:56:33 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0BB1691C; Tue, 7 Apr 2015 14:56:33 +0000 (UTC) Received: from webmail.dweimer.net (24-240-198-187.static.stls.mo.charter.com [24.240.198.187]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CBF1EEE6; Tue, 7 Apr 2015 14:56:32 +0000 (UTC) Received: from www.dweimer.net (webmail [192.168.5.2]) by webmail.dweimer.net (8.14.9/8.14.9) with ESMTP id t37EuVgp001605 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 7 Apr 2015 09:56:31 -0500 (CDT) (envelope-from dweimer@dweimer.net) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 07 Apr 2015 09:56:31 -0500 From: dweimer To: Cristiano Deana Subject: Re: php version Organization: dweimer.net Reply-To: dweimer@dweimer.net Mail-Reply-To: dweimer@dweimer.net In-Reply-To: References: Message-ID: <94fa9508feef76eb8fd0456c78728efe@dweimer.net> X-Sender: dweimer@dweimer.net User-Agent: Roundcube Webmail/1.1.1 Cc: owner-freebsd-stable@freebsd.org, FreeBSD Stable Mailing List X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Apr 2015 14:56:33 -0000 On 04/07/2015 9:37 am, Cristiano Deana wrote: > Hi, > > please help me understand. > > In /usr/ports/UPDATING we have: > > --- > # grep -A11 ^20150220 /usr/ports/UPDATING | more > 20150220: > AFFECTS: users of PHP > > The default PHP version has been updated from 5.4 to 5.6. > > If you use binary packages you should make a list of php packages > before running 'pkg upgrade': > > # pkg info php5\* > ~/installed-php-ports-list > > After the upgrade, check with such list if all your php extensions > are still installed, and reinstall them if needed. > --- > > but, also: > > --- > # grep -B1 ^PORTVERSION /usr/ports/lang/php5/Makefile > PORTNAME= php5 > PORTVERSION= 5.4.38 > --- > > same with pkg: > > --- > # pkg install -n php5 > Updating FreeBSD repository catalogue... > FreeBSD repository is up-to-date. > All repositories are up-to-date. > The following 1 packages will be affected (of 0 checked): > > New packages to be INSTALLED: > php5: 5.4.39 > > The process will require 15 MiB more space. > 2 MiB to be downloaded. > > This in a 10.1-RELENG. Is UPDATING wrong? > Thank you PHP 5.6 is in /usr/ports/lang/php56 If you install another port/pkg that depends on PHP and don't have a version already installed the defaults tell it which version to use. I am guessing its up to the individual port maintainers if they are going to have a port/pkg entry that links to the default. -- Thanks, Dean E. Weimer http://www.dweimer.net/ From owner-freebsd-stable@FreeBSD.ORG Tue Apr 7 18:02:05 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B6DED28 for ; Tue, 7 Apr 2015 18:02:05 +0000 (UTC) Received: from mail.madpilot.net (grunt.madpilot.net [78.47.145.38]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 21209BFD for ; Tue, 7 Apr 2015 18:02:04 +0000 (UTC) Received: from mail (mail [192.168.254.3]) by mail.madpilot.net (Postfix) with ESMTP id 3lLxQ66gXszZrM; Tue, 7 Apr 2015 20:01:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=madpilot.net; h= content-transfer-encoding:content-type:content-type:in-reply-to :references:subject:subject:mime-version:user-agent:from:from :date:date:message-id:received:received; s=mail; t=1428429709; x=1430244110; bh=LPclQk+EMnnl6C6vN4auVa8GXkfNyzaW/5csSLYPXMA=; b= ieNbdYhmleKEzIkCPcKNDhEB+MVLl9tL/B1kAfIn1rJuImKelTtw9inMmCV/liIG i6UZZgLcMIIVd7MfY3UoiciyIexylNVGAMUWRGceccC+7DCxuADtlltTLSN3ncOb FNUPukrmW71goZe953o5mZoq57ifJrJICZ0AS+IIPNo= Received: from mail.madpilot.net ([192.168.254.3]) by mail (mail.madpilot.net [192.168.254.3]) (amavisd-new, port 10024) with ESMTP id VJ_EeYRp0BbL; Tue, 7 Apr 2015 20:01:49 +0200 (CEST) Received: from tommy.madpilot.net (micro.madpilot.net [88.149.173.206]) by mail.madpilot.net (Postfix) with ESMTPSA; Tue, 7 Apr 2015 20:01:49 +0200 (CEST) Message-ID: <55241B8C.3010206@madpilot.net> Date: Tue, 07 Apr 2015 20:01:48 +0200 From: Guido Falsi User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Cristiano Deana , FreeBSD Stable Mailing List Subject: Re: php version References: In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Apr 2015 18:02:05 -0000 On 04/07/15 16:37, Cristiano Deana wrote: > Hi, > > please help me understand. > > In /usr/ports/UPDATING we have: > > --- > # grep -A11 ^20150220 /usr/ports/UPDATING | more > 20150220: > AFFECTS: users of PHP > > The default PHP version has been updated from 5.4 to 5.6. > > If you use binary packages you should make a list of php packages > before running 'pkg upgrade': > > # pkg info php5\* > ~/installed-php-ports-list > > After the upgrade, check with such list if all your php extensions > are still installed, and reinstall them if needed. > --- > # grep PHP_DEFAULT /usr/ports/Mk/bsd.default-versions.mk PHP_DEFAULT?= 5.6 This is the default port the system will pickup to satisfy dependencies. If another one is already installed tha tone will be used. For binary packages, which are build in a clean environment, it means you will get this one version, unless you override that with: DEFAULT_VERSIONS= php=5.6 in the building system configuration files. (the per jail make.conf) -- Guido Falsi From owner-freebsd-stable@FreeBSD.ORG Wed Apr 8 16:15:16 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE3FEC59; Wed, 8 Apr 2015 16:15:16 +0000 (UTC) Received: from mail-ob0-x22d.google.com (mail-ob0-x22d.google.com [IPv6:2607:f8b0:4003:c01::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 87B8BFBF; Wed, 8 Apr 2015 16:15:16 +0000 (UTC) Received: by obbfy7 with SMTP id fy7so145513121obb.2; Wed, 08 Apr 2015 09:15:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=TDpjwGGcPcobfZ+ZyWFBJotWSuBT7CMsjJdRtI/4voo=; b=aK1eTEYJ4eClhB6oXU1U4sAL2QfBBfByOaOShVy9RtSjIJxaTgSYs9e6zPkd9VoGCL YIVOyzabm2s2rHMLolTrqmHBLevSkTFMUpTeQqO3omKVHrZKDihyeLu5koJHqP7OL224 57hNQN2j0GWZQk/iUTDGUxKBUQ/qBr+tTik2G+lg9rrS5VrtGBNtbss32YAgHPFIbndH Pi/q5FiMgdVVUOyxQ6whDGTyvCovnUW0c+/B+yFtc5z2/LdUMcvZVDPTIIG8PjtfqXT/ 1Y/nQpk+PLxfrTY6Y/FskhvOq00bHarS76J9G/qBFDdpSPnhra87cIUWDY1gEh49bRkp 6wCQ== MIME-Version: 1.0 X-Received: by 10.60.44.241 with SMTP id h17mr6320055oem.71.1428509701489; Wed, 08 Apr 2015 09:15:01 -0700 (PDT) Sender: asomers@gmail.com Received: by 10.202.215.7 with HTTP; Wed, 8 Apr 2015 09:15:01 -0700 (PDT) In-Reply-To: References: Date: Wed, 8 Apr 2015 10:15:01 -0600 X-Google-Sender-Auth: Y7K-IsxFppbXhZ-HG9L0ZMK3Dds Message-ID: Subject: Re: FreeBSD/ZFS on 9.3-RELEASE chews up memory with "wide" directories when calling readdir, etc; causes trap 12 panics From: Alan Somers To: Garrett Cooper Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-fs , freebsd-stable X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Apr 2015 16:15:16 -0000 On Tue, Apr 7, 2015 at 12:37 AM, Garrett Cooper wro= te: > Hi, > Long story short, I had a lot of mail spooled up in /var/spool. W= hen I did ls /var/spool, ZFS chewed up almost all 12GB of my memory in <10 = mins (because there were enough files there) and the system eventually pani= cked because [I assume that a memory allocation failed and] a trap 12 panic= was caught. I don=E2=80=99t have the exact details, but it should be relat= ively easy to repro (YMMV if you have a boatload of RAM): > > repro_end=3D10000000000 > for i in $(seq 1 $repro_end); do mktemp tmp.XXXXXXXXXXXX; done > ls > > This might be ameliorated via r281026, but this change is only av= ailable in CURRENT (so far), and I haven=E2=80=99t tested it. > Are there any comments about this scalability issue with FreeBSD/= ZFS? > Thanks, I spent the last ~ 24 hours creating 58,567,635 empty files in one directory. I can ls it without crashing on a machine with 32 GB RAM. # /usr/bin/time -l ls /tmp/tmp | wc 1061.21 real 225.54 user 36.61 sys 9720268 maximum resident set size 28 average shared memory size 8 average unshared data size 128 average unshared stack size 2425013 page reclaims 0 page faults 0 swaps 108036 block input operations 0 block output operations 0 messages sent 0 messages received 0 signals received 108004 voluntary context switches 2428 involuntary context switches 58567635 58567635 644243985 -Alan From owner-freebsd-stable@FreeBSD.ORG Wed Apr 8 16:48:27 2015 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0DE484D; Wed, 8 Apr 2015 16:48:27 +0000 (UTC) Received: from mail.xtaz.uk (tao.xtaz.uk [IPv6:2001:8b0:202::10]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 64890686; Wed, 8 Apr 2015 16:48:27 +0000 (UTC) Received: by mail.xtaz.uk (Postfix, from userid 1001) id 5C859209AF21; Wed, 8 Apr 2015 17:48:25 +0100 (BST) Date: Wed, 8 Apr 2015 17:48:25 +0100 From: Matt Smith To: ports@freebsd.org, stable@freebsd.org Subject: ports/base ntpd rc.d script with WITHOUT_NTP=yes Message-ID: <20150408164825.GB1280@xtaz.uk> Mail-Followup-To: Matt Smith , ports@freebsd.org, stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Apr 2015 16:48:27 -0000 Hi, I just upgraded my server to 10.1-STABLE r281264 and when I ran mergemaster it told me that /etc/rc.d/ntpd was stale and would I like to delete it. It's never done this before. I've figured out it's because I have WITHOUT_NTP=yes in /etc/src.conf. I did this because I use the ports version of ntpd and thus wanted to remove the base installed version so that when I run commands like ntpq it's using my possibly newer port installed version and not the older one. However, the port version doesn't have its own rc script. It usually uses the base version with ntpd_program and ntpd_config set. With this latest change it means I have to have the base version installed again. Is it possible to get the port version to have its own rc script? -- Matt From owner-freebsd-stable@FreeBSD.ORG Wed Apr 8 16:56:22 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 12A5ABA8 for ; Wed, 8 Apr 2015 16:56:22 +0000 (UTC) Received: from mail.egr.msu.edu (boomhauer.egr.msu.edu [35.9.37.167]) by mx1.freebsd.org (Postfix) with ESMTP id DCADC81F for ; Wed, 8 Apr 2015 16:56:21 +0000 (UTC) Received: from boomhauer (localhost [127.0.0.1]) by mail.egr.msu.edu (Postfix) with ESMTP id A82423B835 for ; Wed, 8 Apr 2015 12:56:20 -0400 (EDT) X-Virus-Scanned: amavisd-new at egr.msu.edu Received: from mail.egr.msu.edu ([127.0.0.1]) by boomhauer (boomhauer.egr.msu.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LcI37sD9ceRn for ; Wed, 8 Apr 2015 12:56:20 -0400 (EDT) Received: from EGR authenticated sender mcdouga9 Message-ID: <55255DB4.2080501@egr.msu.edu> Date: Wed, 08 Apr 2015 12:56:20 -0400 From: Adam McDougall User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Re: ports/base ntpd rc.d script with WITHOUT_NTP=yes References: <20150408164825.GB1280@xtaz.uk> In-Reply-To: <20150408164825.GB1280@xtaz.uk> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Apr 2015 16:56:22 -0000 On 04/08/2015 12:48, Matt Smith wrote: > Hi, > > I just upgraded my server to 10.1-STABLE r281264 and when I ran > mergemaster it told me that /etc/rc.d/ntpd was stale and would I like to > delete it. It's never done this before. I've figured out it's because I > have WITHOUT_NTP=yes in /etc/src.conf. I did this because I use the > ports version of ntpd and thus wanted to remove the base installed > version so that when I run commands like ntpq it's using my possibly > newer port installed version and not the older one. > > However, the port version doesn't have its own rc script. It usually > uses the base version with ntpd_program and ntpd_config set. With this > latest change it means I have to have the base version installed again. > Is it possible to get the port version to have its own rc script? > net/openntpd has an rc script if you don't mind switching. It is very very simple to configure. Ideally the original problem should be solved too but I ran into the same problem with Kerberos. I didn't get anywhere in the bug report where I argued the system scripts still worked fine except for recent changes in them causing a regression and failure with the port. Both situations could probably use a contributed patch to make an rc script. From owner-freebsd-stable@FreeBSD.ORG Wed Apr 8 17:00:51 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02473EF4 for ; Wed, 8 Apr 2015 17:00:51 +0000 (UTC) Received: from mail.xtaz.uk (tao.xtaz.uk [IPv6:2001:8b0:202::10]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B6515888 for ; Wed, 8 Apr 2015 17:00:50 +0000 (UTC) Received: by mail.xtaz.uk (Postfix, from userid 1001) id 73AB9209AF21; Wed, 8 Apr 2015 18:00:48 +0100 (BST) Date: Wed, 8 Apr 2015 18:00:48 +0100 From: Matt Smith To: Adam McDougall Subject: Re: ports/base ntpd rc.d script with WITHOUT_NTP=yes Message-ID: <20150408170048.GC1280@xtaz.uk> Mail-Followup-To: Matt Smith , Adam McDougall , freebsd-stable@freebsd.org References: <20150408164825.GB1280@xtaz.uk> <55255DB4.2080501@egr.msu.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <55255DB4.2080501@egr.msu.edu> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: freebsd-stable@freebsd.org X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Apr 2015 17:00:51 -0000 On Apr 08 12:56, Adam McDougall wrote: >On 04/08/2015 12:48, Matt Smith wrote: >> Hi, >> >> I just upgraded my server to 10.1-STABLE r281264 and when I ran >> mergemaster it told me that /etc/rc.d/ntpd was stale and would I like to >> delete it. It's never done this before. I've figured out it's because I >> have WITHOUT_NTP=yes in /etc/src.conf. I did this because I use the >> ports version of ntpd and thus wanted to remove the base installed >> version so that when I run commands like ntpq it's using my possibly >> newer port installed version and not the older one. >> >> However, the port version doesn't have its own rc script. It usually >> uses the base version with ntpd_program and ntpd_config set. With this >> latest change it means I have to have the base version installed again. >> Is it possible to get the port version to have its own rc script? >> > >net/openntpd has an rc script if you don't mind switching. It is very >very simple to configure. > >Ideally the original problem should be solved too but I ran into the >same problem with Kerberos. I didn't get anywhere in the bug report >where I argued the system scripts still worked fine except for recent >changes in them causing a regression and failure with the port. Both >situations could probably use a contributed patch to make an rc script. I guess it wouldn't be too hard to just take the base system script, make some minor changes, and add it to the port. Would probably need to call it something different to ntpd though so it doesn't conflict. The openssh port does this I think with ssh in the base and openssh in the port. I might look into it and submit a PR. -- Matt From owner-freebsd-stable@FreeBSD.ORG Wed Apr 8 17:22:55 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B5C7258A; Wed, 8 Apr 2015 17:22:55 +0000 (UTC) Received: from mail-pd0-x230.google.com (mail-pd0-x230.google.com [IPv6:2607:f8b0:400e:c02::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 789CBBD6; Wed, 8 Apr 2015 17:22:55 +0000 (UTC) Received: by pddn5 with SMTP id n5so122075108pdd.2; Wed, 08 Apr 2015 10:22:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :message-id:references:to; bh=T68rGqi4L9K4jKHo1g20PvXd4bB5Mh/B/FgYnI7PDxM=; b=TjLoJW5GBjbW0rV0FSa2g8pzRG7n/2U5BT41VEU+sZHbwXmhGO7wxHRnAxxULA+96Y WvynTJ6H05hioskTmMop+6QT/He84Ho9ZkrCe4c9q2d0Y1pr9wWVskQBz18kgis7r8zh EukcpyF/j6QEuY4s9GIR8thzGv013SxFhTfgtzWXHd8YOd6vAqlM5vetP3EaPULli3Xb xIKW2JOYFnH+uP4i2Z8pzDeEft3qeaGAMvCeHDmN/bqfXw6EgCcFkIcmldR1AdLYFVlW YZBKFB3ihUE/O6CsM0RdKIzp7vyjFheoy7+xFSd2Uv1DkxSeEnuhlamdSUaqovkbSOik tfuQ== X-Received: by 10.68.102.228 with SMTP id fr4mr47217129pbb.87.1428513775143; Wed, 08 Apr 2015 10:22:55 -0700 (PDT) Received: from ?IPv6:2601:8:ab80:7d6:489a:2140:1bdb:1a5? ([2601:8:ab80:7d6:489a:2140:1bdb:1a5]) by mx.google.com with ESMTPSA id xt9sm11661003pbc.14.2015.04.08.10.22.53 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 08 Apr 2015 10:22:54 -0700 (PDT) Content-Type: multipart/signed; boundary="Apple-Mail=_25C7EA9E-02FC-4071-AD0E-4238DBE008B4"; protocol="application/pgp-signature"; micalg=pgp-sha512 Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: FreeBSD/ZFS on 9.3-RELEASE chews up memory with "wide" directories when calling readdir, etc; causes trap 12 panics From: Garrett Cooper In-Reply-To: Date: Wed, 8 Apr 2015 10:22:54 -0700 Message-Id: <81474997-069A-4DA5-9BF7-1EC427D7FFEF@gmail.com> References: To: Alan Somers X-Mailer: Apple Mail (2.1878.6) Cc: freebsd-fs , freebsd-stable X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Apr 2015 17:22:55 -0000 --Apple-Mail=_25C7EA9E-02FC-4071-AD0E-4238DBE008B4 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=windows-1252 On Apr 8, 2015, at 9:15, Alan Somers wrote: > On Tue, Apr 7, 2015 at 12:37 AM, Garrett Cooper = wrote: >> Hi, >> Long story short, I had a lot of mail spooled up in = /var/spool. When I did ls /var/spool, ZFS chewed up almost all 12GB of = my memory in <10 mins (because there were enough files there) and the = system eventually panicked because [I assume that a memory allocation = failed and] a trap 12 panic was caught. I don=92t have the exact = details, but it should be relatively easy to repro (YMMV if you have a = boatload of RAM): >>=20 >> repro_end=3D10000000000 >> for i in $(seq 1 $repro_end); do mktemp tmp.XXXXXXXXXXXX; done >> ls >>=20 >> This might be ameliorated via r281026, but this change is only = available in CURRENT (so far), and I haven=92t tested it. >> Are there any comments about this scalability issue with = FreeBSD/ZFS? >> Thanks, >=20 > I spent the last ~ 24 hours creating 58,567,635 empty files in one > directory. I can ls it without crashing on a machine with 32 GB RAM. >=20 > # /usr/bin/time -l ls /tmp/tmp | wc > 1061.21 real 225.54 user 36.61 sys > 9720268 maximum resident set size > 28 average shared memory size > 8 average unshared data size > 128 average unshared stack size > 2425013 page reclaims > 0 page faults > 0 swaps > 108036 block input operations > 0 block output operations > 0 messages sent > 0 messages received > 0 signals received > 108004 voluntary context switches > 2428 involuntary context switches > 58567635 58567635 644243985 Strange. I wish I could gather more details about how many files were = located there. Distance and time that they were created might manner; in = my case there were _many_ spooled up emails that hadn=92t been sent = because I didn=92t take the time to fix my SMTP settings via = comcast/gmail. RAM amount might matter too. 12GB vs 32GB is a bit of a difference. Thanks! --Apple-Mail=_25C7EA9E-02FC-4071-AD0E-4238DBE008B4 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJVJWPuAAoJEMZr5QU6S73eH0sH/13o74/hVQlD48Owq1o7nutf Lvje62TD0mfhB8owDTUNUGJ/eWun7izjb0BkjVdW1tV6736HCQyzfq7HXLj7yuZH WSzc8fHVI+Oh0E8TOSWn8tN+Th6s1lgab4Fd8Dc/CwAsI7Ai9Q29hM/0sJMjXK9r p94OtaoNO8U9wNbpwrY9DNIoVU6KOr7GsYI9WQw8RqbTYXp3YAmY/k5BmdbOWPiZ ntBYEKg0TwkFvHyiDdQqTArLI0SqmfDSPWCMkztm1JedjT1lM3fk1Vj1RqWisbvb /OAYj5sTjHryqQhvm1LuKuUbxFhWPBcv5i3wAj+tIymAjuKLERiJ24FWLpRB7TU= =Q5id -----END PGP SIGNATURE----- --Apple-Mail=_25C7EA9E-02FC-4071-AD0E-4238DBE008B4-- From owner-freebsd-stable@FreeBSD.ORG Wed Apr 8 22:49:33 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A304E816 for ; Wed, 8 Apr 2015 22:49:33 +0000 (UTC) Received: from onlyone.friendlyhosting.spb.ru (onlyone.friendlyhosting.spb.ru [46.4.40.135]) by mx1.freebsd.org (Postfix) with ESMTP id 647FE667 for ; Wed, 8 Apr 2015 22:49:33 +0000 (UTC) Received: from lion.home.serebryakov.spb.ru (unknown [IPv6:2001:470:923f:1:c185:347f:81d:3dc6]) (Authenticated sender: lev@serebryakov.spb.ru) by onlyone.friendlyhosting.spb.ru (Postfix) with ESMTPSA id EB9D356400 for ; Thu, 9 Apr 2015 01:49:09 +0300 (MSK) Date: Thu, 9 Apr 2015 01:49:06 +0300 From: Lev Serebryakov X-Priority: 3 (Normal) Message-ID: <373986118.20150409014854@serebryakov.spb.ru> To: freebsd-stable@freebsd.org Subject: Re: 10-STABLE live locks, looks like VM-related In-Reply-To: <552249ED.4050700@FreeBSD.org> References: <552249ED.4050700@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha512"; boundary="----------10A07F0DC05792975" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Apr 2015 22:49:33 -0000 ------------10A07F0DC05792975 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Hello Lev, Monday, April 6, 2015, 11:55:09 AM, you wrote: > I got several live locks of my server in a row (3 in one week). > It is amd64 10-STABLE r277307. And again, rebuilded to r281159 > http://lev.serebryakov.spb.ru/freebsd/ll/ > I've tested memory with memtest86 for 12 hours without errors. Added as "core.txt.6" --=20 Best regards, Lev mailto:lev@serebryakov.spb.ru ------------10A07F0DC05792975 Content-Type: application/pgp-signature -----BEGIN PGP MESSAGE----- Version: GnuPG v2.0.22 (MingW32) iQJ8BAEBCgBmBQJVJbBhXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRGOTZEMUNBMEI1RjQzMThCNjc0QjMzMEFF QUIwM0M1OEJGREM0NzhGAAoJEOqwPFi/3EePlXUQANHh035ozC5FTTaUXqfZc9xA x0YiaetImg97+yqXtQjTq7Ld/DT6xnEBuu+wOzr9WWk61B/GU3+GCHkdl5Ey84N/ 1VsoYSX+p4qZcv+nlp4ypjZflbiH97+yG7vN4ZOmtAjCrTpFKsu+kcG7F7wyIU7h t9v4YY5E+04mpy1OtqW+SnwRAz3rEocDGzwVtqfhUjNjiJMP1lHb1pR0dsbE/3zA inUZYPtGxeGWwdzNuMlx3Yozhjcc2vFd7Oclg7yO+JPEK2kRFAPwMiATKQAHOx6X 8R0YW4jEYUdOD1liRUaherr6Vl9i0UGsKeLDbJjX+4dIT4K718BwowjBEEKPdAm+ Nm5Xx2pRpkgkz4A/GK0rVeILUSgBK2+MhVrkCkq/Ezps03/G4k4JlY5rxB64MS5i QStz8iz4ysOOYQGwC7AbiEHGzvrwjLjqZTc+enhPW7J471eoGROUyDaoKdJmZFbQ lW5ogtOl68XhvP86TRfLMyfrNiTMzkn/2i1PndY16p2bAhKrm6uLViZlo+zzd7VH eIFu3dxabOmIOaTzuu33UCL1BrE4WKeP8eyQzJVW/SnUzRzzh6XapmMQsDzgqJcw TCKwR5gD/LWcPTflsrq8/P16BuylMZIQR+/30Et4B1cx9viNO2hd+3B0L8D/DV8l 2qlQ+Qwj3vRMcPuK1jTh =V6H8 -----END PGP MESSAGE----- ------------10A07F0DC05792975-- From owner-freebsd-stable@FreeBSD.ORG Thu Apr 9 00:39:20 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0439BB79 for ; Thu, 9 Apr 2015 00:39:20 +0000 (UTC) Received: from sender1.zohomail.com (sender1.zohomail.com [74.201.84.162]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E5BF2162 for ; Thu, 9 Apr 2015 00:39:19 +0000 (UTC) Received: from WorkBox.Home (184-100-88-41.mpls.qwest.net [184.100.88.41]) by mx.zohomail.com with SMTPS id 1428539951248462.5123016956246; Wed, 8 Apr 2015 17:39:11 -0700 (PDT) Date: Wed, 8 Apr 2015 19:39:08 -0500 From: Bigby James To: freebsd-stable@freebsd.org Subject: i915kms, Xorg, and "Power management discrepency" error Message-ID: <20150409003908.GA2272@WorkBox.Home> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Apr 2015 00:39:20 -0000 Ever since rebuilding world from commit r208369 (merging the newer i915kms from HEAD) I've continually received this error in my stdout/logs: > kernel: error: [drm:pid1228:gen6_sanitize_pm] *ERROR* Power management discrepancy: GEN6_RP_INTERRUPT_LIMITS expected 1a0d0000, was 1a000000 The only thing that ever changes is the PID of the process, which always points to Xorg. Under most typical production use this doesn't seem to have any effect, but anytime I watch any sort of video on my production laptop the CPU/GPU temp in my laptop very quickly climbs above 80 degrees celsius. On my multi-purpose server/HTPC, starting an XBMC/Kodi session has the same effect, even if the system is idling (just sitting at the main menu with nothing playing at all). This doesn't stop until I cease video playback on my laptop or kill the Kodi session on the server. Note that the hardware in both machines is identical (yes, the "server" is a laptop), and they're base systems and kernels are synchronized, so whatever is affectng one should be what's affecting the other. I came across an older mailing list thread from February[1] on this same basic subject that didn't seem to go anywhere, but it had the implication that the i915kms module was the cause. That precisely this same error message is present on various Linux forums bolsters the notion that the video driver might be to blame. If anyone has any insight into how to begin debugging this, I'd be grateful. Thanks in advance. - Bigby [1]: http://freebsd.1045724.n5.nabble.com/Weird-ACPI-DRM-messages-on-current-td5986712.html -- "A common mistake that people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools." - Douglas Adams From owner-freebsd-stable@FreeBSD.ORG Thu Apr 9 10:00:14 2015 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13D43BF3 for ; Thu, 9 Apr 2015 10:00:14 +0000 (UTC) Received: from smtp.des.no (smtp.des.no [194.63.250.102]) by mx1.freebsd.org (Postfix) with ESMTP id C8DE2AD2 for ; Thu, 9 Apr 2015 10:00:13 +0000 (UTC) Received: from nine.des.no (smtp.des.no [194.63.250.102]) by smtp-int.des.no (Postfix) with ESMTP id 9B9DEC3FC; Thu, 9 Apr 2015 10:00:07 +0000 (UTC) Received: by nine.des.no (Postfix, from userid 1001) id 671097A5; Thu, 9 Apr 2015 12:00:08 +0200 (CEST) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: Eric van Gyzen Subject: Re: ssh known_hosts in 10.1 References: <54DBD1C2.4000108@vangyzen.net> <54DC1A78.9010500@vangyzen.net> <54DC6048.2060902@dssgmbh.de> <54DCCBEC.9040104@vangyzen.net> Date: Thu, 09 Apr 2015 12:00:08 +0200 In-Reply-To: <54DCCBEC.9040104@vangyzen.net> (Eric van Gyzen's message of "Thu, 12 Feb 2015 10:51:08 -0500") Message-ID: <86oamx39lj.fsf@nine.des.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: stable@freebsd.org, Alfred Bartsch X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Apr 2015 10:00:14 -0000 Eric van Gyzen writes: > Dag-Erling: The update to OpenSSH 6.5p1 (r261320) removed FreeBSD's > customization to use the canonical hostname (FQDN) in the known_hosts > file. Was this intentional? Could it be restored? I'm not sure what I was thinking when I made that change. I can neither confirm nor deny that I was sleepwalking at the time... I probably removed the code because upstream now supports canonicalization, but did not realize that it is not 100% equivalent. I should at the very least have changed the default setting. I need to get around to upgrading to 6.7p1, but it requires quite a bit more work than usual due to major upstream changes such as the removal of hosts_access(3) (aka "TCP wrappers") support, which therefore has to be backported. Sorry for the delay, I was dealing with family issues. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-freebsd-stable@FreeBSD.ORG Thu Apr 9 10:09:39 2015 Return-Path: Delivered-To: stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6F79CA22; Thu, 9 Apr 2015 10:09:39 +0000 (UTC) Received: from mail-pa0-x22d.google.com (mail-pa0-x22d.google.com [IPv6:2607:f8b0:400e:c03::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 39540CA0; Thu, 9 Apr 2015 10:09:39 +0000 (UTC) Received: by pabtp1 with SMTP id tp1so39523796pab.2; Thu, 09 Apr 2015 03:09:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:reply-to:subject:references:to:cc:from:message-id:date :user-agent:mime-version:in-reply-to:content-type :content-transfer-encoding; bh=t1HgbRvuDYKV2dX0czov4JVrGiF4gX8Mdjdlkcqf0MU=; b=qSzaqNwvX1lgBQbXZNlYFYlHgkS62OrF5cOhmS8s9ZTo8P0rcdpwLGs8hpswjy8/gM Qj8rGEPsae26r/v5U4qGquGNVBCAXjRtogeIznc33lBWu4ne03xhAczhk+dzbrVVGDW8 HZzd2kDV2pqo+sBFUtt8sNbGVKLYoUddRJ3BXiaaxsuWeDKFNZ0jS8OXlcM3PDAqJi35 F/MhESRmgfqCuLHBMeupb/5d1Ibx7UPBdPtZlOzuVHANb75nNh/q0OSzVwehKXHGyZvO beWECTXfKDwU47gdcMyik3HFFN6lufBJtJVyx89mmXYpjEkSd4k+16uh4dgKKQqOy3sb 0sLQ== X-Received: by 10.70.38.225 with SMTP id j1mr28857871pdk.14.1428574178948; Thu, 09 Apr 2015 03:09:38 -0700 (PDT) Received: from [192.168.1.107] (ppp59-167-128-11.static.internode.on.net. [59.167.128.11]) by mx.google.com with ESMTPSA id q3sm14018244pds.49.2015.04.09.03.09.36 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 09 Apr 2015 03:09:38 -0700 (PDT) Sender: Kubilay Kocak Reply-To: koobs@FreeBSD.org Subject: Re: ports/base ntpd rc.d script with WITHOUT_NTP=yes references: <20150408164825.GB1280@xtaz.uk> To: Matt Smith , ports@freebsd.org, stable@freebsd.org From: Kubilay Kocak message-id: <55264FD9.409@FreeBSD.org> Date: Thu, 9 Apr 2015 20:09:29 +1000 user-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Thunderbird/37.0 mime-version: 1.0 in-reply-to: <20150408164825.GB1280@xtaz.uk> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: Cy Schubert X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Apr 2015 10:09:39 -0000 On 9/04/2015 2:48 AM, Matt Smith wrote: > Hi, > > I just upgraded my server to 10.1-STABLE r281264 and when I ran > mergemaster it told me that /etc/rc.d/ntpd was stale and would I like to > delete it. It's never done this before. I've figured out it's because I > have WITHOUT_NTP=yes in /etc/src.conf. I did this because I use the > ports version of ntpd and thus wanted to remove the base installed > version so that when I run commands like ntpq it's using my possibly > newer port installed version and not the older one. > > However, the port version doesn't have its own rc script. It usually > uses the base version with ntpd_program and ntpd_config set. With this > latest change it means I have to have the base version installed again. > Is it possible to get the port version to have its own rc script? > Hi Matt, It is certainly *possible*, and best addressed with an enhancement request (via Bugzilla) to the NTP port maintainer, who I've CC'd here. I like the idea as it improves user experience, removes a POLA violation, and further decouples ports/pkg from base (which we like) ./koobs From owner-freebsd-stable@FreeBSD.ORG Thu Apr 9 13:26:17 2015 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A6D67D6C for ; Thu, 9 Apr 2015 13:26:17 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8D1AC8F8 for ; Thu, 9 Apr 2015 13:26:17 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t39DQHcR047620 for ; Thu, 9 Apr 2015 13:26:17 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-stable@FreeBSD.org Subject: [Bug 199310] Font rendering problem -STABLE Date: Thu, 09 Apr 2015 13:26:17 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sasamotikomi@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Apr 2015 13:26:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199310 sasamotikomi@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |freebsd-stable@FreeBSD.org, | |gecko@FreeBSD.org, | |sasamotikomi@gmail.com, | |x11@FreeBSD.org -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-stable@FreeBSD.ORG Thu Apr 9 18:09:52 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CDFEECCE for ; Thu, 9 Apr 2015 18:09:52 +0000 (UTC) Received: from athena.awarent.com (unknown [IPv6:2600:3c03::f03c:91ff:feae:fc92]) by mx1.freebsd.org (Postfix) with ESMTP id A14BDF05 for ; Thu, 9 Apr 2015 18:09:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by athena.awarent.com (Postfix) with ESMTP id 1E61523126E for ; Thu, 9 Apr 2015 14:09:52 -0400 (EDT) Received: from athena.awarent.com ([127.0.0.1]) by localhost (athena.awarent.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id lJkYsuf8VphL for ; Thu, 9 Apr 2015 14:09:51 -0400 (EDT) Message-ID: <5526C06E.1050602@gundogan.us> Date: Thu, 09 Apr 2015 14:09:50 -0400 From: Emre Gundogan MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Test Content-Type: multipart/mixed; boundary="------------080803070501010509060203" X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Apr 2015 18:09:52 -0000 This is a multi-part message in MIME format. --------------080803070501010509060203 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 TEsting -----BEGIN PGP SIGNATURE----- Comment: GPGTools - http://gpgtools.org iQIcBAEBCAAGBQJVJsBuAAoJEDVmXMpMu6WPvKsQAM7MbEudgv5YpdSd/+qRNBdh xEeRKri0c4vQG3WJUg0dpzgn4BNnDJX3dGVIzNjXf/tWFBF2I+05Rdyil3ZyorNN RbSVK0UQRjiBlQUTZAqeJNHZpBwSVDs2gTZ5etTETfJaBCi1NnVRRVCck3LtL3sg ROcqDvhtwJgr6UC6a1Xxd+IZgYohUdD5JkzVIqDokjDNpD/7MfXjKlKO8m8A4vvi w0LNy49+El7yh6ftzGB8AaxuQnkTavwU14wksqOCUIRlF6df6KtDUXj6NwyiFIDu yBOacgbJm7DZn/IuzdmsDkZ8zjI5WlbP7ZQH/F2q7glyLcSe0Cte9LtIU4l4tV8N wEVyoEEkWBVsPhF3fc1E91qnzbOCA8I9fLZtoNYdwOk8h6ub9sqV8MpMZVpA0OzY RszYoMNQJFi4AyRmTb90SG/cisZySDVrcel9y6duwOg2W6IR7B33RYjznLGaSOwL GJdsygipWzLcCiPYBGDLf3aUUKn0IL+PaTCO3tDcjhpCwjG4RcL5V3rtEVgPa5Jt 7B66KlecIL1daKawUEQpZST6WGpN1lr+sxTAhcid2ilUa1dsgnsCzbA6q0vzfRbj 4XheKy1wyqYd7DWQbpg573HeuSG6bn37NwpzQPvNJJ6hOJReRabLv80HBXMtZWVl JGJg8ThEUwMxQd/x7stT =eHJL -----END PGP SIGNATURE----- --------------080803070501010509060203 Content-Type: application/octet-stream; x-mac-type="0"; x-mac-creator="0"; name="0x4CBBA58F.asc.sig" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="0x4CBBA58F.asc.sig" iQIcBAABCAAGBQJVJsBuAAoJEDVmXMpMu6WP/icP/0E54jQ0wpM740qA5zySJRhrS7nun7Xl bGKzRiD1xxoKcKUt8CKbUHukl4zhl/k0e+IHfLfXKijuFn6trPXzDNRMxtFDCZno1CRQie0q mRkxROd4AJ7GIxZ+/RJUpTy+x49P1QUrPPccigmb+f3rvP9ra3gV7KsPHzZT6KxAKRLzU/lT pBhW7wMUnDWJt7MYnuCdUE6/03S+s3+SyVkybb6a5NlY/0VUs3+eqnrR+L5XdKcK4dZ2Fl5O 4u5TqVEMGydsboY+wd7t+edxT0zzWWOCZS65G47m3C87643VqOdsrweK5p9+0mVJeXt55xJG vw9hQVKg47NtADRBaBIeiJMTw7LMFrvRjjCartYnqsjtszZ1rcMjTUg91inIEQU3P6ssRWPa lO8sKb5mRbye8eV+1LRbVqGsSW1icqL8yUEk2zaLi3+GnVZOgZ9jNIkEOqLrBmoUmexqS0WO hPitHH/C5kbAJZQKHu4QwWoubSGMYtR8lQuAuFIUqaeTS1HPf+X+uRPofxe4Ix9/IXiPdZHe Pflux1pXEzmVTEsGj+44CCQooVa7N0C4R2MagyGGEqhPzryIEePmAlxy5fea/qJb7JQLldl8 lVVZk314pKKUNCye25zleuvfMX7TKdzvHfxQEnbL4NDQqEeXMXsh+s+VfG2WFsebyWsG+790 CAJv --------------080803070501010509060203-- From owner-freebsd-stable@FreeBSD.ORG Thu Apr 9 18:51:14 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02B1BAA9 for ; Thu, 9 Apr 2015 18:51:14 +0000 (UTC) Received: from athena.awarent.com (unknown [IPv6:2600:3c03::f03c:91ff:feae:fc92]) by mx1.freebsd.org (Postfix) with ESMTP id D26646B6 for ; Thu, 9 Apr 2015 18:51:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by athena.awarent.com (Postfix) with ESMTP id AFF84231272 for ; Thu, 9 Apr 2015 14:51:07 -0400 (EDT) Received: from athena.awarent.com ([127.0.0.1]) by localhost (athena.awarent.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Ui9SFfyxlfFZ for ; Thu, 9 Apr 2015 14:51:06 -0400 (EDT) Message-ID: <5526CA1A.9090403@gundogan.us> Date: Thu, 09 Apr 2015 14:51:06 -0400 From: Emre Gundogan MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: X server crash in 10-1-RELEASE-p9 (kvm guest) with syscons Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Apr 2015 18:51:14 -0000 [Sorry for the previous unintended test message I sent to the list]. Hi. I had a bizarre X server crash after updating the packages on my KVM guest running 10.1-RELEASE-p9 (Debian-8 host). X server with VESA driver crashes with signal 4 (illegal instruction) when console is set to 'sc' but not when it is 'vt'. After some tests, I've isolated this to be related to QEMU, as same config VirtualBox instance runs updated xorg/driver packages fine. I also tested it on a laptop with Nvidia driver, and no problems there, too. The simple fix for me to get my KVM instance back up and running XFCE4 was to set 'kern.vty=vt' in boot loader conf. Although my problem is fixed, I am curious why the Xorg update to 7.7_2 may exhibit such behavior in KVM. Thank you, Emre. From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 05:50:38 2015 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D61C8F03 for ; Fri, 10 Apr 2015 05:50:38 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB4B79FA for ; Fri, 10 Apr 2015 05:50:38 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t3A5ocFI071791 for ; Fri, 10 Apr 2015 05:50:38 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-stable@FreeBSD.org Subject: [Bug 199310] www/firefox: Font rendering problem on 10-STABLE Date: Fri, 10 Apr 2015 05:50:38 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: product short_desc version bug_status cc flagtypes.name component assigned_to keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 05:50:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=199310 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Product|Base System |Ports & Packages Summary|Font rendering problem |www/firefox: Font rendering |-STABLE |problem on 10-STABLE Version|10.1-STABLE |Latest Status|New |Open CC|freebsd-stable@FreeBSD.org, | |sasamotikomi@gmail.com | Flags| |maintainer-feedback?(gecko@ | |FreeBSD.org) Component|misc |Individual Port(s) Assignee|freebsd-bugs@FreeBSD.org |freebsd-ports-bugs@FreeBSD. | |org Keywords| |needs-qa -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 13:46:44 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B139F4B8 for ; Fri, 10 Apr 2015 13:46:44 +0000 (UTC) Received: from local.wintek.com (local.wintek.com [72.12.201.234]) by mx1.freebsd.org (Postfix) with ESMTP id 85ABBA48 for ; Fri, 10 Apr 2015 13:46:44 +0000 (UTC) Received: from rjk.wintek.local (172.28.1.248) by local.wintek.com (172.28.1.234) with Microsoft SMTP Server id 8.3.342.0; Fri, 10 Apr 2015 09:45:53 -0400 Message-ID: <5527D3FC.3000003@wintek.com> Date: Fri, 10 Apr 2015 09:45:32 -0400 From: Richard Kuhns User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:36.0) Gecko/20100101 Firefox/36.0 SeaMonkey/2.33.1 MIME-Version: 1.0 To: "freebsd-stable@freebsd.org" Subject: Problem building world (amd64) this morning Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 13:46:44 -0000 Hello, I've just updated /usr/src and attempted to buildworld. My last build was Mar 12 (r279935). The build fails with: ===> lib/csu/i386-elf (obj,depend,all,install) ld -m elf_i386_fbsd -Y P,/usr/obj/usr/src/lib32/usr/lib32 -o gcrt1.o -r crt1_s.o gcrt1_c.o ld -m elf_i386_fbsd -Y P,/usr/obj/usr/src/lib32/usr/lib32 -o Scrt1.o -r crt1_s.o Scrt1_c.o --localize-symbol _start1 Scrt1.o make[4]: exec(--localize-symbol) failed (No such file or directory) *** Error code 1 Stop. make[4]: stopped in /usr/src/lib/csu/i386-elf It looks like OBJCOPY is undefined. My only build-related options in /etc/make.conf are OPTIONS_SET=OPTIMIZED_CFLAGS OPTIONS_UNSET= NLS BIND Thanks for any help. -- Richard Kuhns Main Number: 765-742-8428 Wintek Corporation Direct: 765-269-8541 427 N 6th Street Internet Support: 765-269-8503 Lafayette, IN 47901-2211 Consulting: 765-269-8504 From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 14:55:32 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02C353B3 for ; Fri, 10 Apr 2015 14:55:32 +0000 (UTC) Received: from albert.catwhisker.org (mx.catwhisker.org [198.144.209.73]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AE4F1283 for ; Fri, 10 Apr 2015 14:55:31 +0000 (UTC) Received: from albert.catwhisker.org (localhost [127.0.0.1]) by albert.catwhisker.org (8.14.9/8.14.9) with ESMTP id t3AEtTpr056048; Fri, 10 Apr 2015 07:55:29 -0700 (PDT) (envelope-from david@albert.catwhisker.org) Received: (from david@localhost) by albert.catwhisker.org (8.14.9/8.14.9/Submit) id t3AEtT8w056047; Fri, 10 Apr 2015 07:55:29 -0700 (PDT) (envelope-from david) Date: Fri, 10 Apr 2015 07:55:29 -0700 From: David Wolfskill To: Richard Kuhns Subject: Re: Problem building world (amd64) this morning Message-ID: <20150410145529.GH15644@albert.catwhisker.org> Mail-Followup-To: David Wolfskill , Richard Kuhns , "freebsd-stable@freebsd.org" References: <5527D3FC.3000003@wintek.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="D1BNluYeAVp5SukR" Content-Disposition: inline In-Reply-To: <5527D3FC.3000003@wintek.com> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 14:55:32 -0000 --D1BNluYeAVp5SukR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 10, 2015 at 09:45:32AM -0400, Richard Kuhns wrote: > Hello, >=20 > I've just updated /usr/src and attempted to buildworld. My last build > was Mar 12 (r279935). The build fails with: >=20 > =3D=3D=3D> lib/csu/i386-elf (obj,depend,all,install) > ld -m elf_i386_fbsd -Y P,/usr/obj/usr/src/lib32/usr/lib32 -o gcrt1.o -r > crt1_s.o gcrt1_c.o > ld -m elf_i386_fbsd -Y P,/usr/obj/usr/src/lib32/usr/lib32 -o Scrt1.o -r > crt1_s.o Scrt1_c.o > --localize-symbol _start1 Scrt1.o > make[4]: exec(--localize-symbol) failed (No such file or directory) > *** Error code 1 >=20 > Stop. > make[4]: stopped in /usr/src/lib/csu/i386-elf >=20 > It looks like OBJCOPY is undefined. >=20 > My only build-related options in /etc/make.conf are >=20 >=20 > OPTIONS_SET=3DOPTIMIZED_CFLAGS > OPTIONS_UNSET=3D NLS BIND >=20 > Thanks for any help. > .... Well... about all I have for you is a set of counter-examples. You didn't mention the revsion level of your source tree or what arch you're using; here are "uname -vp" outputs from some recent successful builds & smoke tests I've done for stable/10: FreeBSD 10.1-STABLE #1 r281140M/281144:1001512: Mon Apr 6 05:28:04 PDT 20= 15 root@g1-254.catwhisker.org:/common/S2/obj/usr/src/sys/CANARY amd64 FreeBSD 10.1-STABLE #2 r281195M/281199:1001512: Tue Apr 7 05:23:53 PDT 20= 15 root@g1-254.catwhisker.org:/common/S2/obj/usr/src/sys/CANARY amd64 FreeBSD 10.1-STABLE #3 r281264M/281264:1001512: Wed Apr 8 05:24:16 PDT 20= 15 root@g1-254.catwhisker.org:/common/S2/obj/usr/src/sys/CANARY amd64 FreeBSD 10.1-STABLE #4 r281305M/281308:1001512: Thu Apr 9 04:36:46 PDT 20= 15 root@g1-254.catwhisker.org:/common/S2/obj/usr/src/sys/CANARY amd64 FreeBSD 10.1-STABLE #5 r281350M/281366:1001512: Fri Apr 10 06:01:05 PDT 20= 15 root@g1-254.catwhisker.org:/common/S2/obj/usr/src/sys/CANARY amd64 FreeBSD 10.1-STABLE #28 r281140M/281144:1001512: Mon Apr 6 04:19:31 PDT 2= 015 root@g1-254.catwhisker.org:/common/S1/obj/usr/src/sys/CANARY i386 FreeBSD 10.1-STABLE #29 r281195M/281199:1001512: Tue Apr 7 04:25:29 PDT 2= 015 root@g1-254.catwhisker.org:/common/S1/obj/usr/src/sys/CANARY i386 FreeBSD 10.1-STABLE #30 r281264M/281264:1001512: Wed Apr 8 04:27:16 PDT 2= 015 root@g1-254.catwhisker.org:/common/S1/obj/usr/src/sys/CANARY i386 FreeBSD 10.1-STABLE #31 r281305M/281308:1001512: Thu Apr 9 05:15:41 PDT 2= 015 root@g1-254.catwhisker.org:/common/S1/obj/usr/src/sys/CANARY i386 FreeBSD 10.1-STABLE #32 r281350M/281366:1001512: Fri Apr 10 04:19:40 PDT 2= 015 root@g1-254.catwhisker.org:/common/S1/obj/usr/src/sys/CANARY i386 FreeBSD 10.1-STABLE #1693 r277379M/277379:1001506: Mon Jan 19 05:17:01 PST= 2015 root@freebeast.catwhisker.org:/common/S1/obj/usr/src/sys/GENERIC = i386 FreeBSD 10.1-STABLE #1694 r277409M/277417:1001506: Tue Jan 20 05:29:44 PST= 2015 root@freebeast.catwhisker.org:/common/S1/obj/usr/src/sys/GENERIC = i386 FreeBSD 10.1-STABLE #1695 r277483M/277484:1001506: Wed Jan 21 04:46:49 PST= 2015 root@freebeast.catwhisker.org:/common/S1/obj/usr/src/sys/GENERIC = i386 FreeBSD 10.1-STABLE #1696 r277526M/277528:1001506: Thu Jan 22 05:21:01 PST= 2015 root@freebeast.catwhisker.org:/common/S1/obj/usr/src/sys/GENERIC = i386 FreeBSD 10.1-STABLE #1697 r277558M/277561:1001506: Fri Jan 23 04:47:46 PST= 2015 root@freebeast.catwhisker.org:/common/S1/obj/usr/src/sys/GENERIC = i386 You may see for additional details. Peace, david --=20 David H. Wolfskill david@catwhisker.org Those who murder in the name of God or prophet are blasphemous cowards. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --D1BNluYeAVp5SukR Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQJ8BAEBCgBmBQJVJ+RhXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ4RThEMDY4QTIxMjc1MDZFRDIzODYzRTc4 QTY3RjlDOERFRjQxOTNCAAoJEIpn+cje9Bk7VhsQAJolyHG02mQM3jawzVsvMMIN gG7sDHKX0eQd5ZRZ0yklYQD/je6qMS8DLSGW9eZ0m/66f3+LdfMSMbcg+oFdcECi ixCmgyUZucK6gA97tKqkimALGM3tKiEproikwIrEwIMBHFncw+XCDniANkCjfEtQ GFcUJK+mezz80ukUSNWCishcorqKnYWIE07oiV2baIgVR8XegEhKy7xpqXkbWebf Iiy296UAhbzgcGpHkNi7pVQdMz2aEXUelpB/KcBJYLlX8KzF/Z/qzb7nFBJBaO+B j2+lp2lEZ9eZT7p7zWG4nqWYo5jtb65Tp54AGCiR2KMUsoWh8UKySw1v+EtMArCl gFY48/6/X/aLgNa3P3/x2V0WNUacLjN5PsxUmJoPg36btL41XoHcI2UVq4/YNXf9 RRKaw3qZ/uQOd6X2594wSOoL188S/B5Gmq+uK4pb9QhgBYJ55ws65+vTkPphFmX7 exrr7ktFTYJWK1crhSXzeOfjPigOGbGNLC7q88oi+5CKMTCtPx8gnhNsidQa5Igt 9wtTQf5OvflYW8hFWXdB3Cwgz9ik1O17mDP7eTHw3VNvFuck/7uBLWlHGiuKOeq0 +Y3vaMO8nE9D6dUjpWWQz1LSUVSYxs4kq+WxGuDIOKHRQ8Wn7q+8wn1DgYHFO5jn WxlIv+0oJF8CM7Nqacmr =sAOB -----END PGP SIGNATURE----- --D1BNluYeAVp5SukR-- From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 15:17:37 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 00E2C963 for ; Fri, 10 Apr 2015 15:17:36 +0000 (UTC) Received: from kabab.cs.huji.ac.il (kabab.cs.huji.ac.il [132.65.116.210]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 475496C5 for ; Fri, 10 Apr 2015 15:17:35 +0000 (UTC) Received: from mbpro2.bs.cs.huji.ac.il ([132.65.179.20]) by kabab.cs.huji.ac.il with esmtp id 1YgagA-000Ctm-3Y; Fri, 10 Apr 2015 18:17:10 +0300 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2090\)) Subject: Re: Problem building world (amd64) this morning From: Daniel Braniss In-Reply-To: <20150410145529.GH15644@albert.catwhisker.org> Date: Fri, 10 Apr 2015 18:17:09 +0300 Message-Id: <9B3B9CA5-2B7E-407E-98EA-285F86D30BEF@cs.huji.ac.il> References: <5527D3FC.3000003@wintek.com> <20150410145529.GH15644@albert.catwhisker.org> To: David Wolfskill X-Mailer: Apple Mail (2.2090) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: Richard Kuhns , "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 15:17:37 -0000 I am having the same problem! ... make[4]: exec(--localize-symbol) failed (No such file or = directory) and it=E2=80=99s because OBJCOPY is not defined,=20 older stuff shows objcopy =E2=80=A6, and now it=E2=80=99s ${OBJCOPY} cheers, danny > On Apr 10, 2015, at 5:55 PM, David Wolfskill = wrote: >=20 > On Fri, Apr 10, 2015 at 09:45:32AM -0400, Richard Kuhns wrote: >> Hello, >>=20 >> I've just updated /usr/src and attempted to buildworld. My last build >> was Mar 12 (r279935). The build fails with: >>=20 >> =3D=3D=3D> lib/csu/i386-elf (obj,depend,all,install) >> ld -m elf_i386_fbsd -Y P,/usr/obj/usr/src/lib32/usr/lib32 -o gcrt1.o = -r >> crt1_s.o gcrt1_c.o >> ld -m elf_i386_fbsd -Y P,/usr/obj/usr/src/lib32/usr/lib32 -o Scrt1.o = -r >> crt1_s.o Scrt1_c.o >> --localize-symbol _start1 Scrt1.o >> make[4]: exec(--localize-symbol) failed (No such file or directory) >> *** Error code 1 >>=20 >> Stop. >> make[4]: stopped in /usr/src/lib/csu/i386-elf >>=20 >> It looks like OBJCOPY is undefined. >>=20 >> My only build-related options in /etc/make.conf are >>=20 >>=20 >> OPTIONS_SET=3DOPTIMIZED_CFLAGS >> OPTIONS_UNSET=3D NLS BIND >>=20 >> Thanks for any help. >> .... >=20 > Well... about all I have for you is a set of counter-examples. >=20 > You didn't mention the revsion level of your source tree or what arch > you're using; here are "uname -vp" outputs from some recent successful > builds & smoke tests I've done for stable/10: >=20 > FreeBSD 10.1-STABLE #1 r281140M/281144:1001512: Mon Apr 6 05:28:04 = PDT 2015 root@g1-254.catwhisker.org = :/common/S2/obj/usr/src/sys/CANARY = amd64 > FreeBSD 10.1-STABLE #2 r281195M/281199:1001512: Tue Apr 7 05:23:53 = PDT 2015 root@g1-254.catwhisker.org = :/common/S2/obj/usr/src/sys/CANARY = amd64 > FreeBSD 10.1-STABLE #3 r281264M/281264:1001512: Wed Apr 8 05:24:16 = PDT 2015 root@g1-254.catwhisker.org = :/common/S2/obj/usr/src/sys/CANARY = amd64 > FreeBSD 10.1-STABLE #4 r281305M/281308:1001512: Thu Apr 9 04:36:46 = PDT 2015 root@g1-254.catwhisker.org = :/common/S2/obj/usr/src/sys/CANARY = amd64 > FreeBSD 10.1-STABLE #5 r281350M/281366:1001512: Fri Apr 10 06:01:05 = PDT 2015 root@g1-254.catwhisker.org = :/common/S2/obj/usr/src/sys/CANARY = amd64 >=20 > FreeBSD 10.1-STABLE #28 r281140M/281144:1001512: Mon Apr 6 04:19:31 = PDT 2015 root@g1-254.catwhisker.org = :/common/S1/obj/usr/src/sys/CANARY = i386 > FreeBSD 10.1-STABLE #29 r281195M/281199:1001512: Tue Apr 7 04:25:29 = PDT 2015 root@g1-254.catwhisker.org = :/common/S1/obj/usr/src/sys/CANARY = i386 > FreeBSD 10.1-STABLE #30 r281264M/281264:1001512: Wed Apr 8 04:27:16 = PDT 2015 root@g1-254.catwhisker.org = :/common/S1/obj/usr/src/sys/CANARY = i386 > FreeBSD 10.1-STABLE #31 r281305M/281308:1001512: Thu Apr 9 05:15:41 = PDT 2015 root@g1-254.catwhisker.org = :/common/S1/obj/usr/src/sys/CANARY = i386 > FreeBSD 10.1-STABLE #32 r281350M/281366:1001512: Fri Apr 10 04:19:40 = PDT 2015 root@g1-254.catwhisker.org = :/common/S1/obj/usr/src/sys/CANARY = i386 >=20 > FreeBSD 10.1-STABLE #1693 r277379M/277379:1001506: Mon Jan 19 = 05:17:01 PST 2015 root@freebeast.catwhisker.org = :/common/S1/obj/usr/src/sys/GENERIC = i386 > FreeBSD 10.1-STABLE #1694 r277409M/277417:1001506: Tue Jan 20 = 05:29:44 PST 2015 root@freebeast.catwhisker.org = :/common/S1/obj/usr/src/sys/GENERIC = i386 > FreeBSD 10.1-STABLE #1695 r277483M/277484:1001506: Wed Jan 21 = 04:46:49 PST 2015 root@freebeast.catwhisker.org = :/common/S1/obj/usr/src/sys/GENERIC = i386 > FreeBSD 10.1-STABLE #1696 r277526M/277528:1001506: Thu Jan 22 = 05:21:01 PST 2015 root@freebeast.catwhisker.org = :/common/S1/obj/usr/src/sys/GENERIC = i386 > FreeBSD 10.1-STABLE #1697 r277558M/277561:1001506: Fri Jan 23 = 04:47:46 PST 2015 root@freebeast.catwhisker.org = :/common/S1/obj/usr/src/sys/GENERIC = i386 >=20 > You may see > for > additional details. >=20 > Peace, > david > --=20 > David H. Wolfskill david@catwhisker.org = > Those who murder in the name of God or prophet are blasphemous = cowards. >=20 > See http://www.catwhisker.org/~david/publickey.gpg = for my public key. From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 15:28:24 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 29010DA2 for ; Fri, 10 Apr 2015 15:28:24 +0000 (UTC) Received: from tensor.andric.com (unknown [IPv6:2001:7b8:3a7:1:2d0:b7ff:fea0:8c26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "tensor.andric.com", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D651E863 for ; Fri, 10 Apr 2015 15:28:23 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7::d4c6:7555:3ed6:3b29] (unknown [IPv6:2001:7b8:3a7:0:d4c6:7555:3ed6:3b29]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id F18115C37; Fri, 10 Apr 2015 17:28:17 +0200 (CEST) Subject: Re: Problem building world (amd64) this morning Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Content-Type: multipart/signed; boundary="Apple-Mail=_F5B080CD-0CB7-4543-B294-29066C9C8B64"; protocol="application/pgp-signature"; micalg=pgp-sha1 X-Pgp-Agent: GPGMail 2.5b6 From: Dimitry Andric In-Reply-To: <9B3B9CA5-2B7E-407E-98EA-285F86D30BEF@cs.huji.ac.il> Date: Fri, 10 Apr 2015 17:28:11 +0200 Message-Id: References: <5527D3FC.3000003@wintek.com> <20150410145529.GH15644@albert.catwhisker.org> <9B3B9CA5-2B7E-407E-98EA-285F86D30BEF@cs.huji.ac.il> To: Daniel Braniss X-Mailer: Apple Mail (2.2098) Cc: Richard Kuhns , "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 15:28:24 -0000 --Apple-Mail=_F5B080CD-0CB7-4543-B294-29066C9C8B64 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 On 10 Apr 2015, at 17:17, Daniel Braniss wrote: >=20 > I am having the same problem! > ... > make[4]: exec(--localize-symbol) failed (No such file or = directory) > and it=E2=80=99s because OBJCOPY is not defined, > older stuff shows objcopy =E2=80=A6, and now it=E2=80=99s ${OBJCOPY} I've seen a few reports of this now, and it is probably caused by my MFC of r280980, but I have not been able to reproduce it. How are you building world, and what are the contents of your make.conf and src.conf? Are there any other special settings in your environment that influence the build? -Dimitry --Apple-Mail=_F5B080CD-0CB7-4543-B294-29066C9C8B64 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.27 iEYEARECAAYFAlUn7BAACgkQsF6jCi4glqM9vgCaA/832UI0lGYXt1xDVveCtRE6 PYMAnRb5aW5/HTugi6AC+KoQVQEdLirp =BM8W -----END PGP SIGNATURE----- --Apple-Mail=_F5B080CD-0CB7-4543-B294-29066C9C8B64-- From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 15:28:59 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0C6ADF5B for ; Fri, 10 Apr 2015 15:28:59 +0000 (UTC) Received: from kabab.cs.huji.ac.il (kabab.cs.huji.ac.il [132.65.116.210]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5397F882 for ; Fri, 10 Apr 2015 15:28:57 +0000 (UTC) Received: from mbpro2.bs.cs.huji.ac.il ([132.65.179.20]) by kabab.cs.huji.ac.il with esmtp id 1YgarI-000CzD-0A; Fri, 10 Apr 2015 18:28:40 +0300 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2090\)) Subject: Re: Problem building world (amd64) this morning From: Daniel Braniss In-Reply-To: <20150410145529.GH15644@albert.catwhisker.org> Date: Fri, 10 Apr 2015 18:28:39 +0300 Message-Id: References: <5527D3FC.3000003@wintek.com> <20150410145529.GH15644@albert.catwhisker.org> To: David Wolfskill X-Mailer: Apple Mail (2.2090) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: Richard Kuhns , "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 15:28:59 -0000 > On Apr 10, 2015, at 5:55 PM, David Wolfskill = wrote: >=20 > On Fri, Apr 10, 2015 at 09:45:32AM -0400, Richard Kuhns wrote: >> Hello, >>=20 >> I've just updated /usr/src and attempted to buildworld. My last build >> was Mar 12 (r279935). The build fails with: >>=20 >> =3D=3D=3D> lib/csu/i386-elf (obj,depend,all,install) >> ld -m elf_i386_fbsd -Y P,/usr/obj/usr/src/lib32/usr/lib32 -o gcrt1.o = -r >> crt1_s.o gcrt1_c.o >> ld -m elf_i386_fbsd -Y P,/usr/obj/usr/src/lib32/usr/lib32 -o Scrt1.o = -r >> crt1_s.o Scrt1_c.o >> --localize-symbol _start1 Scrt1.o >> make[4]: exec(--localize-symbol) failed (No such file or directory) >> *** Error code 1 >>=20 >> Stop. >> make[4]: stopped in /usr/src/lib/csu/i386-elf >>=20 >> It looks like OBJCOPY is undefined. >>=20 >> My only build-related options in /etc/make.conf are >>=20 >>=20 >> OPTIONS_SET=3DOPTIMIZED_CFLAGS >> OPTIONS_UNSET=3D NLS BIND >>=20 >> Thanks for any help. >> .... >=20 > Well... about all I have for you is a set of counter-examples. >=20 > You didn't mention the revsion level of your source tree or what arch > you're using; here are "uname -vp" outputs from some recent successful > builds & smoke tests I've done for stable/10: the host is running 10.1-stable r281013 and danny@joker:/usr/src % svn info Path: . Working Copy Root Path: /usr/src URL: https://svn0.eu.freebsd.org/base/stable/10 Relative URL: ^/stable/10 Repository Root: https://svn0.eu.freebsd.org/base Repository UUID: ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f Revision: 281366 Node Kind: directory Schedule: normal Last Changed Author: kib Last Changed Rev: 281350 Last Changed Date: 2015-04-10 05:23:44 +0300 (Fri, 10 Apr 2015) >=20 > FreeBSD 10.1-STABLE #1 r281140M/281144:1001512: Mon Apr 6 05:28:04 = PDT 2015 root@g1-254.catwhisker.org = :/common/S2/obj/usr/src/sys/CANARY = amd64 > FreeBSD 10.1-STABLE #2 r281195M/281199:1001512: Tue Apr 7 05:23:53 = PDT 2015 root@g1-254.catwhisker.org = :/common/S2/obj/usr/src/sys/CANARY = amd64 > FreeBSD 10.1-STABLE #3 r281264M/281264:1001512: Wed Apr 8 05:24:16 = PDT 2015 root@g1-254.catwhisker.org = :/common/S2/obj/usr/src/sys/CANARY = amd64 > FreeBSD 10.1-STABLE #4 r281305M/281308:1001512: Thu Apr 9 04:36:46 = PDT 2015 root@g1-254.catwhisker.org = :/common/S2/obj/usr/src/sys/CANARY = amd64 > FreeBSD 10.1-STABLE #5 r281350M/281366:1001512: Fri Apr 10 06:01:05 = PDT 2015 root@g1-254.catwhisker.org = :/common/S2/obj/usr/src/sys/CANARY = amd64 >=20 > FreeBSD 10.1-STABLE #28 r281140M/281144:1001512: Mon Apr 6 04:19:31 = PDT 2015 root@g1-254.catwhisker.org = :/common/S1/obj/usr/src/sys/CANARY = i386 > FreeBSD 10.1-STABLE #29 r281195M/281199:1001512: Tue Apr 7 04:25:29 = PDT 2015 root@g1-254.catwhisker.org = :/common/S1/obj/usr/src/sys/CANARY = i386 > FreeBSD 10.1-STABLE #30 r281264M/281264:1001512: Wed Apr 8 04:27:16 = PDT 2015 root@g1-254.catwhisker.org = :/common/S1/obj/usr/src/sys/CANARY = i386 > FreeBSD 10.1-STABLE #31 r281305M/281308:1001512: Thu Apr 9 05:15:41 = PDT 2015 root@g1-254.catwhisker.org = :/common/S1/obj/usr/src/sys/CANARY = i386 > FreeBSD 10.1-STABLE #32 r281350M/281366:1001512: Fri Apr 10 04:19:40 = PDT 2015 root@g1-254.catwhisker.org = :/common/S1/obj/usr/src/sys/CANARY = i386 >=20 > FreeBSD 10.1-STABLE #1693 r277379M/277379:1001506: Mon Jan 19 = 05:17:01 PST 2015 root@freebeast.catwhisker.org = :/common/S1/obj/usr/src/sys/GENERIC = i386 > FreeBSD 10.1-STABLE #1694 r277409M/277417:1001506: Tue Jan 20 = 05:29:44 PST 2015 root@freebeast.catwhisker.org = :/common/S1/obj/usr/src/sys/GENERIC = i386 > FreeBSD 10.1-STABLE #1695 r277483M/277484:1001506: Wed Jan 21 = 04:46:49 PST 2015 root@freebeast.catwhisker.org = :/common/S1/obj/usr/src/sys/GENERIC = i386 > FreeBSD 10.1-STABLE #1696 r277526M/277528:1001506: Thu Jan 22 = 05:21:01 PST 2015 root@freebeast.catwhisker.org = :/common/S1/obj/usr/src/sys/GENERIC = i386 > FreeBSD 10.1-STABLE #1697 r277558M/277561:1001506: Fri Jan 23 = 04:47:46 PST 2015 root@freebeast.catwhisker.org = :/common/S1/obj/usr/src/sys/GENERIC = i386 >=20 > You may see > for > additional details. >=20 > Peace, > david > --=20 > David H. Wolfskill david@catwhisker.org = > Those who murder in the name of God or prophet are blasphemous = cowards. >=20 > See http://www.catwhisker.org/~david/publickey.gpg = for my public key. From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 17:49:43 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4958DFE for ; Fri, 10 Apr 2015 17:49:43 +0000 (UTC) Received: from mx2.enfer-du-nord.net (mx2.enfer-du-nord.net [IPv6:2001:41d0:8:6a29:1:1:0:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7C7FAB68 for ; Fri, 10 Apr 2015 17:49:42 +0000 (UTC) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Re: Problem building world (amd64) this morning From: Michael Grimm In-Reply-To: Date: Fri, 10 Apr 2015 19:49:38 +0200 Content-Transfer-Encoding: quoted-printable Message-Id: References: <5527D3FC.3000003@wintek.com> <20150410145529.GH15644@albert.catwhisker.org> <9B3B9CA5-2B7E-407E-98EA-285F86D30BEF@cs.huji.ac.il> To: "freebsd-stable@freebsd.org" X-Mailer: Apple Mail (2.2098) X-Virus-Scanned: clamav-milter 0.98.6 at mail.mer-waases.invalid X-Virus-Status: Clean X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 17:49:43 -0000 > On 10.04.2015, at 17:28, Dimitry Andric wrote: >=20 > On 10 Apr 2015, at 17:17, Daniel Braniss wrote: >>=20 >> I am having the same problem! >> ... >> make[4]: exec(--localize-symbol) failed (No such file or = directory) >> and it=E2=80=99s because OBJCOPY is not defined, >> older stuff shows objcopy =E2=80=A6, and now it=E2=80=99s ${OBJCOPY} >=20 > I've seen a few reports of this now, and it is probably caused by my = MFC > of r280980, but I have not been able to reproduce it. How are you > building world, and what are the contents of your make.conf and > src.conf? Are there any other special settings in your environment = that > influence the build? I'am seeing this too. Same error messages. Latest revision failing is: | Relative URL: ^/stable/10 | Revision: 281372 Latest revision compiling without any issue is: | Relative URL: ^/stable/10 | Revision: 281265 /etc/src.conf and /etc/make.conf are empty. HTH, Michael From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 18:18:22 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D4F83B27 for ; Fri, 10 Apr 2015 18:18:22 +0000 (UTC) Received: from zxy.spb.ru (zxy.spb.ru [195.70.199.98]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8ACCCEE4 for ; Fri, 10 Apr 2015 18:18:22 +0000 (UTC) Received: from slw by zxy.spb.ru with local (Exim 4.84 (FreeBSD)) (envelope-from ) id 1YgdVS-000Bqr-IK; Fri, 10 Apr 2015 21:18:18 +0300 Date: Fri, 10 Apr 2015 21:18:18 +0300 From: Slawa Olhovchenkov To: Michael Grimm Subject: Re: Problem building world (amd64) this morning Message-ID: <20150410181818.GL1394@zxy.spb.ru> References: <5527D3FC.3000003@wintek.com> <20150410145529.GH15644@albert.catwhisker.org> <9B3B9CA5-2B7E-407E-98EA-285F86D30BEF@cs.huji.ac.il> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: slw@zxy.spb.ru X-SA-Exim-Scanned: No (on zxy.spb.ru); SAEximRunCond expanded to false Cc: "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 18:18:22 -0000 On Fri, Apr 10, 2015 at 07:49:38PM +0200, Michael Grimm wrote: > > > On 10.04.2015, at 17:28, Dimitry Andric wrote: > > > > On 10 Apr 2015, at 17:17, Daniel Braniss wrote: > >> > >> I am having the same problem! > >> ... > >> make[4]: exec(--localize-symbol) failed (No such file or directory) > >> and it's because OBJCOPY is not defined, > >> older stuff shows objcopy ..., and now it's ${OBJCOPY} > > > > I've seen a few reports of this now, and it is probably caused by my MFC > > of r280980, but I have not been able to reproduce it. How are you > > building world, and what are the contents of your make.conf and > > src.conf? Are there any other special settings in your environment that > > influence the build? > > I'am seeing this too. Same error messages. > > Latest revision failing is: > > | Relative URL: ^/stable/10 > | Revision: 281372 > > Latest revision compiling without any issue is: > > | Relative URL: ^/stable/10 > | Revision: 281265 > > /etc/src.conf and /etc/make.conf are empty. Look like r281289 is cause. From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 18:56:06 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C4B9B0C for ; Fri, 10 Apr 2015 18:56:06 +0000 (UTC) Received: from mx2.enfer-du-nord.net (mx2.enfer-du-nord.net [IPv6:2001:41d0:8:6a29:1:1:0:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 436533B9 for ; Fri, 10 Apr 2015 18:56:06 +0000 (UTC) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Re: Problem building world (amd64) this morning From: Michael Grimm In-Reply-To: <20150410181818.GL1394@zxy.spb.ru> Date: Fri, 10 Apr 2015 20:55:55 +0200 Content-Transfer-Encoding: 7bit Message-Id: <20FD13EA-9A24-41B8-A0A3-19F5EDC8FB4E@odo.in-berlin.de> References: <5527D3FC.3000003@wintek.com> <20150410145529.GH15644@albert.catwhisker.org> <9B3B9CA5-2B7E-407E-98EA-285F86D30BEF@cs.huji.ac.il> <20150410181818.GL1394@zxy.spb.ru> To: "freebsd-stable@freebsd.org" X-Mailer: Apple Mail (2.2098) X-Virus-Scanned: clamav-milter 0.98.6 at mail.mer-waases.invalid X-Virus-Status: Clean X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 18:56:06 -0000 Slawa Olhovchenkov wrote: > On Fri, Apr 10, 2015 at 07:49:38PM +0200, Michael Grimm wrote: >> I'am seeing this too. Same error messages. >> >> Latest revision failing is: >> >> | Relative URL: ^/stable/10 >> | Revision: 281372 >> >> Latest revision compiling without any issue is: >> >> | Relative URL: ^/stable/10 >> | Revision: 281265 >> >> /etc/src.conf and /etc/make.conf are empty. > > Look like r281289 is cause. I can confirm that. r281288 compiles without failing, r281289 fails. Regards, Michael From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 19:13:07 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 408885C4 for ; Fri, 10 Apr 2015 19:13:07 +0000 (UTC) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "tensor.andric.com", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EB442874 for ; Fri, 10 Apr 2015 19:13:06 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7::d4c6:7555:3ed6:3b29] (unknown [IPv6:2001:7b8:3a7:0:d4c6:7555:3ed6:3b29]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 22D825C37; Fri, 10 Apr 2015 21:12:58 +0200 (CEST) Subject: Re: Problem building world (amd64) this morning Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Content-Type: multipart/signed; boundary="Apple-Mail=_C63863FE-7ECA-4FFB-B609-BF053A57B5F2"; protocol="application/pgp-signature"; micalg=pgp-sha1 X-Pgp-Agent: GPGMail 2.5b6 From: Dimitry Andric In-Reply-To: <20FD13EA-9A24-41B8-A0A3-19F5EDC8FB4E@odo.in-berlin.de> Date: Fri, 10 Apr 2015 21:12:46 +0200 Message-Id: <41483D80-FC3C-46B7-8121-9DD9D122B01E@FreeBSD.org> References: <5527D3FC.3000003@wintek.com> <20150410145529.GH15644@albert.catwhisker.org> <9B3B9CA5-2B7E-407E-98EA-285F86D30BEF@cs.huji.ac.il> <20150410181818.GL1394@zxy.spb.ru> <20FD13EA-9A24-41B8-A0A3-19F5EDC8FB4E@odo.in-berlin.de> To: Michael Grimm X-Mailer: Apple Mail (2.2098) Cc: "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 19:13:07 -0000 --Apple-Mail=_C63863FE-7ECA-4FFB-B609-BF053A57B5F2 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii On 10 Apr 2015, at 20:55, Michael Grimm wrote: > > Slawa Olhovchenkov wrote: >> On Fri, Apr 10, 2015 at 07:49:38PM +0200, Michael Grimm wrote: > >>> I'am seeing this too. Same error messages. >>> >>> Latest revision failing is: >>> >>> | Relative URL: ^/stable/10 >>> | Revision: 281372 >>> >>> Latest revision compiling without any issue is: >>> >>> | Relative URL: ^/stable/10 >>> | Revision: 281265 >>> >>> /etc/src.conf and /etc/make.conf are empty. >> >> Look like r281289 is cause. > > I can confirm that. r281288 compiles without failing, r281289 fails. I've tried all possible ways of reproducing this problem, but it always works for me. Can somebody who experiences the problem please do a clean build using script(1), and post the full build log somewhere? Preferably a make buildworld without -j, so commands are not interspersed. -Dimitry --Apple-Mail=_C63863FE-7ECA-4FFB-B609-BF053A57B5F2 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.27 iEYEARECAAYFAlUoILkACgkQsF6jCi4glqOp1QCcD8RXLoEGvMclivauSlWRCoH+ fcYAoNwg45kSadTrTDxArNJUq143o349 =MoGr -----END PGP SIGNATURE----- --Apple-Mail=_C63863FE-7ECA-4FFB-B609-BF053A57B5F2-- From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 19:32:19 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 076AEF7 for ; Fri, 10 Apr 2015 19:32:19 +0000 (UTC) Received: from mx2.enfer-du-nord.net (mx2.enfer-du-nord.net [IPv6:2001:41d0:8:6a29:1:1:0:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C0AE2AA6 for ; Fri, 10 Apr 2015 19:32:18 +0000 (UTC) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Re: Problem building world (amd64) this morning From: Michael Grimm In-Reply-To: <41483D80-FC3C-46B7-8121-9DD9D122B01E@FreeBSD.org> Date: Fri, 10 Apr 2015 21:32:14 +0200 Content-Transfer-Encoding: 7bit Message-Id: <5BA239A6-596E-422E-AC46-15D83CA7C880@odo.in-berlin.de> References: <5527D3FC.3000003@wintek.com> <20150410145529.GH15644@albert.catwhisker.org> <9B3B9CA5-2B7E-407E-98EA-285F86D30BEF@cs.huji.ac.il> <20150410181818.GL1394@zxy.spb.ru> <20FD13EA-9A24-41B8-A0A3-19F5EDC8FB4E@odo.in-berlin.de> <41483D80-FC3C-46B7-8121-9DD9D122B01E@FreeBSD.org> To: "freebsd-stable@freebsd.org" X-Mailer: Apple Mail (2.2098) X-Virus-Scanned: clamav-milter 0.98.6 at mail.mer-waases.invalid X-Virus-Status: Clean X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 19:32:19 -0000 Dimitry Andric wrote: > On 10 Apr 2015, at 20:55, Michael Grimm wrote: >> I can confirm that. r281288 compiles without failing, r281289 fails. > > I've tried all possible ways of reproducing this problem, but it always > works for me. Can somebody who experiences the problem please do a > clean build using script(1), and post the full build log somewhere? > Preferably a make buildworld without -j, so commands are not > interspersed. Compilation at r281289 is on its way. I'll send you a link after completion. Thanks and regards, Michael From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 19:43:04 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA0DC594 for ; Fri, 10 Apr 2015 19:43:04 +0000 (UTC) Received: from mx2.enfer-du-nord.net (mx2.enfer-du-nord.net [91.121.41.56]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6FB83C08 for ; Fri, 10 Apr 2015 19:43:04 +0000 (UTC) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Re: Problem building world (amd64) this morning From: Michael Grimm In-Reply-To: Date: Fri, 10 Apr 2015 21:43:00 +0200 Content-Transfer-Encoding: quoted-printable Message-Id: References: <5527D3FC.3000003@wintek.com> <20150410145529.GH15644@albert.catwhisker.org> <9B3B9CA5-2B7E-407E-98EA-285F86D30BEF@cs.huji.ac.il> To: "freebsd-stable@freebsd.org" X-Mailer: Apple Mail (2.2098) X-Virus-Scanned: clamav-milter 0.98.6 at mail.mer-waases.invalid X-Virus-Status: Clean X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 19:43:04 -0000 Michael Grimm wrote: > I'am seeing this too. Same error messages. >=20 > Latest revision failing is: >=20 > | Relative URL: ^/stable/10 > | Revision: 281372 >=20 > Latest revision compiling without any issue is: >=20 > | Relative URL: ^/stable/10 > | Revision: 281265 >=20 > /etc/src.conf and /etc/make.conf are empty. Ahh, I forgot to mention, I'm compiling a custom kernel with the = following additions, if that's of any relevance: | include GENERIC | ident CUSTOM | cpu HAMMER | nooptions DDB | nooptions GDB | nooptions DEADLKRES | nooptions INVARIANTS | nooptions INVARIANT_SUPPORT | nooptions WITNESS | nooptions WITNESS_SKIPSPIN | nooptions MALLOC_DEBUG_MAXZONES | device pf | device pflog | device pfsync | options ALTQ | options ALTQ_CBQ | options ALTQ_RED | options ALTQ_RIO | options ALTQ_HFSC | options ALTQ_PRIQ | options ALTQ_NOPCC | device crypto | options IPSEC | options IPSEC_NAT_T | options VIMAGE Regards, Michael= From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 20:42:35 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5703B49C for ; Fri, 10 Apr 2015 20:42:35 +0000 (UTC) Received: from tensor.andric.com (unknown [IPv6:2001:7b8:3a7:1:2d0:b7ff:fea0:8c26]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "tensor.andric.com", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0B7BE23D for ; Fri, 10 Apr 2015 20:42:35 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7::d4c6:7555:3ed6:3b29] (unknown [IPv6:2001:7b8:3a7:0:d4c6:7555:3ed6:3b29]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 10E8C5C37; Fri, 10 Apr 2015 22:42:32 +0200 (CEST) Subject: Re: Problem building world (amd64) this morning Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Content-Type: multipart/signed; boundary="Apple-Mail=_5A223399-9A17-4245-A1C7-D8FB4A672987"; protocol="application/pgp-signature"; micalg=pgp-sha1 X-Pgp-Agent: GPGMail 2.5b6 From: Dimitry Andric In-Reply-To: <5BA239A6-596E-422E-AC46-15D83CA7C880@odo.in-berlin.de> Date: Fri, 10 Apr 2015 22:42:20 +0200 Message-Id: References: <5527D3FC.3000003@wintek.com> <20150410145529.GH15644@albert.catwhisker.org> <9B3B9CA5-2B7E-407E-98EA-285F86D30BEF@cs.huji.ac.il> <20150410181818.GL1394@zxy.spb.ru> <20FD13EA-9A24-41B8-A0A3-19F5EDC8FB4E@odo.in-berlin.de> <41483D80-FC3C-46B7-8121-9DD9D122B01E@FreeBSD.org> <5BA239A6-596E-422E-AC46-15D83CA7C880@odo.in-berlin.de> To: Michael Grimm X-Mailer: Apple Mail (2.2098) Cc: "freebsd-stable@freebsd.org" X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 20:42:35 -0000 --Apple-Mail=_5A223399-9A17-4245-A1C7-D8FB4A672987 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii On 10 Apr 2015, at 21:32, Michael Grimm = wrote: >=20 > Dimitry Andric wrote: >=20 >> On 10 Apr 2015, at 20:55, Michael Grimm = wrote: >=20 >>> I can confirm that. r281288 compiles without failing, r281289 fails. >>=20 >> I've tried all possible ways of reproducing this problem, but it = always >> works for me. Can somebody who experiences the problem please do a >> clean build using script(1), and post the full build log somewhere? >> Preferably a make buildworld without -j, so commands are not >> interspersed. >=20 > Compilation at r281289 is on its way. I'll send you a link after = completion. Thanks, but you can stop that compilation now. :) I finally managed to reproduce the problem, and it turns out I also had to MFC r272814 and r272815, which I have done in r281382. That should really fix it properly... Sorry for the breakage. -Dimitry --Apple-Mail=_5A223399-9A17-4245-A1C7-D8FB4A672987 Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.27 iEYEARECAAYFAlUoNbUACgkQsF6jCi4glqMNvACfbPWqulbZvSEqEmAziu5gbq6e tacAn26KxpqaTONeYZaqjJYpXDjpIlYb =jb/R -----END PGP SIGNATURE----- --Apple-Mail=_5A223399-9A17-4245-A1C7-D8FB4A672987-- From owner-freebsd-stable@FreeBSD.ORG Fri Apr 10 21:13:21 2015 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9AE03DD5 for ; Fri, 10 Apr 2015 21:13:21 +0000 (UTC) Received: from mx2.enfer-du-nord.net (mx2.enfer-du-nord.net [IPv6:2001:41d0:8:6a29:1:1:0:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5E78F844 for ; Fri, 10 Apr 2015 21:13:20 +0000 (UTC) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2098\)) Subject: Re: Problem building world (amd64) this morning From: Michael Grimm In-Reply-To: Date: Fri, 10 Apr 2015 23:13:15 +0200 Content-Transfer-Encoding: quoted-printable Message-Id: References: <5527D3FC.3000003@wintek.com> <20150410145529.GH15644@albert.catwhisker.org> <9B3B9CA5-2B7E-407E-98EA-285F86D30BEF@cs.huji.ac.il> <20150410181818.GL1394@zxy.spb.ru> <20FD13EA-9A24-41B8-A0A3-19F5EDC8FB4E@odo.in-berlin.de> <41483D80-FC3C-46B7-8121-9DD9D122B01E@FreeBSD.org> <5BA239A6-596E-422E-AC46-15D83CA7C880@odo.in-berlin.de> To: "freebsd-stable@freebsd.org" X-Mailer: Apple Mail (2.2098) X-Virus-Scanned: clamav-milter 0.98.6 at mail.mer-waases.invalid X-Virus-Status: Clean X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Apr 2015 21:13:21 -0000 Dimitry Andric wrote > Michael Grimm wrote: >> Compilation at r281289 is on its way. I'll send you a link after = completion. >=20 > Thanks, but you can stop that compilation now. :) I was just about sending you my logfile :-) > I finally managed to > reproduce the problem, and it turns out I also had to MFC r272814 and > r272815, which I have done in r281382. That should really fix it > properly=E2=80=A6 I can confirm that. > Sorry for the breakage. No reason to feel sorry. Thanks and regards, Michael P.S. Sorry for my noise regarding kernel options when buildworld had had = an issue