From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 00:27:40 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA34173B; Sun, 14 Oct 2012 00:27:40 +0000 (UTC) (envelope-from asmrookie@gmail.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3918E8FC18; Sun, 14 Oct 2012 00:27:39 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id b5so3399758lbd.13 for ; Sat, 13 Oct 2012 17:27:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=Rxc5g4wNO4y2ULjCG1cAmZqW7FuwEG5lV1TUllRIA5w=; b=wAq+knDkyPPgB6zk4zV6/YsLOZeeBYxHxIlJ3Wyd+MMc4t6B1UWHUT1VsBEsxwgG2O 0zSZmxN7tw2zB+lsubupYb9ak9atWbU+iIW0VXzoOq2vGaIX+Ccd5fnpwmveWt+UhsxL csCZzZk/omCtcCtkYcIpnxEYL60pbmze0CANcd25EXFK8jcjKZSvf3svp1UcJ7HpQtrM KKw/lf4JWCLK1CRW3ffAa6IfQyV6AmLe8jAud1WTXr9vHbfsWMbDLVo47Q+99bDMG/Sp y6wcV7veEWdK2rMDvoz7M4EQdRfsYDscaILXrFEAk7bxamml5NHUh6atsSrkkGB3jotj 28EQ== MIME-Version: 1.0 Received: by 10.152.105.103 with SMTP id gl7mr6858057lab.10.1350174457780; Sat, 13 Oct 2012 17:27:37 -0700 (PDT) Sender: asmrookie@gmail.com Received: by 10.112.101.234 with HTTP; Sat, 13 Oct 2012 17:27:37 -0700 (PDT) In-Reply-To: References: <20120829060158.GA38721@x2.osted.lan> <20120831052003.GA91340@x2.osted.lan> <20120905201531.GA54452@x2.osted.lan> <20120917140055.GA9037@x2.osted.lan> Date: Sun, 14 Oct 2012 01:27:37 +0100 X-Google-Sender-Auth: nrt0Lp6hoJ9ZS2YaXxitERXyJxo Message-ID: Subject: Re: MPSAFE VFS -- List of upcoming actions From: Attilio Rao To: FreeBSD FS , freebsd-current@freebsd.org, Peter Holm , =?UTF-8?Q?Gustau_P=C3=A9rez?= , George Neville-Neil , Florian Smeets , bdrewery@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: attilio@FreeBSD.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 00:27:40 -0000 On Fri, Sep 21, 2012 at 1:22 AM, Attilio Rao wrote: > On Wed, Sep 19, 2012 at 3:48 AM, Attilio Rao wrote: >> On Fri, Jul 13, 2012 at 12:18 AM, Attilio Rao wrote: >>> 2012/7/4 Attilio Rao : >>>> 2012/6/29 Attilio Rao : >>>>> As already published several times, according to the following plan: >>>>> http://wiki.freebsd.org/NONMPSAFE_DEORBIT_VFS >>>>> >>>> >>>> I still haven't heard from Vivien or Edward, anyway as NTFS is >>>> basically only used RO these days (also the mount_ntfs code just >>>> permits RO mounting) I stripped all the uncomplete/bogus write support >>>> with the following patch: >>>> http://www.freebsd.org/~attilio/ntfs_remove_write.patch >>>> >>>> This is an attempt to make the code smaller and possibly just focus on >>>> the locking that really matter (as read-only filesystem). >>>> On some points of the patch I'm a bit less sure as we could easily >>>> take into account also write for things like vaccess() arguments, and >>>> make easier to re-add correct write support at some point in the >>>> future, but still force RO, even if the approach used in the patch is >>>> more correct IMHO. >>>> As an added bonus this patch cleans some dirty code in the mount >>>> operation and fixes a bug as vfs_mountedfrom() is called before real >>>> mounting is completed and can still fail. >>> >>> A quick update on this. >>> It looks like NTFS won't be completed for this GSoC thus I seriously >>> need to find an alternative to not loose the NTFS support entirely. >>> >>> I tried to look into the NTFS implementation right now and it is >>> really a poor support. As Peter has also verified, it can deadlock in >>> no-time, it compeltely violates VFS rules, etc. IMHO it deserves a >>> complete rewrite if we would still support in-kernel NTFS. I also >>> tried to look at the NetBSD implementation. Their code is someway >>> similar to our, but they used very complicated (and very dirty) code >>> to do the locking. Even if I don't know well enough NetBSD VFS, I have >>> the impression not all the races are correctly handled. Definitively, >>> not something I would like to port. >>> >>> Considering all that the only viable option would be meaning an >>> userland filesystem implementation. My preferred choice would be to >>> import PUFFS and librefuse on top of it but honestly it requires a lot >>> of time to be completed, time which I don't currently have as in 2 >>> months Giant must be gone by the VFS. >>> >>> I then decided to switch to gnn's rewamp of FUSE patches. You can find >>> his initial e-mail here: >>> http://lists.freebsd.org/pipermail/freebsd-fs/2012-March/013876.html >>> >>> I've precisely got the second version of George's patch and created >>> this dolphin branch: >>> svn://svn.freebsd.org/base/projects/fuse >>> >>> I'm fixing low hanging fruit for the moment (see r238411 for example) >>> and I still have to make a throughful review. >>> However my idea is to commit the support once: >>> - ntfs-3g is well stress-tested and proves to be bug-free >>> - there is no major/big technical issue pending after the reviews >> >> In the last weeks Peter, Florian, Gustau and I have been working in >> stabilizing fuse support. In the specific, Peter has worked hard on >> producing several utilities to nit stress-test fuse and in particular >> ntfs, Florian has improved fuse related ports (as explained later) and >> Gustau has done sparse testing. I feel moderately satisfied by the >> level of stability of fuse now to propose to wider usage, in >> particular given the huge amount of complaints I'm hearing around >> about occasional fuse users. >> >> The final target of the project is to completely import into base the >> content of fusefs-kmod starting from earlier posted patches by George. >> So far, we took care only of importing in the fuse branch the kernel >> part, so that fusefs-kmod userland part is still needed to be >> installed from ports, but I was studying the mount_fusefs licensing >> before to process with the import for the userland bits of it. >> >> The fixing has been happening here: >> svn://svn.freebsd.org/base/projects/fuse/ >> >> which is essentially an HEAD branch + fuse kernel components. In order >> to get fuse, please compile a kernel from this branch with FUSE option >> or simply build and load fuse module. >> Alternatively, a kernel patch that should work with HEAD@240684 is here: >> http://www.freebsd.org/~attilio/fuse_import/fuse_240684.patch >> >> I guess the patch can easilly apply to all FreeBSD branches, really, >> but it is not tested to anything else different then -CURRENT. >> >> As said you still need currently to build fusefs-kmod port. However >> you need these further patches, to be put in the fusefs-kmod/files/ >> directory:: >> http://www.freebsd.org/~attilio/fuse_import/patch-Makefile >> http://www.freebsd.org/~attilio/fuse_import/patch-mount_fusefs__mount_fusefs2.c >> >> They both disable the old kernel building/linking and import new >> functionality to let the new kernel support work well in presence of >> many consumers. >> >> In addition to fusefs-kmod, Bryan and Florian have also updated >> fusefs-lib and fusefs-ntfs ports. For instance, please refer to this >> e-mail: >> http://lists.freebsd.org/pipermail/freebsd-ports/2012-August/077950.html >> >> Even if this work is someway independent by the fusefs-kmod import, I >> warmly suggest to all of you to use their patches (and this what we >> have been testing so far too. > > So, after Bryan and Florian ports update, I've also committed userland > part of fusefs-kmod and now the project branch fully mirrors > functionality of fusefs-kmod. The code in projects/fuse, infact, will > also install mount_fusefs as part of the fuse support. I've committed the FUSE support into base as r241519. Few things I would like to stress out at the present time: - The import of the fusefs in base, along with update of fusefs-ntfs and fusefs-libs ports (which happened by Florian and Brian), will bring us a fairly good ntfs (and possibly smbfs too, which is currently untested, as far as I know) support. In particular, in-kernel ntfs is so fragile that I don't understand how people cannot easily experience deadlocks, memory leaks and panics at the present time. - In -CURRENT, you don't need to install fusefs-kmod anymore. It would be good if a port committer (Florian, Brian?) will update the port in order to forbid install of fusefs-kmod in -CURRENT at the present time. I didn't bump the __FreeBSD_version because it is really unnecessary (port can just detect 10xxxx version and be ok with not installing the port) but once I will MFC it, I will bump the version in order to make the port not installable in STABLE branches - It would be good if someone could give a sweep to the style(9) of the fuse code. I tried to reduce the changes to the gnn's proposed patches at the minimum, thus I didn't fix style before to commit it, but there are several style violations that should be addressed. This could be a work for junior developers willing to take over. - There are still a couple of bugs, but they are infrequent and minor enough that they can be addressed after the committing of the infrastructure. gnn has agreed to take care of them in the long term and I will feed him as soon as possible with the details to reproduce and fix them. I will also help directly with fuse code when I will have available time. Next step for the VFS deorbit project now include the disconnect of non-MPSAFE filesystems, including NTFS and SMBFS that can be now used as FUSE modules instead. Thanks, Attilio -- Peace can only be achieved by understanding - A. Einstein From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 02:07:02 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 466AE5D4; Sun, 14 Oct 2012 02:07:02 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 151F58FC0A; Sun, 14 Oct 2012 02:07:01 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9E26t6h054095; Sat, 13 Oct 2012 22:06:55 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9E26tSO054088; Sun, 14 Oct 2012 02:06:55 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 14 Oct 2012 02:06:55 GMT Message-Id: <201210140206.q9E26tSO054088@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc64/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 02:07:02 -0000 TB --- 2012-10-13 23:59:08 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-13 23:59:08 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-13 23:59:08 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2012-10-13 23:59:08 - cleaning the object tree TB --- 2012-10-13 23:59:08 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-13 23:59:08 - cd /tinderbox/HEAD/powerpc64/powerpc TB --- 2012-10-13 23:59:08 - /usr/local/bin/svn cleanup /src TB --- 2012-10-13 23:59:59 - /usr/local/bin/svn update /src TB --- 2012-10-14 00:00:07 - At svn revision 241519 TB --- 2012-10-14 00:00:08 - building world TB --- 2012-10-14 00:00:08 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 00:00:08 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 00:00:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 00:00:08 - SRCCONF=/dev/null TB --- 2012-10-14 00:00:08 - TARGET=powerpc TB --- 2012-10-14 00:00:08 - TARGET_ARCH=powerpc64 TB --- 2012-10-14 00:00:08 - TZ=UTC TB --- 2012-10-14 00:00:08 - __MAKE_CONF=/dev/null TB --- 2012-10-14 00:00:08 - cd /src TB --- 2012-10-14 00:00:08 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sun Oct 14 00:00:13 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -I/src/sbin/mount_cd9660/../mount -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/sbin/mount_cd9660/../mount/getmntopts.c cc -O2 -pipe -I/src/sbin/mount_cd9660/../mount -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -o mount_cd9660 mount_cd9660.o getmntopts.o -lkiconv gzip -cn /src/sbin/mount_cd9660/mount_cd9660.8 > mount_cd9660.8.gz ===> sbin/mount_fusefs (all) cc -O2 -pipe -I/src/sbin/mount_fusefs/../mount -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/sbin/mount_fusefs/mount_fusefs.c cc1: warnings being treated as errors /src/sbin/mount_fusefs/mount_fusefs.c: In function 'main': /src/sbin/mount_fusefs/mount_fusefs.c:239: warning: comparison is always true due to limited range of data type *** [mount_fusefs.o] Error code 1 Stop in /src/sbin/mount_fusefs. *** [all] Error code 1 Stop in /src/sbin. *** [sbin.all__D] Error code 1 Stop in /src. *** [everything] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-14 02:06:55 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-14 02:06:55 - ERROR: failed to build world TB --- 2012-10-14 02:06:55 - 6393.59 user 792.45 system 7666.19 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 02:16:54 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D35C9B03; Sun, 14 Oct 2012 02:16:54 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 993A88FC14; Sun, 14 Oct 2012 02:16:54 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9E2GrEg079488; Sat, 13 Oct 2012 22:16:53 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9E2GrgT079487; Sun, 14 Oct 2012 02:16:53 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 14 Oct 2012 02:16:53 GMT Message-Id: <201210140216.q9E2GrgT079487@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 02:16:54 -0000 TB --- 2012-10-14 01:07:01 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-14 01:07:01 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-14 01:07:01 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-10-14 01:07:01 - cleaning the object tree TB --- 2012-10-14 01:07:01 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-14 01:07:01 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2012-10-14 01:07:01 - /usr/local/bin/svn cleanup /src TB --- 2012-10-14 01:07:36 - /usr/local/bin/svn update /src TB --- 2012-10-14 01:07:43 - At svn revision 241519 TB --- 2012-10-14 01:07:44 - building world TB --- 2012-10-14 01:07:44 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 01:07:44 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 01:07:44 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 01:07:44 - SRCCONF=/dev/null TB --- 2012-10-14 01:07:44 - TARGET=sparc64 TB --- 2012-10-14 01:07:44 - TARGET_ARCH=sparc64 TB --- 2012-10-14 01:07:44 - TZ=UTC TB --- 2012-10-14 01:07:44 - __MAKE_CONF=/dev/null TB --- 2012-10-14 01:07:44 - cd /src TB --- 2012-10-14 01:07:44 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sun Oct 14 01:07:49 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Sun Oct 14 02:08:14 UTC 2012 TB --- 2012-10-14 02:08:14 - generating LINT kernel config TB --- 2012-10-14 02:08:14 - cd /src/sys/sparc64/conf TB --- 2012-10-14 02:08:14 - /usr/bin/make -B LINT TB --- 2012-10-14 02:08:14 - cd /src/sys/sparc64/conf TB --- 2012-10-14 02:08:14 - /usr/sbin/config -m LINT TB --- 2012-10-14 02:08:14 - building LINT kernel TB --- 2012-10-14 02:08:14 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 02:08:14 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 02:08:14 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 02:08:14 - SRCCONF=/dev/null TB --- 2012-10-14 02:08:14 - TARGET=sparc64 TB --- 2012-10-14 02:08:14 - TARGET_ARCH=sparc64 TB --- 2012-10-14 02:08:14 - TZ=UTC TB --- 2012-10-14 02:08:14 - __MAKE_CONF=/dev/null TB --- 2012-10-14 02:08:14 - cd /src TB --- 2012-10-14 02:08:14 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun Oct 14 02:08:14 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/fs/fdescfs/fdesc_vfsops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/fs/fdescfs/fdesc_vnops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/fs/fifofs/fifo_vnops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/fs/fuse/fuse_device.c In file included from /src/sys/fs/fuse/fuse_device.c:84: /src/sys/fs/fuse/fuse_debug.h:68:1: error: "DEBUG" redefined In file included from :0: ./opt_global.h:33:1: error: this is the location of the previous definition *** [fuse_device.o] Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-14 02:16:53 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-14 02:16:53 - ERROR: failed to build LINT kernel TB --- 2012-10-14 02:16:53 - 3421.90 user 582.86 system 4192.62 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 03:14:32 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 77D914F4; Sun, 14 Oct 2012 03:14:32 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 366DA8FC08; Sun, 14 Oct 2012 03:14:32 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9E3EVnh001851; Sat, 13 Oct 2012 23:14:31 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9E3EV6v001850; Sun, 14 Oct 2012 03:14:31 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 14 Oct 2012 03:14:31 GMT Message-Id: <201210140314.q9E3EV6v001850@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on arm/arm Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 03:14:32 -0000 TB --- 2012-10-14 02:20:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-14 02:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-14 02:20:00 - starting HEAD tinderbox run for arm/arm TB --- 2012-10-14 02:20:00 - cleaning the object tree TB --- 2012-10-14 02:20:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-14 02:20:00 - cd /tinderbox/HEAD/arm/arm TB --- 2012-10-14 02:20:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-14 02:23:59 - /usr/local/bin/svn update /src TB --- 2012-10-14 02:24:12 - At svn revision 241519 TB --- 2012-10-14 02:24:13 - building world TB --- 2012-10-14 02:24:13 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 02:24:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 02:24:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 02:24:13 - SRCCONF=/dev/null TB --- 2012-10-14 02:24:13 - TARGET=arm TB --- 2012-10-14 02:24:13 - TARGET_ARCH=arm TB --- 2012-10-14 02:24:13 - TZ=UTC TB --- 2012-10-14 02:24:13 - __MAKE_CONF=/dev/null TB --- 2012-10-14 02:24:13 - cd /src TB --- 2012-10-14 02:24:13 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sun Oct 14 02:24:21 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O -pipe -I/src/sbin/mount_cd9660/../mount -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/sbin/mount_cd9660/../mount/getmntopts.c cc -O -pipe -I/src/sbin/mount_cd9660/../mount -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -o mount_cd9660 mount_cd9660.o getmntopts.o -lkiconv gzip -cn /src/sbin/mount_cd9660/mount_cd9660.8 > mount_cd9660.8.gz ===> sbin/mount_fusefs (all) cc -O -pipe -I/src/sbin/mount_fusefs/../mount -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/sbin/mount_fusefs/mount_fusefs.c cc1: warnings being treated as errors /src/sbin/mount_fusefs/mount_fusefs.c: In function 'main': /src/sbin/mount_fusefs/mount_fusefs.c:239: warning: comparison is always true due to limited range of data type *** [mount_fusefs.o] Error code 1 Stop in /src/sbin/mount_fusefs. *** [all] Error code 1 Stop in /src/sbin. *** [sbin.all__D] Error code 1 Stop in /src. *** [everything] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-14 03:14:31 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-14 03:14:31 - ERROR: failed to build world TB --- 2012-10-14 03:14:31 - 2088.10 user 493.71 system 3270.76 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 04:44:27 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3540A36A; Sun, 14 Oct 2012 04:44:27 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx1.freebsd.org (Postfix) with ESMTP id E9D2B8FC08; Sun, 14 Oct 2012 04:44:26 +0000 (UTC) Received: by mail-pa0-f54.google.com with SMTP id bi1so4176103pad.13 for ; Sat, 13 Oct 2012 21:44:26 -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 :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=THvl5d5HC+ybHUNYgkzy7aiTQA3S5Dlrn07zt8PK+N0=; b=sfaTs+Bntx6M90y/hjWsFSH7cJMXB6MJ68JfXYQLib3yEzGWZezGOk75smDeyMz/nC u2b3qRSdz60Q6BF6TAtWZl6mUd8qYzZjjkrkB06US010KPU43c/wFY1A0cjiMjL3h67U saiPLbZLhEBk0dUg0khsyOBVcyiObT6gVFJG57T/MmQfamQDtNwnqimwU65ds9mVv5dP JjMHSfmCOlBl4K/tnWEqz6xvG2DAjaxQ/nNqqCnt3lzoGpBR/TZjckdxBRxSQEC/stUs AmB/zoYOu2QyUcmvDDR/Lh283GOH5Is00JTbwJRn/tnhhl782SV7dbk5YjRlqDqwqS3o bs6g== MIME-Version: 1.0 Received: by 10.66.74.65 with SMTP id r1mr22978255pav.75.1350189866410; Sat, 13 Oct 2012 21:44:26 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.68.146.233 with HTTP; Sat, 13 Oct 2012 21:44:26 -0700 (PDT) In-Reply-To: <5079DCCE.4020901@FreeBSD.org> References: <1350153522261-5751733.post@n5.nabble.com> <5079DCCE.4020901@FreeBSD.org> Date: Sat, 13 Oct 2012 21:44:26 -0700 X-Google-Sender-Auth: VXCmKPEgWeQW8SpSdHV_wzKzPpM Message-ID: Subject: Re: new DragonFly-3.2 scheduler and PostgreSQL comparision with FreeBSD 9.1-RC1 From: Adrian Chadd To: Pedro Giffuni Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 04:44:27 -0000 On 13 October 2012 14:27, Pedro Giffuni wrote: > Actually ... > > > On 10/13/2012 13:38, Jakub Lach wrote: >> >> I'm not at all up to date with DragonFly, so does anybody know >> what did they change so spectacularly between 3.0/3.2? >> > Their explanation of the changes is here: > > http://www.shiningsilence.com/dbsdlog/2012/09/19/10403.html Sweet. That's really quite impressive. Now, to wait for the weigh-in by the scheduler and VM peeps. Maybe this issomething -HEAD is going to get better at. Alan has been doing a lot of locking reworking in the VM system lately. Adrian From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 05:02:10 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 195F85D6; Sun, 14 Oct 2012 05:02:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id D19E48FC08; Sun, 14 Oct 2012 05:02:09 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9E528Ae096960; Sun, 14 Oct 2012 01:02:08 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9E52802096959; Sun, 14 Oct 2012 05:02:08 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 14 Oct 2012 05:02:08 GMT Message-Id: <201210140502.q9E52802096959@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on ia64/ia64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 05:02:10 -0000 TB --- 2012-10-14 03:14:31 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-14 03:14:31 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-14 03:14:31 - starting HEAD tinderbox run for ia64/ia64 TB --- 2012-10-14 03:14:31 - cleaning the object tree TB --- 2012-10-14 03:14:31 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-14 03:14:31 - cd /tinderbox/HEAD/ia64/ia64 TB --- 2012-10-14 03:14:31 - /usr/local/bin/svn cleanup /src TB --- 2012-10-14 03:15:02 - /usr/local/bin/svn update /src TB --- 2012-10-14 03:15:08 - At svn revision 241519 TB --- 2012-10-14 03:15:09 - building world TB --- 2012-10-14 03:15:09 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 03:15:09 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 03:15:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 03:15:09 - SRCCONF=/dev/null TB --- 2012-10-14 03:15:09 - TARGET=ia64 TB --- 2012-10-14 03:15:09 - TARGET_ARCH=ia64 TB --- 2012-10-14 03:15:09 - TZ=UTC TB --- 2012-10-14 03:15:09 - __MAKE_CONF=/dev/null TB --- 2012-10-14 03:15:09 - cd /src TB --- 2012-10-14 03:15:09 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sun Oct 14 03:15:14 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Sun Oct 14 04:48:14 UTC 2012 TB --- 2012-10-14 04:48:14 - generating LINT kernel config TB --- 2012-10-14 04:48:14 - cd /src/sys/ia64/conf TB --- 2012-10-14 04:48:14 - /usr/bin/make -B LINT TB --- 2012-10-14 04:48:15 - cd /src/sys/ia64/conf TB --- 2012-10-14 04:48:15 - /usr/sbin/config -m LINT TB --- 2012-10-14 04:48:15 - building LINT kernel TB --- 2012-10-14 04:48:15 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 04:48:15 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 04:48:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 04:48:15 - SRCCONF=/dev/null TB --- 2012-10-14 04:48:15 - TARGET=ia64 TB --- 2012-10-14 04:48:15 - TARGET_ARCH=ia64 TB --- 2012-10-14 04:48:15 - TZ=UTC TB --- 2012-10-14 04:48:15 - __MAKE_CONF=/dev/null TB --- 2012-10-14 04:48:15 - cd /src TB --- 2012-10-14 04:48:15 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun Oct 14 04:48:15 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/fs/fdescfs/fdesc_vfsops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/fs/fdescfs/fdesc_vnops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/fs/fifofs/fifo_vnops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/fs/fuse/fuse_device.c In file included from /src/sys/fs/fuse/fuse_device.c:84: /src/sys/fs/fuse/fuse_debug.h:68:1: error: "DEBUG" redefined In file included from :0: ./opt_global.h:37:1: error: this is the location of the previous definition *** [fuse_device.o] Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-14 05:02:08 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-14 05:02:08 - ERROR: failed to build LINT kernel TB --- 2012-10-14 05:02:08 - 5092.95 user 715.73 system 6457.20 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 05:05:59 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 070F9788; Sun, 14 Oct 2012 05:05:59 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id B7A918FC16; Sun, 14 Oct 2012 05:05:58 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9E55vLs023252; Sun, 14 Oct 2012 01:05:57 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9E55vZc023241; Sun, 14 Oct 2012 05:05:57 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 14 Oct 2012 05:05:57 GMT Message-Id: <201210140505.q9E55vZc023241@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/pc98 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 05:05:59 -0000 TB --- 2012-10-14 02:20:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-14 02:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-14 02:20:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2012-10-14 02:20:00 - cleaning the object tree TB --- 2012-10-14 02:20:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-14 02:20:00 - cd /tinderbox/HEAD/i386/pc98 TB --- 2012-10-14 02:20:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-14 02:23:58 - /usr/local/bin/svn update /src TB --- 2012-10-14 02:24:09 - At svn revision 241519 TB --- 2012-10-14 02:24:10 - building world TB --- 2012-10-14 02:24:10 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 02:24:10 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 02:24:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 02:24:10 - SRCCONF=/dev/null TB --- 2012-10-14 02:24:10 - TARGET=pc98 TB --- 2012-10-14 02:24:10 - TARGET_ARCH=i386 TB --- 2012-10-14 02:24:10 - TZ=UTC TB --- 2012-10-14 02:24:10 - __MAKE_CONF=/dev/null TB --- 2012-10-14 02:24:10 - cd /src TB --- 2012-10-14 02:24:10 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sun Oct 14 02:24:16 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Sun Oct 14 04:54:51 UTC 2012 TB --- 2012-10-14 04:54:51 - generating LINT kernel config TB --- 2012-10-14 04:54:51 - cd /src/sys/pc98/conf TB --- 2012-10-14 04:54:51 - /usr/bin/make -B LINT TB --- 2012-10-14 04:54:51 - cd /src/sys/pc98/conf TB --- 2012-10-14 04:54:51 - /usr/sbin/config -m LINT TB --- 2012-10-14 04:54:51 - building LINT kernel TB --- 2012-10-14 04:54:51 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 04:54:51 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 04:54:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 04:54:51 - SRCCONF=/dev/null TB --- 2012-10-14 04:54:51 - TARGET=pc98 TB --- 2012-10-14 04:54:51 - TARGET_ARCH=i386 TB --- 2012-10-14 04:54:51 - TZ=UTC TB --- 2012-10-14 04:54:51 - __MAKE_CONF=/dev/null TB --- 2012-10-14 04:54:51 - cd /src TB --- 2012-10-14 04:54:51 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun Oct 14 04:54:52 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fdescfs/fdesc_vfsops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fdescfs/fdesc_vnops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fifofs/fifo_vnops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fuse/fuse_device.c In file included from /src/sys/fs/fuse/fuse_device.c:84: /src/sys/fs/fuse/fuse_debug.h:68:1: error: "DEBUG" redefined In file included from :0: ./opt_global.h:38:1: error: this is the location of the previous definition *** [fuse_device.o] Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-14 05:05:57 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-14 05:05:57 - ERROR: failed to build LINT kernel TB --- 2012-10-14 05:05:57 - 7323.60 user 1018.23 system 9957.57 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 05:09:08 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 73C699AE; Sun, 14 Oct 2012 05:09:08 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 2F3CC8FC08; Sun, 14 Oct 2012 05:09:07 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9E5973I034865; Sun, 14 Oct 2012 01:09:07 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9E597tw034860; Sun, 14 Oct 2012 05:09:07 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 14 Oct 2012 05:09:07 GMT Message-Id: <201210140509.q9E597tw034860@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 05:09:08 -0000 TB --- 2012-10-14 02:20:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-14 02:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-14 02:20:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-14 02:20:00 - cleaning the object tree TB --- 2012-10-14 02:20:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-14 02:20:00 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-14 02:20:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-14 02:23:22 - /usr/local/bin/svn update /src TB --- 2012-10-14 02:23:49 - At svn revision 241519 TB --- 2012-10-14 02:23:50 - building world TB --- 2012-10-14 02:23:50 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 02:23:50 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 02:23:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 02:23:50 - SRCCONF=/dev/null TB --- 2012-10-14 02:23:50 - TARGET=i386 TB --- 2012-10-14 02:23:50 - TARGET_ARCH=i386 TB --- 2012-10-14 02:23:50 - TZ=UTC TB --- 2012-10-14 02:23:50 - __MAKE_CONF=/dev/null TB --- 2012-10-14 02:23:50 - cd /src TB --- 2012-10-14 02:23:50 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sun Oct 14 02:24:00 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Sun Oct 14 04:55:55 UTC 2012 TB --- 2012-10-14 04:55:55 - generating LINT kernel config TB --- 2012-10-14 04:55:55 - cd /src/sys/i386/conf TB --- 2012-10-14 04:55:55 - /usr/bin/make -B LINT TB --- 2012-10-14 04:55:55 - cd /src/sys/i386/conf TB --- 2012-10-14 04:55:55 - /usr/sbin/config -m LINT TB --- 2012-10-14 04:55:55 - building LINT kernel TB --- 2012-10-14 04:55:55 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 04:55:55 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 04:55:55 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 04:55:55 - SRCCONF=/dev/null TB --- 2012-10-14 04:55:55 - TARGET=i386 TB --- 2012-10-14 04:55:55 - TARGET_ARCH=i386 TB --- 2012-10-14 04:55:55 - TZ=UTC TB --- 2012-10-14 04:55:55 - __MAKE_CONF=/dev/null TB --- 2012-10-14 04:55:55 - cd /src TB --- 2012-10-14 04:55:55 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun Oct 14 04:55:55 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fdescfs/fdesc_vfsops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fdescfs/fdesc_vnops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fifofs/fifo_vnops.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fuse/fuse_device.c In file included from /src/sys/fs/fuse/fuse_device.c:84: /src/sys/fs/fuse/fuse_debug.h:68:1: error: "DEBUG" redefined In file included from :0: ./opt_global.h:38:1: error: this is the location of the previous definition *** [fuse_device.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-14 05:09:07 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-14 05:09:07 - ERROR: failed to build LINT kernel TB --- 2012-10-14 05:09:07 - 7463.95 user 1036.27 system 10146.99 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 05:45:47 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23A1BC64; Sun, 14 Oct 2012 05:45:47 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id D8A448FC14; Sun, 14 Oct 2012 05:45:46 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9E5jji8001135; Sun, 14 Oct 2012 01:45:45 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9E5jjTZ001118; Sun, 14 Oct 2012 05:45:45 GMT (envelope-from tinderbox@freebsd.org) Date: Sun, 14 Oct 2012 05:45:45 GMT Message-Id: <201210140545.q9E5jjTZ001118@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 05:45:47 -0000 TB --- 2012-10-14 02:20:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-14 02:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-14 02:20:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-10-14 02:20:00 - cleaning the object tree TB --- 2012-10-14 02:20:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-14 02:20:00 - cd /tinderbox/HEAD/amd64/amd64 TB --- 2012-10-14 02:20:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-14 02:23:24 - /usr/local/bin/svn update /src TB --- 2012-10-14 02:23:55 - At svn revision 241519 TB --- 2012-10-14 02:23:56 - building world TB --- 2012-10-14 02:23:56 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 02:23:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 02:23:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 02:23:56 - SRCCONF=/dev/null TB --- 2012-10-14 02:23:56 - TARGET=amd64 TB --- 2012-10-14 02:23:56 - TARGET_ARCH=amd64 TB --- 2012-10-14 02:23:56 - TZ=UTC TB --- 2012-10-14 02:23:56 - __MAKE_CONF=/dev/null TB --- 2012-10-14 02:23:56 - cd /src TB --- 2012-10-14 02:23:56 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sun Oct 14 02:24:02 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Sun Oct 14 05:32:30 UTC 2012 TB --- 2012-10-14 05:32:30 - generating LINT kernel config TB --- 2012-10-14 05:32:30 - cd /src/sys/amd64/conf TB --- 2012-10-14 05:32:30 - /usr/bin/make -B LINT TB --- 2012-10-14 05:32:30 - cd /src/sys/amd64/conf TB --- 2012-10-14 05:32:30 - /usr/sbin/config -m LINT TB --- 2012-10-14 05:32:30 - building LINT kernel TB --- 2012-10-14 05:32:30 - CROSS_BUILD_TESTING=YES TB --- 2012-10-14 05:32:30 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-14 05:32:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-14 05:32:30 - SRCCONF=/dev/null TB --- 2012-10-14 05:32:30 - TARGET=amd64 TB --- 2012-10-14 05:32:30 - TARGET_ARCH=amd64 TB --- 2012-10-14 05:32:30 - TZ=UTC TB --- 2012-10-14 05:32:30 - __MAKE_CONF=/dev/null TB --- 2012-10-14 05:32:30 - cd /src TB --- 2012-10-14 05:32:30 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sun Oct 14 05:32:30 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fdescfs/fdesc_vfsops.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fdescfs/fdesc_vnops.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fifofs/fifo_vnops.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/fs/fuse/fuse_device.c In file included from /src/sys/fs/fuse/fuse_device.c:84: /src/sys/fs/fuse/fuse_debug.h:68:1: error: "DEBUG" redefined In file included from :0: ./opt_global.h:32:1: error: this is the location of the previous definition *** [fuse_device.o] Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-14 05:45:45 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-14 05:45:45 - ERROR: failed to build LINT kernel TB --- 2012-10-14 05:45:45 - 8892.86 user 1354.09 system 12345.44 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 08:09:54 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 058E35D3 for ; Sun, 14 Oct 2012 08:09:54 +0000 (UTC) (envelope-from jakub_lach@mailplus.pl) Received: from sam.nabble.com (sam.nabble.com [216.139.236.26]) by mx1.freebsd.org (Postfix) with ESMTP id D54128FC08 for ; Sun, 14 Oct 2012 08:09:53 +0000 (UTC) Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1TNJGd-0006w1-5C for freebsd-current@freebsd.org; Sun, 14 Oct 2012 01:09:47 -0700 Date: Sun, 14 Oct 2012 01:09:47 -0700 (PDT) From: Jakub Lach To: freebsd-current@freebsd.org Message-ID: <1350202187139-5751862.post@n5.nabble.com> In-Reply-To: <5079DCCE.4020901@FreeBSD.org> References: <1350153522261-5751733.post@n5.nabble.com> <5079DCCE.4020901@FreeBSD.org> Subject: Re: new DragonFly-3.2 scheduler and PostgreSQL comparision with FreeBSD 9.1-RC1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 08:09:54 -0000 Thanks for replies. "* Finally, default values for many things on 64-bit machines have been adjusted upward significantly to make proper use of available resources" Well that one should be fast to test, if it really makes so much difference. "* Scheduler rewrite" They threw out old scheduler and have instant gains? That's too good to be true, seeing as still some loathe ULE in FreeBSD after all this time. etc. I would like to see some independent benchmarks and not only Postgres too. If they are really onto something, that's good and I'm happy for them, as they were supposedly performance oriented projected, but it haven't show up in past benches. -- View this message in context: http://freebsd.1045724.n5.nabble.com/Re-new-DragonFly-3-2-scheduler-and-PostgreSQL-comparision-with-FreeBSD-9-1-RC1-tp5751589p5751862.html Sent from the freebsd-current mailing list archive at Nabble.com. From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 09:47:25 2012 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 11E86857; Sun, 14 Oct 2012 09:47:25 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id ED8858FC17; Sun, 14 Oct 2012 09:47:23 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id MAA28653; Sun, 14 Oct 2012 12:47:22 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1TNKn4-000CbC-GJ; Sun, 14 Oct 2012 12:47:22 +0300 Message-ID: <507A8A29.4070601@FreeBSD.org> Date: Sun, 14 Oct 2012 12:47:21 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 CC: freebsd-current@FreeBSD.org Subject: Re: new DragonFly-3.2 scheduler and PostgreSQL comparision with FreeBSD 9.1-RC1 References: <1350153522261-5751733.post@n5.nabble.com> <5079DCCE.4020901@FreeBSD.org> In-Reply-To: <5079DCCE.4020901@FreeBSD.org> X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 09:47:25 -0000 on 14/10/2012 00:27 Pedro Giffuni said the following: > Actually ... > > On 10/13/2012 13:38, Jakub Lach wrote: >> I'm not at all up to date with DragonFly, so does anybody know >> what did they change so spectacularly between 3.0/3.2? >> > Their explanation of the changes is here: > > http://www.shiningsilence.com/dbsdlog/2012/09/19/10403.html >From the article: (3) It will detect process block/wakeup events which e.g. tie two processes together, and will try to move the process pairs closer to each other using that information. For example, if you have many postgres clients and servers on a large server, enough to load down all cores, the client and server pairs will be localized to the same socket, thus making use of chip caches to facilitate communications between the two processes. This sounds like a nice heuristic. Currently our code unintentionally does the opposite quite often. -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 10:11:47 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 979BF4B0; Sun, 14 Oct 2012 10:11:47 +0000 (UTC) (envelope-from mavbsd@gmail.com) Received: from mail-la0-f54.google.com (mail-la0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id CBFF18FC0C; Sun, 14 Oct 2012 10:11:46 +0000 (UTC) Received: by mail-la0-f54.google.com with SMTP id e12so3435963lag.13 for ; Sun, 14 Oct 2012 03:11:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=Weuuj3YOdhf4xK+Q9mAk4RbI/W4hclAwH5AfKU26i/E=; b=X2jv5lR9GFQQi3DCyLx62TRdK4ZnzyoREQr0U+XqPZzmfmAo5fGie1XV0tytZbIIMu EsfA/kHlaVoOj/F9X3a2d2OX5ABrvs4ebD3gjsf7XGpgCoELMBwkE7AnYu0lwxt0zTFi cFnh4qM2ammjyStMpBXzDst/699rvURDc6qYO/a1WJxLvYtq6mMoUEYtC8Z4hnlkzmWg DYA+5l5XQjGV6JfnozSGTZhr9+nZWH/aW9HP77TekVu0HG6JVRngHmLeb9Hu7wrcWLg8 ZkgrtTzk6DR0+2A5g7ND+ly1j8O88zrS+JngmZnxa2FlQb+0PLkdNFkomJDxJPGH+H2r 7YlA== Received: by 10.112.28.98 with SMTP id a2mr3156669lbh.110.1350209505129; Sun, 14 Oct 2012 03:11:45 -0700 (PDT) Received: from mavbook.mavhome.dp.ua (mavhome.mavhome.dp.ua. [213.227.240.37]) by mx.google.com with ESMTPS id fp7sm3532612lab.4.2012.10.14.03.11.43 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 14 Oct 2012 03:11:44 -0700 (PDT) Sender: Alexander Motin Message-ID: <507A8FDD.4040703@FreeBSD.org> Date: Sun, 14 Oct 2012 13:11:41 +0300 From: Alexander Motin User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:13.0) Gecko/20120628 Thunderbird/13.0.1 MIME-Version: 1.0 To: Andriy Gapon Subject: Re: new DragonFly-3.2 scheduler and PostgreSQL comparision with FreeBSD 9.1-RC1 References: <1350153522261-5751733.post@n5.nabble.com> <5079DCCE.4020901@FreeBSD.org> <507A8A29.4070601@FreeBSD.org> In-Reply-To: <507A8A29.4070601@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-current@FreeBSD.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 10:11:47 -0000 On 14.10.2012 12:47, Andriy Gapon wrote: > on 14/10/2012 00:27 Pedro Giffuni said the following: >> Actually ... >> >> On 10/13/2012 13:38, Jakub Lach wrote: >>> I'm not at all up to date with DragonFly, so does anybody know >>> what did they change so spectacularly between 3.0/3.2? >>> >> Their explanation of the changes is here: >> >> http://www.shiningsilence.com/dbsdlog/2012/09/19/10403.html > > From the article: > > (3) It will detect process block/wakeup events which e.g. tie two > processes together, and will try to move the process pairs closer > to each other using that information. > > For example, if you have many postgres clients and servers on a > large server, enough to load down all cores, the client and > server pairs will be localized to the same socket, thus making > use of chip caches to facilitate communications between the two > processes. > > This sounds like a nice heuristic. Currently our code unintentionally does the > opposite quite often. Yes, that is true. Present ULE code puts too much attention to the cache/socket load balance and affinity to previous run places. That way is quite simple and straightforward. More sophisticated way would be to have some kind of thresholds (for example, in number of context switches per second) where caller thread cache affinity becomes more important then callee thread's previous cache affinity. But I guess it can be quite application-specific. In mentioned case of PostgreSQL I guess there could be cases when cache affinity between server processes is more important then affinity between servers and clients. -- Alexander Motin From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 15:21:38 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5619D2E0 for ; Sun, 14 Oct 2012 15:21:38 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.21]) by mx1.freebsd.org (Postfix) with ESMTP id 2B2288FC0C for ; Sun, 14 Oct 2012 15:21:38 +0000 (UTC) Received: from troutmask.apl.washington.edu (localhost.apl.washington.edu [127.0.0.1]) by troutmask.apl.washington.edu (8.14.5/8.14.5) with ESMTP id q9EFLWSd057751; Sun, 14 Oct 2012 08:21:32 -0700 (PDT) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.14.5/8.14.5/Submit) id q9EFLVwj057750; Sun, 14 Oct 2012 08:21:31 -0700 (PDT) (envelope-from sgk) Date: Sun, 14 Oct 2012 08:21:31 -0700 From: Steve Kargl To: Jakub Lach Subject: Re: new DragonFly-3.2 scheduler and PostgreSQL comparision with FreeBSD 9.1-RC1 Message-ID: <20121014152131.GA57720@troutmask.apl.washington.edu> References: <1350153522261-5751733.post@n5.nabble.com> <5079DCCE.4020901@FreeBSD.org> <1350202187139-5751862.post@n5.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1350202187139-5751862.post@n5.nabble.com> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 15:21:38 -0000 On Sun, Oct 14, 2012 at 01:09:47AM -0700, Jakub Lach wrote: > > "* Scheduler rewrite" > > They threw out old scheduler and have instant gains? That's > too good to be true, seeing as still some loathe ULE in > FreeBSD after all this time. > 'loathe' appears to be an interesting choice of word. I do not loathe ULE, but I also do not use ULE. Why? Because in my testing with my workloads, I found ULE to perform poorly in comparison to 4BSD. -- Steve From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 15:42:19 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6892CA37 for ; Sun, 14 Oct 2012 15:42:19 +0000 (UTC) (envelope-from jakub_lach@mailplus.pl) Received: from sam.nabble.com (sam.nabble.com [216.139.236.26]) by mx1.freebsd.org (Postfix) with ESMTP id 3EBEA8FC14 for ; Sun, 14 Oct 2012 15:42:18 +0000 (UTC) Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1TNQKX-0006OV-P0 for freebsd-current@freebsd.org; Sun, 14 Oct 2012 08:42:17 -0700 Date: Sun, 14 Oct 2012 08:42:17 -0700 (PDT) From: Jakub Lach To: freebsd-current@freebsd.org Message-ID: <1350229337390-5751929.post@n5.nabble.com> In-Reply-To: <20121014152131.GA57720@troutmask.apl.washington.edu> References: <1350153522261-5751733.post@n5.nabble.com> <5079DCCE.4020901@FreeBSD.org> <1350202187139-5751862.post@n5.nabble.com> <20121014152131.GA57720@troutmask.apl.washington.edu> Subject: Re: new DragonFly-3.2 scheduler and PostgreSQL comparision with FreeBSD 9.1-RC1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 15:42:19 -0000 > I do not loathe ULE, but I also do not use ULE. Maybe my wording wasn't exactly suitable, but that was the point I was trying to make. ULE is default for quite some time (and boasted impressive benchmarks upon introduction too), yet in reality 4BSD is far from being superseded for many. -- View this message in context: http://freebsd.1045724.n5.nabble.com/Re-new-DragonFly-3-2-scheduler-and-PostgreSQL-comparision-with-FreeBSD-9-1-RC1-tp5751589p5751929.html Sent from the freebsd-current mailing list archive at Nabble.com. From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 18:20:14 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 62663243; Sun, 14 Oct 2012 18:20:14 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from sarah.protected-networks.net (sarah.protected-networks.net [64.46.156.146]) by mx1.freebsd.org (Postfix) with ESMTP id 1360A8FC08; Sun, 14 Oct 2012 18:20:13 +0000 (UTC) Received: from toshi.auburn.protected-networks.net (toshi.auburn.protected-networks.net [202.12.127.84]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "Iain Butler", Issuer "RSA Class 2 Personal CA v2" (verified OK)) (Authenticated sender: imb@protected-networks.net) by sarah.protected-networks.net (Postfix) with ESMTPSA id 9FFFD60F5; Sun, 14 Oct 2012 14:20:06 -0400 (EDT) DomainKey-Signature: a=rsa-sha1; s=200509; d=protected-networks.net; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:cc:subject: references:in-reply-to:content-type; b=Q9NX7tbzoL5JIgVmifxks/FOIFfd10Wdhowv372aGpQ8aeRi5PephaWrw9adsQHz7 qjGTbQI28CZ6bNkizFT0/JKiPyf+EGO1/7RnZwgUt35D0+RoWXpsOGHd87lXxJ7 Message-ID: <507B0254.4050303@protected-networks.net> Date: Sun, 14 Oct 2012 14:20:04 -0400 From: Michael Butler User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:15.0) Gecko/20120910 Thunderbird/15.0.1 MIME-Version: 1.0 To: Gleb Smirnoff Subject: Re: Message "in_cksum_skip: out of data by ...." References: <20121007151128.GL23688@albert.catwhisker.org> <5071AAF6.9020009@protected-networks.net> <5071C118.40302@protected-networks.net> <20121008080447.GP34622@glebius.int.ru> In-Reply-To: <20121008080447.GP34622@glebius.int.ru> Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg=sha1; boundary="------------ms050606060700040408000701" X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Garrett Cooper , current@FreeBSD.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 18:20:14 -0000 This is a cryptographically signed message in MIME format. --------------ms050606060700040408000701 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: quoted-printable On 10/08/12 04:04, Gleb Smirnoff wrote: > David and Michael, > > On Sun, Oct 07, 2012 at 10:52:13AM -0700, Garrett Cooper wrote: > G> > On 10/07/12 13:03, Garrett Cooper wrote: > G> >> Maybe these revisions had something to do with it... (r241245= is > G> >> more likely)? > G> > > G> > I reverted r241245 and the messages went away, > > Can you please try r241344? Sorry for the delay; it seems that the last remaining cause was resolved = with SVN r241547. Thanks, imb --------------ms050606060700040408000701-- From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 19:50:46 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E60CBBDC for ; Sun, 14 Oct 2012 19:50:46 +0000 (UTC) (envelope-from oliver.pntr@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id A760C8FC08 for ; Sun, 14 Oct 2012 19:50:46 +0000 (UTC) Received: by mail-ob0-f182.google.com with SMTP id wc20so5741507obb.13 for ; Sun, 14 Oct 2012 12:50:45 -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=2c4Fzzgq2zNKw9N3fPWDIBkRL5F5s+NIVdagJ9dl2gQ=; b=tulFzQjzpwWMDw5cIv8PvnM4Mo2OP4dBs98wEhuEGAx+y8UlK2vU8YtRh7M6S/RsR9 PqHzvZoimUHzuAKyN+r1DzlultX6c3FFv7vtcvgJ2gCDsg0T9K7oqJxUyUbQMwqUfBvi X4r5HFx8RJ9zHgcJJuSm8qtqPh3Wz5Hro2RflGwEVl9d+8R9D1Bzdz3gEzLH+02BAyZS ZZz5NF/l61pS7KsS1NiYZZlum2FiLDkzsQzmH7YSVHEFUvns3BUMtd/md1CZjcNEbiu3 ynme8Cb38TX/tisvVBJ3MjJln9z7rToARaYWXhm9v3Hb1229hfG/Lz/XSdVPlu4cVqt/ S70A== MIME-Version: 1.0 Received: by 10.182.21.142 with SMTP id v14mr8040339obe.46.1350244245806; Sun, 14 Oct 2012 12:50:45 -0700 (PDT) Received: by 10.76.34.227 with HTTP; Sun, 14 Oct 2012 12:50:45 -0700 (PDT) Date: Sun, 14 Oct 2012 21:50:45 +0200 Message-ID: Subject: git.freebsd.org is down? From: Oliver Pinter To: current@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 19:50:47 -0000 Hi All! I got this message, when I why try to pull from git.freebsd.org: ---8<--- fatal: unable to connect git.freebsd.org: git.freebsd.org[0: 69.147.83.33]: errno=Connection refused git.freebsd.org[1: 2001:4f8:fff6::21]: errno=No route to host ---8<--- The IPv6 related are ok, while this machine does not have an IPv6 address but the first not. The git.kernek.org adderss is pingable. From owner-freebsd-current@FreeBSD.ORG Sun Oct 14 21:55:58 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1A3A1D80 for ; Sun, 14 Oct 2012 21:55:58 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id D6CCE8FC12 for ; Sun, 14 Oct 2012 21:55:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9ELtunE027672 for ; Sun, 14 Oct 2012 21:55:56 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9ELtu3q027669 for current@freebsd.org; Sun, 14 Oct 2012 21:55:56 GMT (envelope-from bdrewery) Received: (qmail 86631 invoked from network); 14 Oct 2012 16:55:55 -0500 Received: from unknown (HELO ?10.10.0.115?) (freebsd@shatow.net@10.10.0.115) by sweb.xzibition.com with ESMTPA; 14 Oct 2012 16:55:55 -0500 Message-ID: <507B34E8.9040100@FreeBSD.org> Date: Sun, 14 Oct 2012 16:55:52 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: John Nielsen Subject: Re: pkg (aka pkgng) 1.0 released References: <20120830141939.GJ64447@ithaqua.etoilebsd.net> <2DA948A5-540A-411F-9D11-120A27AF1EBB@jnielsen.net> In-Reply-To: <2DA948A5-540A-411F-9D11-120A27AF1EBB@jnielsen.net> X-Enigmail-Version: 1.4.5 OpenPGP: id=3C9B0CF9; url=http://www.shatow.net/bryan/bryan.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Oct 2012 21:55:58 -0000 On 8/30/2012 10:56 AM, John Nielsen wrote: > Running ps in another terminal shows "pkg query %n-%v". Since the actual pkg is now gone, I suspect this is really /usr/sbin/pkg. I further suspect that it's waiting for y/n input (whether to install the binary pkg) on its nonexistent stdin somewhere. I killed it (pkg) and portupgrade seemed to finish normally. This "waiting" is the bootstrapper. Can you see if this is still an issue? It should be fixed by r239663 and r239664, which were fulled MFC'd to 9-STABLE, 9.1, and 8-STABLE now. http://svn.freebsd.org/changeset/base/239663 http://svn.freebsd.org/changeset/base/239664 -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-freebsd-current@FreeBSD.ORG Mon Oct 15 00:35:21 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23DFA1FD for ; Mon, 15 Oct 2012 00:35:21 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-da0-f54.google.com (mail-da0-f54.google.com [209.85.210.54]) by mx1.freebsd.org (Postfix) with ESMTP id E787F8FC08 for ; Mon, 15 Oct 2012 00:35:20 +0000 (UTC) Received: by mail-da0-f54.google.com with SMTP id z9so2407284dad.13 for ; Sun, 14 Oct 2012 17:35:20 -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 :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=i+rWgOqTsVT/5Q5tuVKlQTZFwHP46F99WUY5fg46zJI=; b=1FO74y4Z/67zKeXiZ2R0+UAvTvsLzNXNeoyHN5cjE9nNfUub+wvmGTsuK4epz+Cxh9 +xMQ1msghtL30O5W4pXpUcHLHtmx9In9VAMeTn056ELRusZA/h9kqALB0fdmLdsvU9H0 OcoNovVSWg7VBytD34L++aytqz2T2ZXmIZSXgOGykUz4yjKCmbMpyHo95GqdRC+vpJmD 2MCZu/CWDtBvv0do0mWbVym3lNB5B4pOISlaPVH1ZwLgPCiZwZ6MEazKfInA465y+73C B7mlWK5LSD9XtlezZqMt2tPzjkV0sILjKOy0771sNNND/eqKp1VFqStd8Gnpfrsc61jj urzA== MIME-Version: 1.0 Received: by 10.68.218.226 with SMTP id pj2mr32862555pbc.33.1350261320496; Sun, 14 Oct 2012 17:35:20 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.68.146.233 with HTTP; Sun, 14 Oct 2012 17:35:20 -0700 (PDT) In-Reply-To: References: Date: Sun, 14 Oct 2012 17:35:20 -0700 X-Google-Sender-Auth: bsW9Yjd9kLcexzhMEEBkQ6XFAWg Message-ID: Subject: Re: git.freebsd.org is down? From: Adrian Chadd To: Oliver Pinter Content-Type: text/plain; charset=ISO-8859-1 Cc: current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 00:35:21 -0000 The cluster is being relocated! adrian On 14 October 2012 12:50, Oliver Pinter wrote: > Hi All! > > I got this message, when I why try to pull from git.freebsd.org: > > ---8<--- > fatal: unable to connect git.freebsd.org: > git.freebsd.org[0: 69.147.83.33]: errno=Connection refused > git.freebsd.org[1: 2001:4f8:fff6::21]: errno=No route to host > ---8<--- > > The IPv6 related are ok, while this machine does not have an IPv6 > address but the first not. > > The git.kernek.org adderss is pingable. > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-current@FreeBSD.ORG Mon Oct 15 08:12:53 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A123F2E7; Mon, 15 Oct 2012 08:12:53 +0000 (UTC) (envelope-from fabien.thomas@netasq.com) Received: from work.netasq.com (gwlille.netasq.com [91.212.116.1]) by mx1.freebsd.org (Postfix) with ESMTP id 390138FC14; Mon, 15 Oct 2012 08:12:52 +0000 (UTC) Received: from [10.2.1.1] (unknown [10.2.1.1]) by work.netasq.com (Postfix) with ESMTPSA id 1FDDB2705007; Mon, 15 Oct 2012 10:12:46 +0200 (CEST) Subject: Re: [CFT]hwpmc update for sandybridge-e Mime-Version: 1.0 (Apple Message framework v1283) Content-Type: text/plain; charset=windows-1252 From: Fabien Thomas In-Reply-To: Date: Mon, 15 Oct 2012 10:12:45 +0200 Content-Transfer-Encoding: quoted-printable Message-Id: References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> To: hiren panchasara X-Mailer: Apple Mail (2.1283) Cc: freebsd-current , Davide Italiano X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 08:12:53 -0000 Le 13 oct. 2012 =E0 00:54, hiren panchasara a =E9crit : >=20 >=20 > On Fri, Oct 5, 2012 at 1:05 AM, Fabien Thomas = wrote: >=20 > Le 5 oct. 2012 =E0 10:00, Fabien Thomas a =E9crit : >=20 > > > > Le 5 oct. 2012 =E0 00:46, Sean Bruno a =E9crit : > > > >> So, I did the bear minimum and kind of hacked things together = without > >> understanding precisely what I was doing, and I was able to massage = the > >> sandybridge-e CPUs into giving me some basic functions. > >> > >> Comments or concerns before I commit this? > >> > >> http://people.freebsd.org/~sbruno/pmc_sandybridge.txt > > > > Hi Sean, > > > > The only modification required is this one > > http://svnweb.freebsd.org/base?view=3Drevision&revision=3D237196 > > > > but davide@ removed it for a problem that need to be looked at. >=20 > Looking at the doc this CPU require a full set of PMC as the list of = event are different. > So this mean full manpage, full event list, =85 >=20 > Doc: > " > The events in Table 19-3 apply to > processors with CPUID signature of DisplayFamily_DisplayModel encoding = with the > following values: 06_2AH and 06_2DH. The events in Table 19-4 apply to = processors > with CPUID signature 06_2AH. The events in Table 19-5 apply to = processors with > CPUID signature 06_2DH. > " >=20 > Required change will be the same as this commit if you want to look at = it: > http://svnweb.freebsd.org/base?view=3Drevision&revision=3D240164 >=20 > Hi All, >=20 > With help of Sean, I've prepared another semi-working patch: > http://www.strugglingcoder.info/patches/hwpmc_sbx_1.txt Great, i've quickly looked at the patch: I'm not sure to understand why you have removed code in your case for = uncore. If you dont want to support remove it like for ivy bridge.=20 some minor: +#define sandybridge_xeon_aliases core2_aliases +#define sandybridge_xeon_aliases_without_iaf = core2_aliases_without_iaf + case PMC_CPU_INTEL_SANDYBRIDGE_XEON: + pmc_class_table[n++] =3D &ucf_class_table_descr; + pmc_class_table[n++] =3D = &sandybridgeuc_class_table_descr; + PMC_MDEP_INIT_INTEL_V2(sandybridge_xeon); + break; keep this sorted. >=20 > I still haven't written the man page. I wanted to get some feedback = (bashing/yelling) before spending more time on this. >=20 > I am not quite sure how to handle uncore events. I've put ugly hack to = avoid wrmsr/rdmsr for this particular set of processors. I bet there are = better ways to handle this situation. (in hwpmc_uncore.c)=20 >=20 > Here is the o/p of "pmccontrol -L": > http://www.strugglingcoder.info/patches/pmccontrol_1.txt >=20 > I've run the pmctest.py script (by gnn): > http://www.strugglingcoder.info/patches/pmctestpy_1.txt >=20 > I am seeing "invalid argument" for some events. I've tried to check = pmc_events.h to see that those events are listed. Not sure what else I = should check. >=20 Seems you need to double check the event list: "pmcstat: ERROR: Cannot allocate process-mode pmc with specification = "L2_L1D_WB_RQSTS.MISS": Invalid argument" map to 28 01 which is not in the table: IAPDESCR(28H, 0x28, IAP_M_CORE | IAP_M_MESI, IAP_F_ALLCPUSCORE2), IAPDESCR(28H_01H, 0x28, 0x01, IAP_F_FM | IAP_F_I7 | IAP_F_WM | = IAP_F_IB), IAPDESCR(28H_02H, 0x28, 0x02, IAP_F_FM | IAP_F_I7 | IAP_F_WM), - IAPDESCR(28H_04H, 0x28, 0x04, IAP_F_FM | IAP_F_I7 | IAP_F_WM | = IAP_F_SB | IAP_F_IB), - IAPDESCR(28H_08H, 0x28, 0x08, IAP_F_FM | IAP_F_I7 | IAP_F_WM | = IAP_F_SB | IAP_F_IB), + IAPDESCR(28H_04H, 0x28, 0x04, IAP_F_FM | IAP_F_I7 | IAP_F_WM | = IAP_F_SB | IAP_F_IB | + IAP_F_SBX), + IAPDESCR(28H_08H, 0x28, 0x08, IAP_F_FM | IAP_F_I7 | IAP_F_WM | = IAP_F_SB | IAP_F_IB | + IAP_F_SBX), IAPDESCR(28H_0FH, 0x28, 0x0F, IAP_F_FM | IAP_F_I7 | IAP_F_WM | = IAP_F_IB), =20 > I've also tried to follow the commands Fabien listed for testing on = http://freebsd.1045724.n5.nabble.com/CFT-hwpmc-support-for-Intel-Ivy-Bridg= e-tp5740299p5740577.html >=20 > I am getting panic on following: > - Soft counter:=20 > pmcstat -SPAGE_FAULT.ALL -w4 -T=20 >=20 Not related but need to be investigated. (I will look at it.) > panic details: > -bash-4.2$ panic: userret: Returning with with pinned thread > cpuid =3D 22 > KDB: enter: panic > [ thread pid 4084 tid 100302 ] > Stopped at kdb_enter+0x3b: movq $0,0xa74122(%rip) > db> bt > Tracing pid 4084 tid 100302 td 0xfffffe0016dbc000 > kdb_enter() at kdb_enter+0x3b > panic() at panic+0x1d1 > userret() at userret+0x15c > trap() at trap+0x200 > calltrap() at calltrap+0x8 > --- trap 0xc, rip =3D 0x8013d86a0, rsp =3D 0x7fffffffd4b0, rbp =3D = 0x801800b98 --- > db> show pcpu > cpuid =3D 22 > dynamic pcpu =3D 0xffffff807f000280 > curthread =3D 0xfffffe0016dbc000: pid 4084 "pmcstat" > curpcb =3D 0xffffff86be955b80 > fpcurthread =3D 0xfffffe0016dbc000: pid 4084 "pmcstat" > idlethread =3D 0xfffffe000a510000: tid 100025 "idle: cpu22" > curpmap =3D 0xfffffe00160f6be8 > tssp =3D 0xffffffff81531970 > commontssp =3D 0xffffffff81531970 > rsp0 =3D 0xffffff86be955b80 > gs32p =3D 0xffffffff8152faa8 > ldt =3D 0xffffffff8152fae8 > tss =3D 0xffffffff8152fad8 > spin locks held: >=20 > db> show registers > cs 0x20 > ds 0x3b > es 0x3b003b > fs 0x1b0013 > gs 0x1b > ss 0 > rax 0x12 > rcx 0x1fc > rdx 0 > rbx 0xffffffff80ec14ea __func__.3526+0x1c2 > rsp 0xffffff86be955770 > rbp 0xffffff86be955790 > rsi 0x80 > rdi 0xffffff86be9555f0 > r8 0 > r9 0xffffff86be9556a0 > r10 0x700 > r11 0xffffffff812c2900 txtrndrsw > r12 0 > r13 0xfffffe0016dbc000 > r14 0xffffff86be955ac0 > r15 0xc > rip 0xffffffff80901f1b kdb_enter+0x3b > rflags 0x86 > kdb_enter+0x3b: movq $0,0xa74122(%rip) > db> >=20 > Please let me know if anything else I can provide. >=20 > Thanks a ton, > Hiren >=20 > p.s. I don't know how computers work. From owner-freebsd-current@FreeBSD.ORG Mon Oct 15 17:15:54 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A3327F0 for ; Mon, 15 Oct 2012 17:15:54 +0000 (UTC) (envelope-from admin@lissyara.su) Received: from mx.lissyara.su (mx.lissyara.su [91.227.18.11]) by mx1.freebsd.org (Postfix) with ESMTP id 255308FC14 for ; Mon, 15 Oct 2012 17:15:52 +0000 (UTC) Received: from [77.41.108.0] (port=45576 helo=dc7700p.lissyara.su) by mx.lissyara.su with esmtpa (Exim 4.80 (FreeBSD)) (envelope-from ) id 1TNnd9-0002Gq-9i for freebsd-current@freebsd.org; Mon, 15 Oct 2012 20:35:03 +0400 Message-ID: <507C3B37.2000700@lissyara.su> Date: Mon, 15 Oct 2012 20:35:03 +0400 From: Alex Keda User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:15.0) Gecko/20120912 Thunderbird/15.0.1 MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: Re: pkg (aka pkgng) 1.0 released References: <20120830141939.GJ64447@ithaqua.etoilebsd.net> <2DA948A5-540A-411F-9D11-120A27AF1EBB@jnielsen.net> <507B34E8.9040100@FreeBSD.org> In-Reply-To: <507B34E8.9040100@FreeBSD.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Description: if spam count > 60 - this is spam X-Spam-Count: 0 X-Spam-Description: if spam count > 60 - this is spam X-Spam-Count: 0 X-Descriptions: powered by www.lissyara.su X-Bounce-ID: mx.lissyara.su X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 17:15:54 -0000 15.10.2012 01:55, Bryan Drewery пишет: > On 8/30/2012 10:56 AM, John Nielsen wrote: >> Running ps in another terminal shows "pkg query %n-%v". Since the actual pkg is now gone, I suspect this is really /usr/sbin/pkg. I further suspect that it's waiting for y/n input (whether to install the binary pkg) on its nonexistent stdin somewhere. I killed it (pkg) and portupgrade seemed to finish normally. > > This "waiting" is the bootstrapper. Can you see if this is still an issue? > > It should be fixed by r239663 and r239664, which were fulled MFC'd to > 9-STABLE, 9.1, and 8-STABLE now. > > http://svn.freebsd.org/changeset/base/239663 > http://svn.freebsd.org/changeset/base/239664 > > root# pkg check -a usage: pkg check [-dsr] [-vy] [-a | -gxX ] For more information see 'pkg help check'. root# what wrong? From owner-freebsd-current@FreeBSD.ORG Mon Oct 15 17:13:44 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE71C6EA for ; Mon, 15 Oct 2012 17:13:44 +0000 (UTC) (envelope-from levitch@iglou.com) Received: from rdsmtp.iglou.com (rdsmtp.iglou.com [192.107.41.63]) by mx1.freebsd.org (Postfix) with ESMTP id 8A86C8FC0C for ; Mon, 15 Oct 2012 17:13:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=iglou.com; s=alpha; h=Content-Type:MIME-Version:Message-ID:Subject:To:From:Date; bh=MgIS6kKiOdOY6WcEQ7G8At8j6JZThRyuCIfl256MRRI=; b=DfWHupnPXMpSwhnIga/v32lTXMyOXCvBAYHb0JAVolO2Ay8vghddJOBmB9C2yejcXvACGMtQjt9n/Q+sF2MHOG9GvoNi3lhfl3gaU6BiuAR+1GHaJGHNTMjIv/WV8EpZ4Sp+JaFA6kQVMV3Wr8o4RSx3JGjjaxszAhtGkYsXF5Y=; Received: from iglou1.iglou.com ([192.107.41.3]:55364 helo=mail.iglou.com) by rdsmtp.iglou.com with esmtpa (Exim MTA/8.19.3) (envelope-from ) id 1TNoEZ-0006Sh-FW by authid with igloumta_auth for current@freebsd.org; Mon, 15 Oct 2012 13:13:43 -0400 Received: from shell1.iglou.com ([192.107.41.17]:47460 helo=shell1) by mail.iglou.com with esmtps (TLS cipher TLSv1:AES256-SHA:256) (Exim MTA/8.19.3) (envelope-from ) id 1TNoEZ-0004ob-4P for current@freebsd.org; Mon, 15 Oct 2012 13:13:43 -0400 Date: Mon, 15 Oct 2012 13:13:42 -0400 (EDT) From: Darrel X-X-Sender: levitch@shell1 To: current@freebsd.org Subject: pkgng | portmaster Message-ID: User-Agent: Alpine 2.00 (GSO 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Originating-IP: 192.107.41.17 X-IgLou-Customer: 3cb6f76205bd20f518810676a67a982b X-Mailman-Approved-At: Mon, 15 Oct 2012 17:56:25 +0000 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 17:13:44 -0000 Hello, Concerning the new pkg system, I reckon that my port updates can take a drought. Would it be best to deinstall portmaster for now? Portmaster typically updates itself, but this might be a special case. Currently, my postmaster run ends like this: ===>>> Cannot continue ===>>> Aborting update ===>>> No ORIGIN in /var/db/pkg/portmaster-3.14/+CONTENTS ===>>> No ORIGIN in /var/db/pkg/postgresql-client-9.2.1/+CONTENTS ===>>> No ORIGIN in /var/db/pkg/postgresql-docs-9.2.1/+CONTENTS ===>>> No ORIGIN in /var/db/pkg/postgresql-server-9.2.1/+CONTENTS Terminated (48) @ 12:58:40> Darrel From owner-freebsd-current@FreeBSD.ORG Mon Oct 15 18:14:56 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2785BB22 for ; Mon, 15 Oct 2012 18:14:56 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 83D5F8FC08 for ; Mon, 15 Oct 2012 18:14:55 +0000 (UTC) Received: from seedling.local (host86-128-112-220.range86-128.btcentralplus.com [86.128.112.220]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q9FIEoeL090709 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Mon, 15 Oct 2012 19:14:51 +0100 (BST) (envelope-from matthew@FreeBSD.org) X-DKIM: OpenDKIM Filter v2.5.2 smtp.infracaninophile.co.uk q9FIEoeL090709 Authentication-Results: smtp.infracaninophile.co.uk/q9FIEoeL090709; dkim=none (no signature); dkim-adsp=none X-Authentication-Warning: lucid-nonsense.infracaninophile.co.uk: Host host86-128-112-220.range86-128.btcentralplus.com [86.128.112.220] claimed to be seedling.local Message-ID: <507C5292.4050604@FreeBSD.org> Date: Mon, 15 Oct 2012 19:14:42 +0100 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: Darrel Subject: Re: pkgng | portmaster References: In-Reply-To: X-Enigmail-Version: 1.4.5 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig48EC15DB916025274583B86D" X-Virus-Scanned: clamav-milter 0.97.6 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=2.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_PBL, RCVD_IN_RP_RNBL,RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,SPF_SOFTFAIL autolearn=no version=3.3.2 X-Spam-Level: ** X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Cc: "current@freebsd.org >> \"current@freebsd.org\"" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 18:14:56 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig48EC15DB916025274583B86D Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 15/10/2012 18:13, Darrel wrote: > Hello, >=20 > Concerning the new pkg system, I reckon that my port updates can take a= > drought. >=20 > Would it be best to deinstall portmaster for now? Portmaster typically= > updates itself, but this might be a special case. >=20 > Currently, my postmaster run ends like this: >=20 > =3D=3D=3D>>> Cannot continue > =3D=3D=3D>>> Aborting update >=20 > =3D=3D=3D>>> No ORIGIN in /var/db/pkg/portmaster-3.14/+CONTENTS= >=20 > =3D=3D=3D>>> No ORIGIN in /var/db/pkg/postgresql-client-9.2.1/+= CONTENTS >=20 > =3D=3D=3D>>> No ORIGIN in /var/db/pkg/postgresql-docs-9.2.1/+CO= NTENTS >=20 > =3D=3D=3D>>> No ORIGIN in /var/db/pkg/postgresql-server-9.2.1/+= CONTENTS >=20 > Terminated > (48) @ 12:58:40> Did you apply the pkgng compatibility patch to portmaster? It's available in ports-mgmt/portmaster now if you select the option in the config dialogue. Once patched, portmaster should interoperate with pkgng pretty smoothly. Certainly it should be using pkgng's local.sqlite database to pull out package contents rather than trying to parse +CONTENTS files. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. PGP: http://www.infracaninophile.co.uk/pgpkey --------------enig48EC15DB916025274583B86D Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.16 (Darwin) Comment: Using GnuPG with Mozilla - http://www.enigmail.net/ iEYEARECAAYFAlB8UpoACgkQ8Mjk52CukIxgJgCfUbKllSxzMKGno3Sngf6JJu4m fSsAnRhdI4B1WGYh6cJ5R5UA8d9TGtsJ =fARZ -----END PGP SIGNATURE----- --------------enig48EC15DB916025274583B86D-- From owner-freebsd-current@FreeBSD.ORG Mon Oct 15 17:32:59 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6A48CD08 for ; Mon, 15 Oct 2012 17:32:59 +0000 (UTC) (envelope-from levitch@iglou.com) Received: from rdsmtp.iglou.com (rdsmtp.iglou.com [192.107.41.63]) by mx1.freebsd.org (Postfix) with ESMTP id 22E108FC0C for ; Mon, 15 Oct 2012 17:32:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=iglou.com; s=alpha; h=Content-Type:MIME-Version:References:Message-ID:In-Reply-To:Subject:To:From:Date; bh=AyjRiqkamCntLwoS/mIYStZPulLny/n5R3ONFo9TM5I=; b=WlpAXUZ/GiZFjcORoN0H5My5WO2pf8dRlY2OP7oAV44p3VmUoakPAAZrT304+eZLogN1g6XWvzIFZW+daJtkGxjOQix1GidxgthxnGb7OqsavKsrgHRfXPXeeQzHwezsopAcxmkuj3dlJdq0aVk7yg7H+M9obaUVpP5iR7GqOrg=; Received: from iglou3.iglou.com ([192.107.41.6]:57490 helo=mail.iglou.com) by rdsmtp.iglou.com with esmtpa (Exim MTA/8.19.3) (envelope-from ) id 1TNoXC-0005DI-F5 by authid with igloumta_auth for current@freebsd.org; Mon, 15 Oct 2012 13:32:58 -0400 Received: from shell1.iglou.com ([192.107.41.17]:47503 helo=shell1) by mail.iglou.com with esmtps (TLS cipher TLSv1:AES256-SHA:256) (Exim MTA/8.19.3) (envelope-from ) id 1TNoXC-00079q-6o for current@freebsd.org; Mon, 15 Oct 2012 13:32:58 -0400 Date: Mon, 15 Oct 2012 13:32:58 -0400 (EDT) From: Darrel X-X-Sender: levitch@shell1 To: current@freebsd.org Subject: [solved]: pkgng | portmaster In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (GSO 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Originating-IP: 192.107.41.17 X-IgLou-Customer: 3cb6f76205bd20f518810676a67a982b X-Mailman-Approved-At: Mon, 15 Oct 2012 18:20:21 +0000 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 17:32:59 -0000 On Mon, 15 Oct 2012, Darrel wrote: > > Would it be best to deinstall portmaster for now? Portmaster typically > updates itself, but this might be a special case. > I got it: # cd /usr/port/ports-mgmt/portmaster # make deinstall # make rmconfig # make reinstall - select pkgngpatch > Okay Perhaps it was portmaster depending on automake, so you might want to run portmaster -s ===>>> automake-1.12.4 is no longer depended on, delete? y/n [n] y ===>>> Deleting all distfiles for devel/automake ===>>> Distfile cleaning complete ===>>> Running pkg delete -f automake-1.12.4 The following packages will be deinstalled: automake-1.12.4 The deinstallation will free 1 MB Deleting automake-1.12.4... done (34) @ 13:26:37> Darrel From owner-freebsd-current@FreeBSD.ORG Mon Oct 15 20:09:36 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD7BAEF0; Mon, 15 Oct 2012 20:09:36 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id A6D3A8FC12; Mon, 15 Oct 2012 20:09:36 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9FK9UFt035404; Mon, 15 Oct 2012 16:09:30 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9FK9UYo035401; Mon, 15 Oct 2012 20:09:30 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 15 Oct 2012 20:09:30 GMT Message-Id: <201210152009.q9FK9UYo035401@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 20:09:37 -0000 TB --- 2012-10-15 17:43:45 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-15 17:43:45 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-15 17:43:45 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2012-10-15 17:43:45 - cleaning the object tree TB --- 2012-10-15 17:43:45 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-15 17:43:45 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2012-10-15 17:43:45 - /usr/local/bin/svn cleanup /src TB --- 2012-10-15 17:44:27 - /usr/local/bin/svn update /src TB --- 2012-10-15 17:44:35 - At svn revision 241596 TB --- 2012-10-15 17:44:36 - building world TB --- 2012-10-15 17:44:36 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 17:44:36 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 17:44:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 17:44:36 - SRCCONF=/dev/null TB --- 2012-10-15 17:44:36 - TARGET=powerpc TB --- 2012-10-15 17:44:36 - TARGET_ARCH=powerpc TB --- 2012-10-15 17:44:36 - TZ=UTC TB --- 2012-10-15 17:44:36 - __MAKE_CONF=/dev/null TB --- 2012-10-15 17:44:36 - cd /src TB --- 2012-10-15 17:44:36 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Oct 15 17:44:41 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Oct 15 20:06:15 UTC 2012 TB --- 2012-10-15 20:06:15 - generating LINT kernel config TB --- 2012-10-15 20:06:15 - cd /src/sys/powerpc/conf TB --- 2012-10-15 20:06:15 - /usr/bin/make -B LINT TB --- 2012-10-15 20:06:15 - cd /src/sys/powerpc/conf TB --- 2012-10-15 20:06:15 - /usr/sbin/config -m LINT TB --- 2012-10-15 20:06:15 - building LINT kernel TB --- 2012-10-15 20:06:15 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 20:06:15 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 20:06:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 20:06:15 - SRCCONF=/dev/null TB --- 2012-10-15 20:06:15 - TARGET=powerpc TB --- 2012-10-15 20:06:15 - TARGET_ARCH=powerpc TB --- 2012-10-15 20:06:15 - TZ=UTC TB --- 2012-10-15 20:06:15 - __MAKE_CONF=/dev/null TB --- 2012-10-15 20:06:15 - cd /src TB --- 2012-10-15 20:06:15 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Oct 15 20:06:15 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-15 20:09:30 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-15 20:09:30 - ERROR: failed to build LINT kernel TB --- 2012-10-15 20:09:30 - 7012.56 user 908.28 system 8744.52 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Mon Oct 15 20:43:07 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E2166C1D; Mon, 15 Oct 2012 20:43:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id AC33A8FC0C; Mon, 15 Oct 2012 20:43:07 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9FKh6MH042826; Mon, 15 Oct 2012 16:43:06 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9FKh6pm042814; Mon, 15 Oct 2012 20:43:06 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 15 Oct 2012 20:43:06 GMT Message-Id: <201210152043.q9FKh6pm042814@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 20:43:08 -0000 TB --- 2012-10-15 19:38:32 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-15 19:38:32 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-15 19:38:32 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-10-15 19:38:32 - cleaning the object tree TB --- 2012-10-15 19:38:32 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-15 19:38:32 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2012-10-15 19:38:32 - /usr/local/bin/svn cleanup /src TB --- 2012-10-15 19:39:19 - /usr/local/bin/svn update /src TB --- 2012-10-15 19:39:30 - At svn revision 241597 TB --- 2012-10-15 19:39:31 - building world TB --- 2012-10-15 19:39:31 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 19:39:31 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 19:39:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 19:39:31 - SRCCONF=/dev/null TB --- 2012-10-15 19:39:31 - TARGET=sparc64 TB --- 2012-10-15 19:39:31 - TARGET_ARCH=sparc64 TB --- 2012-10-15 19:39:31 - TZ=UTC TB --- 2012-10-15 19:39:31 - __MAKE_CONF=/dev/null TB --- 2012-10-15 19:39:31 - cd /src TB --- 2012-10-15 19:39:31 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Oct 15 19:39:37 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Oct 15 20:38:30 UTC 2012 TB --- 2012-10-15 20:38:30 - generating LINT kernel config TB --- 2012-10-15 20:38:30 - cd /src/sys/sparc64/conf TB --- 2012-10-15 20:38:30 - /usr/bin/make -B LINT TB --- 2012-10-15 20:38:30 - cd /src/sys/sparc64/conf TB --- 2012-10-15 20:38:30 - /usr/sbin/config -m LINT TB --- 2012-10-15 20:38:30 - building LINT kernel TB --- 2012-10-15 20:38:30 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 20:38:30 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 20:38:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 20:38:30 - SRCCONF=/dev/null TB --- 2012-10-15 20:38:30 - TARGET=sparc64 TB --- 2012-10-15 20:38:30 - TARGET_ARCH=sparc64 TB --- 2012-10-15 20:38:30 - TZ=UTC TB --- 2012-10-15 20:38:30 - __MAKE_CONF=/dev/null TB --- 2012-10-15 20:38:30 - cd /src TB --- 2012-10-15 20:38:30 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Oct 15 20:38:30 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dcons/dcons_crom.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dcons/dcons_os.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/de/if_de.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dpt/dpt_pci.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dpt/dpt_scsi.c cc1: warnings being treated as errors /src/sys/dev/dpt/dpt_scsi.c: In function 'dptexecuteccb': /src/sys/dev/dpt/dpt_scsi.c:724: warning: 'dpt' is used uninitialized in this function *** [dpt_scsi.o] Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-15 20:43:06 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-15 20:43:06 - ERROR: failed to build LINT kernel TB --- 2012-10-15 20:43:06 - 3198.89 user 548.30 system 3874.70 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Mon Oct 15 21:29:28 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 04EDDAD7; Mon, 15 Oct 2012 21:29:28 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id BE97C8FC12; Mon, 15 Oct 2012 21:29:27 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9FLTQoB039986; Mon, 15 Oct 2012 17:29:26 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9FLTQVr039985; Mon, 15 Oct 2012 21:29:26 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 15 Oct 2012 21:29:26 GMT Message-Id: <201210152129.q9FLTQVr039985@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc64/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 21:29:28 -0000 TB --- 2012-10-15 18:34:08 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-15 18:34:08 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-15 18:34:08 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2012-10-15 18:34:08 - cleaning the object tree TB --- 2012-10-15 18:34:08 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-15 18:34:08 - cd /tinderbox/HEAD/powerpc64/powerpc TB --- 2012-10-15 18:34:08 - /usr/local/bin/svn cleanup /src TB --- 2012-10-15 18:34:42 - /usr/local/bin/svn update /src TB --- 2012-10-15 18:36:12 - WARNING: /usr/local/bin/svn returned exit code 1 TB --- 2012-10-15 18:36:12 - WARNING: sleeping 30 s and retrying... TB --- 2012-10-15 18:36:42 - /usr/local/bin/svn update /src TB --- 2012-10-15 18:37:42 - WARNING: /usr/local/bin/svn returned exit code 1 TB --- 2012-10-15 18:37:42 - WARNING: sleeping 60 s and retrying... TB --- 2012-10-15 18:38:42 - /usr/local/bin/svn update /src TB --- 2012-10-15 18:40:02 - WARNING: /usr/local/bin/svn returned exit code 1 TB --- 2012-10-15 18:40:02 - WARNING: sleeping 90 s and retrying... TB --- 2012-10-15 18:41:32 - /usr/local/bin/svn update /src TB --- 2012-10-15 18:42:17 - WARNING: /usr/local/bin/svn returned exit code 1 TB --- 2012-10-15 18:42:17 - WARNING: sleeping 120 s and retrying... TB --- 2012-10-15 18:44:17 - /usr/local/bin/svn update /src TB --- 2012-10-15 18:44:30 - At svn revision 241597 TB --- 2012-10-15 18:44:31 - building world TB --- 2012-10-15 18:44:31 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 18:44:31 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 18:44:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 18:44:31 - SRCCONF=/dev/null TB --- 2012-10-15 18:44:31 - TARGET=powerpc TB --- 2012-10-15 18:44:31 - TARGET_ARCH=powerpc64 TB --- 2012-10-15 18:44:31 - TZ=UTC TB --- 2012-10-15 18:44:31 - __MAKE_CONF=/dev/null TB --- 2012-10-15 18:44:31 - cd /src TB --- 2012-10-15 18:44:31 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Oct 15 18:44:37 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Mon Oct 15 21:26:21 UTC 2012 TB --- 2012-10-15 21:26:21 - generating LINT kernel config TB --- 2012-10-15 21:26:21 - cd /src/sys/powerpc/conf TB --- 2012-10-15 21:26:21 - /usr/bin/make -B LINT TB --- 2012-10-15 21:26:21 - cd /src/sys/powerpc/conf TB --- 2012-10-15 21:26:21 - /usr/sbin/config -m LINT TB --- 2012-10-15 21:26:21 - building LINT kernel TB --- 2012-10-15 21:26:21 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 21:26:21 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 21:26:21 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 21:26:21 - SRCCONF=/dev/null TB --- 2012-10-15 21:26:21 - TARGET=powerpc TB --- 2012-10-15 21:26:21 - TARGET_ARCH=powerpc64 TB --- 2012-10-15 21:26:21 - TZ=UTC TB --- 2012-10-15 21:26:21 - __MAKE_CONF=/dev/null TB --- 2012-10-15 21:26:21 - cd /src TB --- 2012-10-15 21:26:21 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Mon Oct 15 21:26:21 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-15 21:29:26 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-15 21:29:26 - ERROR: failed to build LINT kernel TB --- 2012-10-15 21:29:26 - 8494.64 user 1114.45 system 10518.17 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Mon Oct 15 23:01:48 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B803BB3F; Mon, 15 Oct 2012 23:01:48 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 715C88FC14; Mon, 15 Oct 2012 23:01:48 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9FN1lWc025675; Mon, 15 Oct 2012 19:01:47 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9FN1lW2025674; Mon, 15 Oct 2012 23:01:47 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 15 Oct 2012 23:01:47 GMT Message-Id: <201210152301.q9FN1lW2025674@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on arm/arm Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 23:01:48 -0000 TB --- 2012-10-15 21:30:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-15 21:30:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-15 21:30:00 - starting HEAD tinderbox run for arm/arm TB --- 2012-10-15 21:30:00 - cleaning the object tree TB --- 2012-10-15 21:30:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-15 21:30:00 - cd /tinderbox/HEAD/arm/arm TB --- 2012-10-15 21:30:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-15 21:34:04 - /usr/local/bin/svn update /src TB --- 2012-10-15 21:34:25 - At svn revision 241598 TB --- 2012-10-15 21:34:26 - building world TB --- 2012-10-15 21:34:26 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 21:34:26 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 21:34:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 21:34:26 - SRCCONF=/dev/null TB --- 2012-10-15 21:34:26 - TARGET=arm TB --- 2012-10-15 21:34:26 - TARGET_ARCH=arm TB --- 2012-10-15 21:34:26 - TZ=UTC TB --- 2012-10-15 21:34:26 - __MAKE_CONF=/dev/null TB --- 2012-10-15 21:34:26 - cd /src TB --- 2012-10-15 21:34:26 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Oct 15 21:34:32 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Mon Oct 15 22:33:42 UTC 2012 TB --- 2012-10-15 22:33:42 - cd /src/sys/arm/conf TB --- 2012-10-15 22:33:42 - /usr/sbin/config -m AC100 TB --- 2012-10-15 22:33:42 - skipping AC100 kernel TB --- 2012-10-15 22:33:42 - cd /src/sys/arm/conf TB --- 2012-10-15 22:33:42 - /usr/sbin/config -m ARMADAXP TB --- 2012-10-15 22:33:42 - skipping ARMADAXP kernel TB --- 2012-10-15 22:33:42 - cd /src/sys/arm/conf TB --- 2012-10-15 22:33:42 - /usr/sbin/config -m ATMEL TB --- 2012-10-15 22:33:42 - building ATMEL kernel TB --- 2012-10-15 22:33:42 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 22:33:42 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 22:33:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 22:33:42 - SRCCONF=/dev/null TB --- 2012-10-15 22:33:42 - TARGET=arm TB --- 2012-10-15 22:33:42 - TARGET_ARCH=arm TB --- 2012-10-15 22:33:42 - TZ=UTC TB --- 2012-10-15 22:33:42 - __MAKE_CONF=/dev/null TB --- 2012-10-15 22:33:42 - cd /src TB --- 2012-10-15 22:33:42 - /usr/bin/make -B buildkernel KERNCONF=ATMEL >>> Kernel build for ATMEL started on Mon Oct 15 22:33:42 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for ATMEL completed on Mon Oct 15 22:37:16 UTC 2012 TB --- 2012-10-15 22:37:16 - cd /src/sys/arm/conf TB --- 2012-10-15 22:37:16 - /usr/sbin/config -m AVILA TB --- 2012-10-15 22:37:16 - skipping AVILA kernel TB --- 2012-10-15 22:37:16 - cd /src/sys/arm/conf TB --- 2012-10-15 22:37:16 - /usr/sbin/config -m BEAGLEBONE TB --- 2012-10-15 22:37:16 - skipping BEAGLEBONE kernel TB --- 2012-10-15 22:37:16 - cd /src/sys/arm/conf TB --- 2012-10-15 22:37:16 - /usr/sbin/config -m BWCT TB --- 2012-10-15 22:37:16 - building BWCT kernel TB --- 2012-10-15 22:37:16 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 22:37:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 22:37:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 22:37:16 - SRCCONF=/dev/null TB --- 2012-10-15 22:37:16 - TARGET=arm TB --- 2012-10-15 22:37:16 - TARGET_ARCH=arm TB --- 2012-10-15 22:37:16 - TZ=UTC TB --- 2012-10-15 22:37:16 - __MAKE_CONF=/dev/null TB --- 2012-10-15 22:37:16 - cd /src TB --- 2012-10-15 22:37:16 - /usr/bin/make -B buildkernel KERNCONF=BWCT >>> Kernel build for BWCT started on Mon Oct 15 22:37:16 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for BWCT completed on Mon Oct 15 22:39:23 UTC 2012 TB --- 2012-10-15 22:39:23 - cd /src/sys/arm/conf TB --- 2012-10-15 22:39:23 - /usr/sbin/config -m CAMBRIA TB --- 2012-10-15 22:39:23 - skipping CAMBRIA kernel TB --- 2012-10-15 22:39:23 - cd /src/sys/arm/conf TB --- 2012-10-15 22:39:23 - /usr/sbin/config -m CNS11XXNAS TB --- 2012-10-15 22:39:23 - building CNS11XXNAS kernel TB --- 2012-10-15 22:39:23 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 22:39:23 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 22:39:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 22:39:23 - SRCCONF=/dev/null TB --- 2012-10-15 22:39:23 - TARGET=arm TB --- 2012-10-15 22:39:23 - TARGET_ARCH=arm TB --- 2012-10-15 22:39:23 - TZ=UTC TB --- 2012-10-15 22:39:23 - __MAKE_CONF=/dev/null TB --- 2012-10-15 22:39:23 - cd /src TB --- 2012-10-15 22:39:23 - /usr/bin/make -B buildkernel KERNCONF=CNS11XXNAS >>> Kernel build for CNS11XXNAS started on Mon Oct 15 22:39:23 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for CNS11XXNAS completed on Mon Oct 15 22:41:48 UTC 2012 TB --- 2012-10-15 22:41:48 - cd /src/sys/arm/conf TB --- 2012-10-15 22:41:48 - /usr/sbin/config -m CRB TB --- 2012-10-15 22:41:48 - skipping CRB kernel TB --- 2012-10-15 22:41:48 - cd /src/sys/arm/conf TB --- 2012-10-15 22:41:48 - /usr/sbin/config -m DB-78XXX TB --- 2012-10-15 22:41:48 - building DB-78XXX kernel TB --- 2012-10-15 22:41:48 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 22:41:48 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 22:41:48 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 22:41:48 - SRCCONF=/dev/null TB --- 2012-10-15 22:41:48 - TARGET=arm TB --- 2012-10-15 22:41:48 - TARGET_ARCH=arm TB --- 2012-10-15 22:41:48 - TZ=UTC TB --- 2012-10-15 22:41:48 - __MAKE_CONF=/dev/null TB --- 2012-10-15 22:41:48 - cd /src TB --- 2012-10-15 22:41:48 - /usr/bin/make -B buildkernel KERNCONF=DB-78XXX >>> Kernel build for DB-78XXX started on Mon Oct 15 22:41:48 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-78XXX completed on Mon Oct 15 22:44:32 UTC 2012 TB --- 2012-10-15 22:44:32 - cd /src/sys/arm/conf TB --- 2012-10-15 22:44:32 - /usr/sbin/config -m DB-88F5XXX TB --- 2012-10-15 22:44:32 - building DB-88F5XXX kernel TB --- 2012-10-15 22:44:32 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 22:44:32 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 22:44:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 22:44:32 - SRCCONF=/dev/null TB --- 2012-10-15 22:44:32 - TARGET=arm TB --- 2012-10-15 22:44:32 - TARGET_ARCH=arm TB --- 2012-10-15 22:44:32 - TZ=UTC TB --- 2012-10-15 22:44:32 - __MAKE_CONF=/dev/null TB --- 2012-10-15 22:44:32 - cd /src TB --- 2012-10-15 22:44:32 - /usr/bin/make -B buildkernel KERNCONF=DB-88F5XXX >>> Kernel build for DB-88F5XXX started on Mon Oct 15 22:44:32 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F5XXX completed on Mon Oct 15 22:47:12 UTC 2012 TB --- 2012-10-15 22:47:12 - cd /src/sys/arm/conf TB --- 2012-10-15 22:47:12 - /usr/sbin/config -m DB-88F6XXX TB --- 2012-10-15 22:47:12 - building DB-88F6XXX kernel TB --- 2012-10-15 22:47:12 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 22:47:12 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 22:47:12 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 22:47:12 - SRCCONF=/dev/null TB --- 2012-10-15 22:47:12 - TARGET=arm TB --- 2012-10-15 22:47:12 - TARGET_ARCH=arm TB --- 2012-10-15 22:47:12 - TZ=UTC TB --- 2012-10-15 22:47:12 - __MAKE_CONF=/dev/null TB --- 2012-10-15 22:47:12 - cd /src TB --- 2012-10-15 22:47:12 - /usr/bin/make -B buildkernel KERNCONF=DB-88F6XXX >>> Kernel build for DB-88F6XXX started on Mon Oct 15 22:47:13 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F6XXX completed on Mon Oct 15 22:50:06 UTC 2012 TB --- 2012-10-15 22:50:06 - cd /src/sys/arm/conf TB --- 2012-10-15 22:50:06 - /usr/sbin/config -m DOCKSTAR TB --- 2012-10-15 22:50:06 - building DOCKSTAR kernel TB --- 2012-10-15 22:50:06 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 22:50:06 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 22:50:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 22:50:06 - SRCCONF=/dev/null TB --- 2012-10-15 22:50:06 - TARGET=arm TB --- 2012-10-15 22:50:06 - TARGET_ARCH=arm TB --- 2012-10-15 22:50:06 - TZ=UTC TB --- 2012-10-15 22:50:06 - __MAKE_CONF=/dev/null TB --- 2012-10-15 22:50:06 - cd /src TB --- 2012-10-15 22:50:06 - /usr/bin/make -B buildkernel KERNCONF=DOCKSTAR >>> Kernel build for DOCKSTAR started on Mon Oct 15 22:50:07 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DOCKSTAR completed on Mon Oct 15 22:52:41 UTC 2012 TB --- 2012-10-15 22:52:41 - cd /src/sys/arm/conf TB --- 2012-10-15 22:52:41 - /usr/sbin/config -m EA3250 TB --- 2012-10-15 22:52:41 - building EA3250 kernel TB --- 2012-10-15 22:52:41 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 22:52:41 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 22:52:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 22:52:41 - SRCCONF=/dev/null TB --- 2012-10-15 22:52:41 - TARGET=arm TB --- 2012-10-15 22:52:41 - TARGET_ARCH=arm TB --- 2012-10-15 22:52:41 - TZ=UTC TB --- 2012-10-15 22:52:41 - __MAKE_CONF=/dev/null TB --- 2012-10-15 22:52:41 - cd /src TB --- 2012-10-15 22:52:41 - /usr/bin/make -B buildkernel KERNCONF=EA3250 >>> Kernel build for EA3250 started on Mon Oct 15 22:52:41 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EA3250 completed on Mon Oct 15 22:55:20 UTC 2012 TB --- 2012-10-15 22:55:20 - cd /src/sys/arm/conf TB --- 2012-10-15 22:55:20 - /usr/sbin/config -m EB9200 TB --- 2012-10-15 22:55:20 - building EB9200 kernel TB --- 2012-10-15 22:55:20 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 22:55:20 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 22:55:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 22:55:20 - SRCCONF=/dev/null TB --- 2012-10-15 22:55:20 - TARGET=arm TB --- 2012-10-15 22:55:20 - TARGET_ARCH=arm TB --- 2012-10-15 22:55:20 - TZ=UTC TB --- 2012-10-15 22:55:20 - __MAKE_CONF=/dev/null TB --- 2012-10-15 22:55:20 - cd /src TB --- 2012-10-15 22:55:20 - /usr/bin/make -B buildkernel KERNCONF=EB9200 >>> Kernel build for EB9200 started on Mon Oct 15 22:55:20 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EB9200 completed on Mon Oct 15 22:57:51 UTC 2012 TB --- 2012-10-15 22:57:51 - cd /src/sys/arm/conf TB --- 2012-10-15 22:57:51 - /usr/sbin/config -m EP80219 TB --- 2012-10-15 22:57:51 - skipping EP80219 kernel TB --- 2012-10-15 22:57:51 - cd /src/sys/arm/conf TB --- 2012-10-15 22:57:51 - /usr/sbin/config -m ETHERNUT5 TB --- 2012-10-15 22:57:51 - building ETHERNUT5 kernel TB --- 2012-10-15 22:57:51 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 22:57:51 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 22:57:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 22:57:51 - SRCCONF=/dev/null TB --- 2012-10-15 22:57:51 - TARGET=arm TB --- 2012-10-15 22:57:51 - TARGET_ARCH=arm TB --- 2012-10-15 22:57:51 - TZ=UTC TB --- 2012-10-15 22:57:51 - __MAKE_CONF=/dev/null TB --- 2012-10-15 22:57:51 - cd /src TB --- 2012-10-15 22:57:51 - /usr/bin/make -B buildkernel KERNCONF=ETHERNUT5 >>> Kernel build for ETHERNUT5 started on Mon Oct 15 22:57:51 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/modules/aha/../../dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c: In function 'ahatimeout': /src/sys/modules/aha/../../dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/modules/aha/../../dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /src/sys/modules/aha. *** [all] Error code 1 Stop in /src/sys/modules. *** [modules-all] Error code 1 Stop in /obj/arm.arm/src/sys/ETHERNUT5. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-15 23:01:47 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-15 23:01:47 - ERROR: failed to build ETHERNUT5 kernel TB --- 2012-10-15 23:01:47 - 3834.66 user 781.68 system 5507.16 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 00:11:46 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48DF3F44; Tue, 16 Oct 2012 00:11:46 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 160AE8FC08; Tue, 16 Oct 2012 00:11:45 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G0BhF7076496; Mon, 15 Oct 2012 20:11:43 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G0Bh2a076492; Tue, 16 Oct 2012 00:11:43 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 00:11:43 GMT Message-Id: <201210160011.q9G0Bh2a076492@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 00:11:46 -0000 TB --- 2012-10-15 21:30:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-15 21:30:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-15 21:30:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-15 21:30:00 - cleaning the object tree TB --- 2012-10-15 21:30:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-15 21:30:00 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-15 21:30:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-15 21:33:20 - /usr/local/bin/svn update /src TB --- 2012-10-15 21:33:51 - At svn revision 241598 TB --- 2012-10-15 21:33:52 - building world TB --- 2012-10-15 21:33:52 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 21:33:52 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 21:33:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 21:33:52 - SRCCONF=/dev/null TB --- 2012-10-15 21:33:52 - TARGET=i386 TB --- 2012-10-15 21:33:52 - TARGET_ARCH=i386 TB --- 2012-10-15 21:33:52 - TZ=UTC TB --- 2012-10-15 21:33:52 - __MAKE_CONF=/dev/null TB --- 2012-10-15 21:33:52 - cd /src TB --- 2012-10-15 21:33:52 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Oct 15 21:34:00 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 00:04:41 UTC 2012 TB --- 2012-10-16 00:04:41 - generating LINT kernel config TB --- 2012-10-16 00:04:41 - cd /src/sys/i386/conf TB --- 2012-10-16 00:04:41 - /usr/bin/make -B LINT TB --- 2012-10-16 00:04:41 - cd /src/sys/i386/conf TB --- 2012-10-16 00:04:41 - /usr/sbin/config -m LINT TB --- 2012-10-16 00:04:42 - building LINT kernel TB --- 2012-10-16 00:04:42 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 00:04:42 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 00:04:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 00:04:42 - SRCCONF=/dev/null TB --- 2012-10-16 00:04:42 - TARGET=i386 TB --- 2012-10-16 00:04:42 - TARGET_ARCH=i386 TB --- 2012-10-16 00:04:42 - TZ=UTC TB --- 2012-10-16 00:04:42 - __MAKE_CONF=/dev/null TB --- 2012-10-16 00:04:42 - cd /src TB --- 2012-10-16 00:04:42 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 00:04:42 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 00:11:43 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 00:11:43 - ERROR: failed to build LINT kernel TB --- 2012-10-16 00:11:43 - 7040.48 user 1006.34 system 9703.28 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 00:21:24 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4D14817E; Tue, 16 Oct 2012 00:21:24 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 19B158FC08; Tue, 16 Oct 2012 00:21:23 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G0LNxJ027667; Mon, 15 Oct 2012 20:21:23 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G0LNow027664; Tue, 16 Oct 2012 00:21:23 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 00:21:23 GMT Message-Id: <201210160021.q9G0LNow027664@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/pc98 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 00:21:24 -0000 TB --- 2012-10-15 21:30:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-15 21:30:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-15 21:30:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2012-10-15 21:30:00 - cleaning the object tree TB --- 2012-10-15 21:30:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-15 21:30:00 - cd /tinderbox/HEAD/i386/pc98 TB --- 2012-10-15 21:30:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-15 21:34:04 - /usr/local/bin/svn update /src TB --- 2012-10-15 21:34:26 - At svn revision 241598 TB --- 2012-10-15 21:34:27 - building world TB --- 2012-10-15 21:34:27 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 21:34:27 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 21:34:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 21:34:27 - SRCCONF=/dev/null TB --- 2012-10-15 21:34:27 - TARGET=pc98 TB --- 2012-10-15 21:34:27 - TARGET_ARCH=i386 TB --- 2012-10-15 21:34:27 - TZ=UTC TB --- 2012-10-15 21:34:27 - __MAKE_CONF=/dev/null TB --- 2012-10-15 21:34:27 - cd /src TB --- 2012-10-15 21:34:27 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Oct 15 21:34:33 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 00:04:16 UTC 2012 TB --- 2012-10-16 00:04:16 - generating LINT kernel config TB --- 2012-10-16 00:04:16 - cd /src/sys/pc98/conf TB --- 2012-10-16 00:04:16 - /usr/bin/make -B LINT TB --- 2012-10-16 00:04:16 - cd /src/sys/pc98/conf TB --- 2012-10-16 00:04:16 - /usr/sbin/config -m LINT TB --- 2012-10-16 00:04:16 - building LINT kernel TB --- 2012-10-16 00:04:16 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 00:04:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 00:04:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 00:04:16 - SRCCONF=/dev/null TB --- 2012-10-16 00:04:16 - TARGET=pc98 TB --- 2012-10-16 00:04:16 - TARGET_ARCH=i386 TB --- 2012-10-16 00:04:16 - TZ=UTC TB --- 2012-10-16 00:04:16 - __MAKE_CONF=/dev/null TB --- 2012-10-16 00:04:16 - cd /src TB --- 2012-10-16 00:04:16 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 00:04:16 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/modules/aha/../../dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c: In function 'ahatimeout': /src/sys/modules/aha/../../dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/modules/aha/../../dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /src/sys/modules/aha. *** [all] Error code 1 Stop in /src/sys/modules. *** [modules-all] Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 00:21:23 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 00:21:23 - ERROR: failed to build LINT kernel TB --- 2012-10-16 00:21:23 - 7534.36 user 1047.93 system 10283.15 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 00:42:00 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED7BB546; Tue, 16 Oct 2012 00:41:59 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id A3D848FC08; Tue, 16 Oct 2012 00:41:59 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G0fwBo070568; Mon, 15 Oct 2012 20:41:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G0fwc9070567; Tue, 16 Oct 2012 00:41:58 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 00:41:58 GMT Message-Id: <201210160041.q9G0fwc9070567@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on ia64/ia64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 00:42:00 -0000 TB --- 2012-10-15 23:01:47 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-15 23:01:47 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-15 23:01:47 - starting HEAD tinderbox run for ia64/ia64 TB --- 2012-10-15 23:01:47 - cleaning the object tree TB --- 2012-10-15 23:01:47 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-15 23:01:47 - cd /tinderbox/HEAD/ia64/ia64 TB --- 2012-10-15 23:01:47 - /usr/local/bin/svn cleanup /src TB --- 2012-10-15 23:02:24 - /usr/local/bin/svn update /src TB --- 2012-10-15 23:02:31 - At svn revision 241599 TB --- 2012-10-15 23:02:32 - building world TB --- 2012-10-15 23:02:32 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 23:02:32 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 23:02:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 23:02:32 - SRCCONF=/dev/null TB --- 2012-10-15 23:02:32 - TARGET=ia64 TB --- 2012-10-15 23:02:32 - TARGET_ARCH=ia64 TB --- 2012-10-15 23:02:32 - TZ=UTC TB --- 2012-10-15 23:02:32 - __MAKE_CONF=/dev/null TB --- 2012-10-15 23:02:32 - cd /src TB --- 2012-10-15 23:02:32 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Oct 15 23:02:37 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 00:36:34 UTC 2012 TB --- 2012-10-16 00:36:34 - generating LINT kernel config TB --- 2012-10-16 00:36:34 - cd /src/sys/ia64/conf TB --- 2012-10-16 00:36:34 - /usr/bin/make -B LINT TB --- 2012-10-16 00:36:35 - cd /src/sys/ia64/conf TB --- 2012-10-16 00:36:35 - /usr/sbin/config -m LINT TB --- 2012-10-16 00:36:35 - building LINT kernel TB --- 2012-10-16 00:36:35 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 00:36:35 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 00:36:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 00:36:35 - SRCCONF=/dev/null TB --- 2012-10-16 00:36:35 - TARGET=ia64 TB --- 2012-10-16 00:36:35 - TARGET_ARCH=ia64 TB --- 2012-10-16 00:36:35 - TZ=UTC TB --- 2012-10-16 00:36:35 - __MAKE_CONF=/dev/null TB --- 2012-10-16 00:36:35 - cd /src TB --- 2012-10-16 00:36:35 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 00:36:35 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 00:41:58 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 00:41:58 - ERROR: failed to build LINT kernel TB --- 2012-10-16 00:41:58 - 4536.04 user 701.88 system 6011.06 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 00:49:38 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D80A8810; Tue, 16 Oct 2012 00:49:38 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 9DB908FC16; Tue, 16 Oct 2012 00:49:38 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G0nbj5019537; Mon, 15 Oct 2012 20:49:37 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G0nbDo019533; Tue, 16 Oct 2012 00:49:37 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 00:49:37 GMT Message-Id: <201210160049.q9G0nbDo019533@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 00:49:38 -0000 TB --- 2012-10-15 21:30:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-15 21:30:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-15 21:30:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-10-15 21:30:00 - cleaning the object tree TB --- 2012-10-15 21:30:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-15 21:30:00 - cd /tinderbox/HEAD/amd64/amd64 TB --- 2012-10-15 21:30:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-15 21:33:43 - /usr/local/bin/svn update /src TB --- 2012-10-15 21:34:02 - At svn revision 241598 TB --- 2012-10-15 21:34:03 - building world TB --- 2012-10-15 21:34:03 - CROSS_BUILD_TESTING=YES TB --- 2012-10-15 21:34:03 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-15 21:34:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-15 21:34:03 - SRCCONF=/dev/null TB --- 2012-10-15 21:34:03 - TARGET=amd64 TB --- 2012-10-15 21:34:03 - TARGET_ARCH=amd64 TB --- 2012-10-15 21:34:03 - TZ=UTC TB --- 2012-10-15 21:34:03 - __MAKE_CONF=/dev/null TB --- 2012-10-15 21:34:03 - cd /src TB --- 2012-10-15 21:34:03 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Oct 15 21:34:08 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Oct 16 00:40:39 UTC 2012 TB --- 2012-10-16 00:40:39 - generating LINT kernel config TB --- 2012-10-16 00:40:39 - cd /src/sys/amd64/conf TB --- 2012-10-16 00:40:39 - /usr/bin/make -B LINT TB --- 2012-10-16 00:40:39 - cd /src/sys/amd64/conf TB --- 2012-10-16 00:40:39 - /usr/sbin/config -m LINT TB --- 2012-10-16 00:40:39 - building LINT kernel TB --- 2012-10-16 00:40:39 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 00:40:39 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 00:40:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 00:40:39 - SRCCONF=/dev/null TB --- 2012-10-16 00:40:39 - TARGET=amd64 TB --- 2012-10-16 00:40:39 - TARGET_ARCH=amd64 TB --- 2012-10-16 00:40:39 - TZ=UTC TB --- 2012-10-16 00:40:39 - __MAKE_CONF=/dev/null TB --- 2012-10-16 00:40:39 - cd /src TB --- 2012-10-16 00:40:39 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 00:40:39 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 00:49:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 00:49:37 - ERROR: failed to build LINT kernel TB --- 2012-10-16 00:49:37 - 8489.95 user 1312.41 system 11977.48 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 00:49:46 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C0DF812; Tue, 16 Oct 2012 00:49:46 +0000 (UTC) (envelope-from hiren.panchasara@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id B35A78FC17; Tue, 16 Oct 2012 00:49:45 +0000 (UTC) Received: by mail-ob0-f182.google.com with SMTP id wc20so7442280obb.13 for ; Mon, 15 Oct 2012 17:49:44 -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=l7IwwTVbylxLp40wyzAsbS9revr+YjhACvGkz843Zjs=; b=eQcFtjwIH4y5nYo2awCJKfOJKPBNQ4mdDqbLM2AYQ+VXiR3A8fbKnEsUGdnjH9nTxS KHX1d9pZSQ92aA9yINF+TnG9V6Ca31V+UUoBX7PgiG9gyLpTpOKT7B2+o0/fAZPyUnxi o0sXJF3gWaEFW/5/616kBclXC7DmljV/iwFZJlTveBcM/iL9Xr2g74BHE8Hex8jxkA1Y 4luOiQJA6aiqxSqAp/3EqwKLhg+G9UK6kIzj1OC2pkAxvtKV4wd5NG8VB7zHDAPA7qaL BFxjGcShQHm5b22D0L6S5llGRMaqNxFH/N3f5dGwrrkKC4ssR1K+Y6QrfxlVl7wMMc5R uRFA== MIME-Version: 1.0 Received: by 10.182.17.72 with SMTP id m8mr10903577obd.55.1350348584618; Mon, 15 Oct 2012 17:49:44 -0700 (PDT) Received: by 10.182.131.3 with HTTP; Mon, 15 Oct 2012 17:49:44 -0700 (PDT) In-Reply-To: References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> Date: Mon, 15 Oct 2012 17:49:44 -0700 Message-ID: Subject: Re: [CFT]hwpmc update for sandybridge-e From: hiren panchasara To: Fabien Thomas Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-current , Davide Italiano X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 00:49:46 -0000 On Mon, Oct 15, 2012 at 1:12 AM, Fabien Thomas wr= ote: > > Le 13 oct. 2012 =C3=A0 00:54, hiren panchasara a =C3=A9crit : > > > > > > > On Fri, Oct 5, 2012 at 1:05 AM, Fabien Thomas > wrote: > > > > Le 5 oct. 2012 =C3=A0 10:00, Fabien Thomas a =C3=A9crit : > > > > > > > > Le 5 oct. 2012 =C3=A0 00:46, Sean Bruno a =C3=A9crit : > > > > > >> So, I did the bear minimum and kind of hacked things together withou= t > > >> understanding precisely what I was doing, and I was able to massage > the > > >> sandybridge-e CPUs into giving me some basic functions. > > >> > > >> Comments or concerns before I commit this? > > >> > > >> http://people.freebsd.org/~sbruno/pmc_sandybridge.txt > > > > > > Hi Sean, > > > > > > The only modification required is this one > > > http://svnweb.freebsd.org/base?view=3Drevision&revision=3D237196 > > > > > > but davide@ removed it for a problem that need to be looked at. > > > > Looking at the doc this CPU require a full set of PMC as the list of > event are different. > > So this mean full manpage, full event list, =E2=80=A6 > > > > Doc: > > " > > The events in Table 19-3 apply to > > processors with CPUID signature of DisplayFamily_DisplayModel encoding > with the > > following values: 06_2AH and 06_2DH. The events in Table 19-4 apply to > processors > > with CPUID signature 06_2AH. The events in Table 19-5 apply to > processors with > > CPUID signature 06_2DH. > > " > > > > Required change will be the same as this commit if you want to look at > it: > > http://svnweb.freebsd.org/base?view=3Drevision&revision=3D240164 > > > > Hi All, > > > > With help of Sean, I've prepared another semi-working patch: > > http://www.strugglingcoder.info/patches/hwpmc_sbx_1.txt > > Great, i've quickly looked at the patch: > > I'm not sure to understand why you have removed code in your case for > uncore. > If you dont want to support remove it like for ivy bridge. > Thanks Fabien for getting back quickly. As I am not clear about uncore support, I've removed it entirely as you suggested. I've tried to incorporate other comments too. New set of diffs, pmccontrol and pmctest.py results are here: http://www.strugglingcoder.info/patches/hwpmc_sbx_2.txt http://www.strugglingcoder.info/patches/pmccontrol_2.txt http://www.strugglingcoder.info/patches/pmctestpy_2.txt I now have following event counters failing from pmctest.py script: CYCLE_ACTIVITY.CYCLES_L2_PENDING BACLEARS.ANY L2_TRANS.DEMAND_DATA_RD L2_TRANS.RF0 SQ_MISC.SPLIT_LOCK I am not quite sure why these are failing. Will continue looking into it. Appreciate your help, Hiren From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 00:59:41 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6FD9DCA8; Tue, 16 Oct 2012 00:59:41 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from anubis.delphij.net (anubis.delphij.net [64.62.153.212]) by mx1.freebsd.org (Postfix) with ESMTP id 4B3FE8FC12; Tue, 16 Oct 2012 00:59:41 +0000 (UTC) Received: from epsilon.delphij.net (drawbridge.ixsystems.com [206.40.55.65]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by anubis.delphij.net (Postfix) with ESMTPSA id D73D61E277; Mon, 15 Oct 2012 17:59:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=delphij.net; s=anubis; t=1350349180; bh=A7V7BW0LQ/iqxVIojPgMHJNP5j+dRQUIkTIYIx/NC3c=; h=Date:From:Reply-To:To:CC:Subject:References:In-Reply-To; b=fwWikzfXTGs9xmpYpb3GbN6KLnkpZH1GM1Zg/dYBtNrh2s/Eq7WX8TPwNKQifetWU Vr/zkI0nkh0r8HzKoqpWROeEvMFsnHsMy2XL+kx1bYRajHcHUkV38bLQty97xXNbP6 oG3fZvYnaxOY2KuDmBqHF9yl1Qmj4xOZchlTE4vE= Message-ID: <507CB17B.60102@delphij.net> Date: Mon, 15 Oct 2012 17:59:39 -0700 From: Xin Li Organization: The FreeBSD Project MIME-Version: 1.0 To: FreeBSD Tinderbox Subject: Re: [head tinderbox] failure on amd64/amd64 References: <201210160049.q9G0nbDo019533@freebsd-current.sentex.ca> In-Reply-To: <201210160049.q9G0nbDo019533@freebsd-current.sentex.ca> X-Enigmail-Version: 1.4.5 Content-Type: multipart/mixed; boundary="------------070007050109070401070508" Cc: amd64@freebsd.org, current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: d@delphij.net List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 00:59:41 -0000 This is a multi-part message in MIME format. --------------070007050109070401070508 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 The attached patch will hopefully fix the build... Cheers, - -- Xin LI https://www.delphij.net/ FreeBSD - The Power to Serve! Live free or die -----BEGIN PGP SIGNATURE----- iQEcBAEBCAAGBQJQfLF7AAoJEG80Jeu8UPuzblMH+wUf3f24s3Uer0+R50evGz/g 49rC9XmDT4v4CYWV80nUmIzy21ZeuSkKOXOoDjxyknKTz510PtC4PwE4ETNWdE39 vTwSF5lpGfjsDO0mF/uERvJl2EblgDmgaUO9lz4OTbcIX2dA0EIwBTjpQ2hICt6H ogrqNskoGhNj6b35PW/7901pN9jtrTqViOfvVEy63XgSwBlSdceK3hu398vbWPJw YB7fBXmnrrtj/Zl93eIOytnfBuD3Cx7RLvl4Q/bRQv5EWD9jb0vY0RvIQ/05Jzbd qiaSrjx9z821jDxpRMegOZbPU0CGxsZwqS79IJkE9nY+bA42n6RpE7V9PhZuYAE= =sgg+ -----END PGP SIGNATURE----- --------------070007050109070401070508 Content-Type: text/plain; charset=UTF-8; name="aha.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="aha.diff" Index: sys/dev/aha/aha.c =================================================================== --- sys/dev/aha/aha.c (revision 241599) +++ sys/dev/aha/aha.c (working copy) @@ -62,6 +62,8 @@ __FBSDID("$FreeBSD$"); #include #include +#include +#include #include #include #include @@ -173,8 +175,7 @@ static void ahatimeout(void *arg); /* Exported functions */ void -aha_alloc(struct aha_softc *aha, int unit, bus_space_tag_t tag, - bus_space_handle_t bsh) +aha_alloc(struct aha_softc *aha) { SLIST_INIT(&aha->free_aha_ccbs); @@ -1107,7 +1108,7 @@ ahaexecuteccb(void *arg, bus_dma_segment_t *dm_seg device_printf(aha->dev, "Encountered busy mailbox with %d out of %d " "commands active!!!", aha->active_ccbs, aha->max_ccbs); - callout_stop(&aacb->timer); + callout_stop(&accb->timer); if (nseg != 0) bus_dmamap_unload(aha->buffer_dmat, accb->dmamap); ahafreeccb(aha, accb); @@ -1833,7 +1834,7 @@ ahatimeout(void *arg) * later which will attempt a bus reset. */ accb->flags |= ACCB_DEVICE_RESET; - callout_reset(&aacb->timer, 2 * hz, ahatimeout, accb); + callout_reset(&accb->timer, 2 * hz, ahatimeout, accb); aha->recovery_accb->hccb.opcode = INITIATOR_BUS_DEV_RESET; /* No Data Transfer */ Index: sys/dev/aha/aha_isa.c =================================================================== --- sys/dev/aha/aha_isa.c (revision 241599) +++ sys/dev/aha/aha_isa.c (working copy) @@ -62,6 +62,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include @@ -126,7 +127,7 @@ aha_isa_probe(device_t dev) if (aha->port == NULL) return (ENXIO); - port_start = rman_get_start(port_res); + port_start = rman_get_start(aha->port); aha_alloc(aha); /* See if there is really a card present */ @@ -261,7 +262,7 @@ aha_isa_attach(device_t dev) } error = bus_setup_intr(dev, aha->irq, INTR_TYPE_CAM|INTR_ENTROPY| - INTR_MPSAFE, NULL, aha_intr, aha, &aha->ih); + INTR_MPSAFE, NULL, aha_intr, aha, &(aha->ih)); if (error) { device_printf(dev, "Unable to register interrupt handler\n"); aha_detach(aha); @@ -321,9 +322,9 @@ aha_isa_identify(driver_t *driver, device_t parent * XXX kldload/kldunload. */ rid = 0; - aha->port = bus_alloc_resource(parent, SYS_RES_IOPORT, &rid, + aha.port = bus_alloc_resource(parent, SYS_RES_IOPORT, &rid, ioport, ioport, AHA_NREGS, RF_ACTIVE); - if (aha->port == NULL) + if (aha.port == NULL) continue; aha_alloc(&aha); /* See if there is really a card present */ @@ -336,7 +337,7 @@ aha_isa_identify(driver_t *driver, device_t parent * that. */ not_this_one:; - bus_release_resource(parent, SYS_RES_IOPORT, rid, aha->port); + bus_release_resource(parent, SYS_RES_IOPORT, rid, aha.port); aha_free(&aha); } } Index: sys/dev/aha/ahareg.h =================================================================== --- sys/dev/aha/ahareg.h (revision 241599) +++ sys/dev/aha/ahareg.h (working copy) @@ -370,12 +370,12 @@ struct aha_softc { int irqrid; int portrid; int drqrid; - void **ih; + void *ih; device_t dev; struct mtx lock; }; -void aha_alloc(struct aha_softc *, int, bus_space_tag_t, bus_space_handle_t); +void aha_alloc(struct aha_softc *); int aha_attach(struct aha_softc *); int aha_cmd(struct aha_softc *, aha_op_t, uint8_t *, u_int, uint8_t *, u_int, u_int); @@ -389,11 +389,11 @@ int aha_probe(struct aha_softc *); #define DEFAULT_CMD_TIMEOUT 10000 /* 1 sec */ -#define aha_inb(aha, port) \ - bus_read_1((aha)->port, port) +#define aha_inb(aha, reg) \ + bus_read_1((aha)->port, reg) -#define aha_outb(aha, port, value) \ - bus_write_1((aha)->port, port, value) +#define aha_outb(aha, reg, value) \ + bus_write_1((aha)->port, reg, value) #define ADP0100_PNP 0x00019004 /* ADP0100 */ #define AHA1540_PNP 0x40159004 /* ADP1540 */ --------------070007050109070401070508-- From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 02:06:34 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EBEB4F54; Tue, 16 Oct 2012 02:06:34 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id B87328FC0A; Tue, 16 Oct 2012 02:06:34 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G26XrL088844; Mon, 15 Oct 2012 22:06:33 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G26XIK088841; Tue, 16 Oct 2012 02:06:33 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 02:06:33 GMT Message-Id: <201210160206.q9G26XIK088841@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 02:06:35 -0000 TB --- 2012-10-16 00:49:38 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 00:49:38 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 00:49:38 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-10-16 00:49:38 - cleaning the object tree TB --- 2012-10-16 00:51:11 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 00:51:11 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2012-10-16 00:51:11 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 00:52:47 - /usr/local/bin/svn update /src TB --- 2012-10-16 00:52:52 - At svn revision 241599 TB --- 2012-10-16 00:52:53 - building world TB --- 2012-10-16 00:52:53 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 00:52:53 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 00:52:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 00:52:53 - SRCCONF=/dev/null TB --- 2012-10-16 00:52:53 - TARGET=sparc64 TB --- 2012-10-16 00:52:53 - TARGET_ARCH=sparc64 TB --- 2012-10-16 00:52:53 - TZ=UTC TB --- 2012-10-16 00:52:53 - __MAKE_CONF=/dev/null TB --- 2012-10-16 00:52:53 - cd /src TB --- 2012-10-16 00:52:53 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 00:52:58 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 02:00:55 UTC 2012 TB --- 2012-10-16 02:00:55 - generating LINT kernel config TB --- 2012-10-16 02:00:55 - cd /src/sys/sparc64/conf TB --- 2012-10-16 02:00:55 - /usr/bin/make -B LINT TB --- 2012-10-16 02:00:55 - cd /src/sys/sparc64/conf TB --- 2012-10-16 02:00:55 - /usr/sbin/config -m LINT TB --- 2012-10-16 02:00:55 - building LINT kernel TB --- 2012-10-16 02:00:55 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 02:00:55 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 02:00:55 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 02:00:55 - SRCCONF=/dev/null TB --- 2012-10-16 02:00:55 - TARGET=sparc64 TB --- 2012-10-16 02:00:55 - TARGET_ARCH=sparc64 TB --- 2012-10-16 02:00:55 - TZ=UTC TB --- 2012-10-16 02:00:55 - __MAKE_CONF=/dev/null TB --- 2012-10-16 02:00:55 - cd /src TB --- 2012-10-16 02:00:55 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 02:00:55 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dcons/dcons_crom.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dcons/dcons_os.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/de/if_de.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dpt/dpt_pci.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dpt/dpt_scsi.c cc1: warnings being treated as errors /src/sys/dev/dpt/dpt_scsi.c: In function 'dptexecuteccb': /src/sys/dev/dpt/dpt_scsi.c:724: warning: 'dpt' is used uninitialized in this function *** [dpt_scsi.o] Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 02:06:33 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 02:06:33 - ERROR: failed to build LINT kernel TB --- 2012-10-16 02:06:33 - 3301.01 user 603.77 system 4615.46 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 02:47:59 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D000A8B4; Tue, 16 Oct 2012 02:47:59 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 9DAC68FC0A; Tue, 16 Oct 2012 02:47:59 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G2lwxv032761; Mon, 15 Oct 2012 22:47:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G2lwDu032760; Tue, 16 Oct 2012 02:47:58 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 02:47:58 GMT Message-Id: <201210160247.q9G2lwDu032760@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 02:47:59 -0000 TB --- 2012-10-16 00:21:23 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 00:21:23 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 00:21:23 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2012-10-16 00:21:23 - cleaning the object tree TB --- 2012-10-16 00:22:43 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 00:22:43 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2012-10-16 00:22:43 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 00:23:33 - /usr/local/bin/svn update /src TB --- 2012-10-16 00:23:39 - At svn revision 241599 TB --- 2012-10-16 00:23:40 - building world TB --- 2012-10-16 00:23:40 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 00:23:40 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 00:23:40 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 00:23:40 - SRCCONF=/dev/null TB --- 2012-10-16 00:23:40 - TARGET=powerpc TB --- 2012-10-16 00:23:40 - TARGET_ARCH=powerpc TB --- 2012-10-16 00:23:40 - TZ=UTC TB --- 2012-10-16 00:23:40 - __MAKE_CONF=/dev/null TB --- 2012-10-16 00:23:40 - cd /src TB --- 2012-10-16 00:23:40 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 00:23:45 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 02:44:58 UTC 2012 TB --- 2012-10-16 02:44:58 - generating LINT kernel config TB --- 2012-10-16 02:44:58 - cd /src/sys/powerpc/conf TB --- 2012-10-16 02:44:58 - /usr/bin/make -B LINT TB --- 2012-10-16 02:44:58 - cd /src/sys/powerpc/conf TB --- 2012-10-16 02:44:58 - /usr/sbin/config -m LINT TB --- 2012-10-16 02:44:58 - building LINT kernel TB --- 2012-10-16 02:44:58 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 02:44:58 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 02:44:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 02:44:58 - SRCCONF=/dev/null TB --- 2012-10-16 02:44:58 - TARGET=powerpc TB --- 2012-10-16 02:44:58 - TARGET_ARCH=powerpc TB --- 2012-10-16 02:44:58 - TZ=UTC TB --- 2012-10-16 02:44:58 - __MAKE_CONF=/dev/null TB --- 2012-10-16 02:44:58 - cd /src TB --- 2012-10-16 02:44:58 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 02:44:58 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 02:47:58 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 02:47:58 - ERROR: failed to build LINT kernel TB --- 2012-10-16 02:47:58 - 7058.44 user 929.80 system 8795.22 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 03:37:13 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E951663; Tue, 16 Oct 2012 03:37:13 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 386928FC0C; Tue, 16 Oct 2012 03:37:13 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G3bBk0033493; Mon, 15 Oct 2012 23:37:11 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G3bBng033492; Tue, 16 Oct 2012 03:37:11 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 03:37:11 GMT Message-Id: <201210160337.q9G3bBng033492@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc64/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 03:37:13 -0000 TB --- 2012-10-16 00:41:59 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 00:41:59 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 00:41:59 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2012-10-16 00:41:59 - cleaning the object tree TB --- 2012-10-16 00:45:16 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 00:45:16 - cd /tinderbox/HEAD/powerpc64/powerpc TB --- 2012-10-16 00:45:16 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 00:46:36 - /usr/local/bin/svn update /src TB --- 2012-10-16 00:46:41 - At svn revision 241599 TB --- 2012-10-16 00:46:42 - building world TB --- 2012-10-16 00:46:42 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 00:46:42 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 00:46:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 00:46:42 - SRCCONF=/dev/null TB --- 2012-10-16 00:46:42 - TARGET=powerpc TB --- 2012-10-16 00:46:42 - TARGET_ARCH=powerpc64 TB --- 2012-10-16 00:46:42 - TZ=UTC TB --- 2012-10-16 00:46:42 - __MAKE_CONF=/dev/null TB --- 2012-10-16 00:46:42 - cd /src TB --- 2012-10-16 00:46:42 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 00:46:47 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Oct 16 03:34:05 UTC 2012 TB --- 2012-10-16 03:34:05 - generating LINT kernel config TB --- 2012-10-16 03:34:05 - cd /src/sys/powerpc/conf TB --- 2012-10-16 03:34:05 - /usr/bin/make -B LINT TB --- 2012-10-16 03:34:05 - cd /src/sys/powerpc/conf TB --- 2012-10-16 03:34:05 - /usr/sbin/config -m LINT TB --- 2012-10-16 03:34:05 - building LINT kernel TB --- 2012-10-16 03:34:05 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 03:34:05 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 03:34:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 03:34:05 - SRCCONF=/dev/null TB --- 2012-10-16 03:34:05 - TARGET=powerpc TB --- 2012-10-16 03:34:05 - TARGET_ARCH=powerpc64 TB --- 2012-10-16 03:34:05 - TZ=UTC TB --- 2012-10-16 03:34:05 - __MAKE_CONF=/dev/null TB --- 2012-10-16 03:34:05 - cd /src TB --- 2012-10-16 03:34:05 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 03:34:05 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 03:37:11 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 03:37:11 - ERROR: failed to build LINT kernel TB --- 2012-10-16 03:37:11 - 8601.08 user 1164.70 system 10512.43 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 05:16:29 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99A4E8DB; Tue, 16 Oct 2012 05:16:29 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 46AAC8FC08; Tue, 16 Oct 2012 05:16:29 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G5GSSh019156; Tue, 16 Oct 2012 01:16:28 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G5GSZ0019155; Tue, 16 Oct 2012 05:16:28 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 05:16:28 GMT Message-Id: <201210160516.q9G5GSZ0019155@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on arm/arm Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 05:16:29 -0000 TB --- 2012-10-16 03:40:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 03:40:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 03:40:00 - starting HEAD tinderbox run for arm/arm TB --- 2012-10-16 03:40:01 - cleaning the object tree TB --- 2012-10-16 03:45:19 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 03:45:19 - cd /tinderbox/HEAD/arm/arm TB --- 2012-10-16 03:45:19 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 03:48:34 - /usr/local/bin/svn update /src TB --- 2012-10-16 03:48:42 - At svn revision 241602 TB --- 2012-10-16 03:48:43 - building world TB --- 2012-10-16 03:48:43 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 03:48:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 03:48:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 03:48:43 - SRCCONF=/dev/null TB --- 2012-10-16 03:48:43 - TARGET=arm TB --- 2012-10-16 03:48:43 - TARGET_ARCH=arm TB --- 2012-10-16 03:48:43 - TZ=UTC TB --- 2012-10-16 03:48:43 - __MAKE_CONF=/dev/null TB --- 2012-10-16 03:48:43 - cd /src TB --- 2012-10-16 03:48:43 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 03:48:48 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 04:47:41 UTC 2012 TB --- 2012-10-16 04:47:41 - cd /src/sys/arm/conf TB --- 2012-10-16 04:47:41 - /usr/sbin/config -m AC100 TB --- 2012-10-16 04:47:41 - skipping AC100 kernel TB --- 2012-10-16 04:47:41 - cd /src/sys/arm/conf TB --- 2012-10-16 04:47:41 - /usr/sbin/config -m ARMADAXP TB --- 2012-10-16 04:47:41 - skipping ARMADAXP kernel TB --- 2012-10-16 04:47:41 - cd /src/sys/arm/conf TB --- 2012-10-16 04:47:41 - /usr/sbin/config -m ATMEL TB --- 2012-10-16 04:47:41 - building ATMEL kernel TB --- 2012-10-16 04:47:41 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 04:47:41 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 04:47:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 04:47:41 - SRCCONF=/dev/null TB --- 2012-10-16 04:47:41 - TARGET=arm TB --- 2012-10-16 04:47:41 - TARGET_ARCH=arm TB --- 2012-10-16 04:47:41 - TZ=UTC TB --- 2012-10-16 04:47:41 - __MAKE_CONF=/dev/null TB --- 2012-10-16 04:47:41 - cd /src TB --- 2012-10-16 04:47:41 - /usr/bin/make -B buildkernel KERNCONF=ATMEL >>> Kernel build for ATMEL started on Tue Oct 16 04:47:41 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for ATMEL completed on Tue Oct 16 04:51:33 UTC 2012 TB --- 2012-10-16 04:51:33 - cd /src/sys/arm/conf TB --- 2012-10-16 04:51:33 - /usr/sbin/config -m AVILA TB --- 2012-10-16 04:51:33 - skipping AVILA kernel TB --- 2012-10-16 04:51:33 - cd /src/sys/arm/conf TB --- 2012-10-16 04:51:33 - /usr/sbin/config -m BEAGLEBONE TB --- 2012-10-16 04:51:33 - skipping BEAGLEBONE kernel TB --- 2012-10-16 04:51:33 - cd /src/sys/arm/conf TB --- 2012-10-16 04:51:33 - /usr/sbin/config -m BWCT TB --- 2012-10-16 04:51:33 - building BWCT kernel TB --- 2012-10-16 04:51:33 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 04:51:33 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 04:51:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 04:51:33 - SRCCONF=/dev/null TB --- 2012-10-16 04:51:33 - TARGET=arm TB --- 2012-10-16 04:51:33 - TARGET_ARCH=arm TB --- 2012-10-16 04:51:33 - TZ=UTC TB --- 2012-10-16 04:51:33 - __MAKE_CONF=/dev/null TB --- 2012-10-16 04:51:33 - cd /src TB --- 2012-10-16 04:51:33 - /usr/bin/make -B buildkernel KERNCONF=BWCT >>> Kernel build for BWCT started on Tue Oct 16 04:51:33 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for BWCT completed on Tue Oct 16 04:53:41 UTC 2012 TB --- 2012-10-16 04:53:41 - cd /src/sys/arm/conf TB --- 2012-10-16 04:53:41 - /usr/sbin/config -m CAMBRIA TB --- 2012-10-16 04:53:41 - skipping CAMBRIA kernel TB --- 2012-10-16 04:53:41 - cd /src/sys/arm/conf TB --- 2012-10-16 04:53:41 - /usr/sbin/config -m CNS11XXNAS TB --- 2012-10-16 04:53:41 - building CNS11XXNAS kernel TB --- 2012-10-16 04:53:41 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 04:53:41 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 04:53:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 04:53:41 - SRCCONF=/dev/null TB --- 2012-10-16 04:53:41 - TARGET=arm TB --- 2012-10-16 04:53:41 - TARGET_ARCH=arm TB --- 2012-10-16 04:53:41 - TZ=UTC TB --- 2012-10-16 04:53:41 - __MAKE_CONF=/dev/null TB --- 2012-10-16 04:53:41 - cd /src TB --- 2012-10-16 04:53:41 - /usr/bin/make -B buildkernel KERNCONF=CNS11XXNAS >>> Kernel build for CNS11XXNAS started on Tue Oct 16 04:53:41 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for CNS11XXNAS completed on Tue Oct 16 04:56:05 UTC 2012 TB --- 2012-10-16 04:56:05 - cd /src/sys/arm/conf TB --- 2012-10-16 04:56:05 - /usr/sbin/config -m CRB TB --- 2012-10-16 04:56:05 - skipping CRB kernel TB --- 2012-10-16 04:56:05 - cd /src/sys/arm/conf TB --- 2012-10-16 04:56:05 - /usr/sbin/config -m DB-78XXX TB --- 2012-10-16 04:56:05 - building DB-78XXX kernel TB --- 2012-10-16 04:56:05 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 04:56:05 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 04:56:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 04:56:05 - SRCCONF=/dev/null TB --- 2012-10-16 04:56:05 - TARGET=arm TB --- 2012-10-16 04:56:05 - TARGET_ARCH=arm TB --- 2012-10-16 04:56:05 - TZ=UTC TB --- 2012-10-16 04:56:05 - __MAKE_CONF=/dev/null TB --- 2012-10-16 04:56:05 - cd /src TB --- 2012-10-16 04:56:05 - /usr/bin/make -B buildkernel KERNCONF=DB-78XXX >>> Kernel build for DB-78XXX started on Tue Oct 16 04:56:06 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-78XXX completed on Tue Oct 16 04:58:47 UTC 2012 TB --- 2012-10-16 04:58:47 - cd /src/sys/arm/conf TB --- 2012-10-16 04:58:47 - /usr/sbin/config -m DB-88F5XXX TB --- 2012-10-16 04:58:47 - building DB-88F5XXX kernel TB --- 2012-10-16 04:58:47 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 04:58:47 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 04:58:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 04:58:47 - SRCCONF=/dev/null TB --- 2012-10-16 04:58:47 - TARGET=arm TB --- 2012-10-16 04:58:47 - TARGET_ARCH=arm TB --- 2012-10-16 04:58:47 - TZ=UTC TB --- 2012-10-16 04:58:47 - __MAKE_CONF=/dev/null TB --- 2012-10-16 04:58:47 - cd /src TB --- 2012-10-16 04:58:47 - /usr/bin/make -B buildkernel KERNCONF=DB-88F5XXX >>> Kernel build for DB-88F5XXX started on Tue Oct 16 04:58:47 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F5XXX completed on Tue Oct 16 05:01:26 UTC 2012 TB --- 2012-10-16 05:01:26 - cd /src/sys/arm/conf TB --- 2012-10-16 05:01:26 - /usr/sbin/config -m DB-88F6XXX TB --- 2012-10-16 05:01:27 - building DB-88F6XXX kernel TB --- 2012-10-16 05:01:27 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 05:01:27 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 05:01:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 05:01:27 - SRCCONF=/dev/null TB --- 2012-10-16 05:01:27 - TARGET=arm TB --- 2012-10-16 05:01:27 - TARGET_ARCH=arm TB --- 2012-10-16 05:01:27 - TZ=UTC TB --- 2012-10-16 05:01:27 - __MAKE_CONF=/dev/null TB --- 2012-10-16 05:01:27 - cd /src TB --- 2012-10-16 05:01:27 - /usr/bin/make -B buildkernel KERNCONF=DB-88F6XXX >>> Kernel build for DB-88F6XXX started on Tue Oct 16 05:01:27 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F6XXX completed on Tue Oct 16 05:04:20 UTC 2012 TB --- 2012-10-16 05:04:20 - cd /src/sys/arm/conf TB --- 2012-10-16 05:04:20 - /usr/sbin/config -m DOCKSTAR TB --- 2012-10-16 05:04:20 - building DOCKSTAR kernel TB --- 2012-10-16 05:04:20 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 05:04:20 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 05:04:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 05:04:20 - SRCCONF=/dev/null TB --- 2012-10-16 05:04:20 - TARGET=arm TB --- 2012-10-16 05:04:20 - TARGET_ARCH=arm TB --- 2012-10-16 05:04:20 - TZ=UTC TB --- 2012-10-16 05:04:20 - __MAKE_CONF=/dev/null TB --- 2012-10-16 05:04:20 - cd /src TB --- 2012-10-16 05:04:20 - /usr/bin/make -B buildkernel KERNCONF=DOCKSTAR >>> Kernel build for DOCKSTAR started on Tue Oct 16 05:04:20 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DOCKSTAR completed on Tue Oct 16 05:07:20 UTC 2012 TB --- 2012-10-16 05:07:20 - cd /src/sys/arm/conf TB --- 2012-10-16 05:07:20 - /usr/sbin/config -m EA3250 TB --- 2012-10-16 05:07:20 - building EA3250 kernel TB --- 2012-10-16 05:07:20 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 05:07:20 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 05:07:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 05:07:20 - SRCCONF=/dev/null TB --- 2012-10-16 05:07:20 - TARGET=arm TB --- 2012-10-16 05:07:20 - TARGET_ARCH=arm TB --- 2012-10-16 05:07:20 - TZ=UTC TB --- 2012-10-16 05:07:20 - __MAKE_CONF=/dev/null TB --- 2012-10-16 05:07:20 - cd /src TB --- 2012-10-16 05:07:20 - /usr/bin/make -B buildkernel KERNCONF=EA3250 >>> Kernel build for EA3250 started on Tue Oct 16 05:07:20 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EA3250 completed on Tue Oct 16 05:10:01 UTC 2012 TB --- 2012-10-16 05:10:01 - cd /src/sys/arm/conf TB --- 2012-10-16 05:10:01 - /usr/sbin/config -m EB9200 TB --- 2012-10-16 05:10:01 - building EB9200 kernel TB --- 2012-10-16 05:10:01 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 05:10:01 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 05:10:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 05:10:01 - SRCCONF=/dev/null TB --- 2012-10-16 05:10:01 - TARGET=arm TB --- 2012-10-16 05:10:01 - TARGET_ARCH=arm TB --- 2012-10-16 05:10:01 - TZ=UTC TB --- 2012-10-16 05:10:01 - __MAKE_CONF=/dev/null TB --- 2012-10-16 05:10:01 - cd /src TB --- 2012-10-16 05:10:01 - /usr/bin/make -B buildkernel KERNCONF=EB9200 >>> Kernel build for EB9200 started on Tue Oct 16 05:10:01 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EB9200 completed on Tue Oct 16 05:12:32 UTC 2012 TB --- 2012-10-16 05:12:32 - cd /src/sys/arm/conf TB --- 2012-10-16 05:12:32 - /usr/sbin/config -m EP80219 TB --- 2012-10-16 05:12:32 - skipping EP80219 kernel TB --- 2012-10-16 05:12:32 - cd /src/sys/arm/conf TB --- 2012-10-16 05:12:32 - /usr/sbin/config -m ETHERNUT5 TB --- 2012-10-16 05:12:32 - building ETHERNUT5 kernel TB --- 2012-10-16 05:12:32 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 05:12:32 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 05:12:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 05:12:32 - SRCCONF=/dev/null TB --- 2012-10-16 05:12:32 - TARGET=arm TB --- 2012-10-16 05:12:32 - TARGET_ARCH=arm TB --- 2012-10-16 05:12:32 - TZ=UTC TB --- 2012-10-16 05:12:32 - __MAKE_CONF=/dev/null TB --- 2012-10-16 05:12:32 - cd /src TB --- 2012-10-16 05:12:32 - /usr/bin/make -B buildkernel KERNCONF=ETHERNUT5 >>> Kernel build for ETHERNUT5 started on Tue Oct 16 05:12:32 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/modules/aha/../../dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c: In function 'ahatimeout': /src/sys/modules/aha/../../dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/modules/aha/../../dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /src/sys/modules/aha. *** [all] Error code 1 Stop in /src/sys/modules. *** [modules-all] Error code 1 Stop in /obj/arm.arm/src/sys/ETHERNUT5. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 05:16:28 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 05:16:28 - ERROR: failed to build ETHERNUT5 kernel TB --- 2012-10-16 05:16:28 - 3879.42 user 787.06 system 5787.21 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 06:27:11 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1562E7A7; Tue, 16 Oct 2012 06:27:11 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id D3CA58FC0A; Tue, 16 Oct 2012 06:27:10 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G6R9E2066677; Tue, 16 Oct 2012 02:27:09 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G6R910066652; Tue, 16 Oct 2012 06:27:09 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 06:27:09 GMT Message-Id: <201210160627.q9G6R910066652@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 06:27:11 -0000 TB --- 2012-10-16 03:40:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 03:40:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 03:40:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-16 03:40:01 - cleaning the object tree TB --- 2012-10-16 03:45:03 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 03:45:03 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-16 03:45:03 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 03:47:55 - /usr/local/bin/svn update /src TB --- 2012-10-16 03:48:06 - At svn revision 241602 TB --- 2012-10-16 03:48:07 - building world TB --- 2012-10-16 03:48:07 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 03:48:07 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 03:48:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 03:48:07 - SRCCONF=/dev/null TB --- 2012-10-16 03:48:07 - TARGET=i386 TB --- 2012-10-16 03:48:07 - TARGET_ARCH=i386 TB --- 2012-10-16 03:48:07 - TZ=UTC TB --- 2012-10-16 03:48:07 - __MAKE_CONF=/dev/null TB --- 2012-10-16 03:48:07 - cd /src TB --- 2012-10-16 03:48:07 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 03:48:19 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 06:19:16 UTC 2012 TB --- 2012-10-16 06:19:16 - generating LINT kernel config TB --- 2012-10-16 06:19:16 - cd /src/sys/i386/conf TB --- 2012-10-16 06:19:16 - /usr/bin/make -B LINT TB --- 2012-10-16 06:19:16 - cd /src/sys/i386/conf TB --- 2012-10-16 06:19:16 - /usr/sbin/config -m LINT TB --- 2012-10-16 06:19:16 - building LINT kernel TB --- 2012-10-16 06:19:16 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 06:19:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 06:19:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 06:19:16 - SRCCONF=/dev/null TB --- 2012-10-16 06:19:16 - TARGET=i386 TB --- 2012-10-16 06:19:16 - TARGET_ARCH=i386 TB --- 2012-10-16 06:19:16 - TZ=UTC TB --- 2012-10-16 06:19:16 - __MAKE_CONF=/dev/null TB --- 2012-10-16 06:19:16 - cd /src TB --- 2012-10-16 06:19:16 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 06:19:16 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 06:27:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 06:27:09 - ERROR: failed to build LINT kernel TB --- 2012-10-16 06:27:09 - 7110.69 user 1012.26 system 10028.80 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 06:37:10 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2C388D6D; Tue, 16 Oct 2012 06:37:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id EF1128FC08; Tue, 16 Oct 2012 06:37:09 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G6b9tv017703; Tue, 16 Oct 2012 02:37:09 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G6b9dk017702; Tue, 16 Oct 2012 06:37:09 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 06:37:09 GMT Message-Id: <201210160637.q9G6b9dk017702@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/pc98 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 06:37:10 -0000 TB --- 2012-10-16 03:40:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 03:40:01 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 03:40:01 - starting HEAD tinderbox run for i386/pc98 TB --- 2012-10-16 03:40:01 - cleaning the object tree TB --- 2012-10-16 03:45:16 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 03:45:16 - cd /tinderbox/HEAD/i386/pc98 TB --- 2012-10-16 03:45:16 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 03:48:32 - /usr/local/bin/svn update /src TB --- 2012-10-16 03:48:39 - At svn revision 241602 TB --- 2012-10-16 03:48:40 - building world TB --- 2012-10-16 03:48:40 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 03:48:40 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 03:48:40 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 03:48:40 - SRCCONF=/dev/null TB --- 2012-10-16 03:48:40 - TARGET=pc98 TB --- 2012-10-16 03:48:40 - TARGET_ARCH=i386 TB --- 2012-10-16 03:48:40 - TZ=UTC TB --- 2012-10-16 03:48:40 - __MAKE_CONF=/dev/null TB --- 2012-10-16 03:48:40 - cd /src TB --- 2012-10-16 03:48:40 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 03:48:45 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 06:18:51 UTC 2012 TB --- 2012-10-16 06:18:51 - generating LINT kernel config TB --- 2012-10-16 06:18:51 - cd /src/sys/pc98/conf TB --- 2012-10-16 06:18:51 - /usr/bin/make -B LINT TB --- 2012-10-16 06:18:51 - cd /src/sys/pc98/conf TB --- 2012-10-16 06:18:51 - /usr/sbin/config -m LINT TB --- 2012-10-16 06:18:51 - building LINT kernel TB --- 2012-10-16 06:18:51 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 06:18:51 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 06:18:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 06:18:51 - SRCCONF=/dev/null TB --- 2012-10-16 06:18:51 - TARGET=pc98 TB --- 2012-10-16 06:18:51 - TARGET_ARCH=i386 TB --- 2012-10-16 06:18:51 - TZ=UTC TB --- 2012-10-16 06:18:51 - __MAKE_CONF=/dev/null TB --- 2012-10-16 06:18:51 - cd /src TB --- 2012-10-16 06:18:51 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 06:18:51 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/modules/aha/../../dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c: In function 'ahatimeout': /src/sys/modules/aha/../../dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/modules/aha/../../dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/modules/aha/../../dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /src/sys/modules/aha. *** [all] Error code 1 Stop in /src/sys/modules. *** [modules-all] Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 06:37:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 06:37:09 - ERROR: failed to build LINT kernel TB --- 2012-10-16 06:37:09 - 7623.77 user 1058.25 system 10628.38 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 06:59:53 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E02A642A; Tue, 16 Oct 2012 06:59:52 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id A1EA58FC12; Tue, 16 Oct 2012 06:59:52 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G6xpek070717; Tue, 16 Oct 2012 02:59:51 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G6xpRx070711; Tue, 16 Oct 2012 06:59:51 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 06:59:51 GMT Message-Id: <201210160659.q9G6xpRx070711@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on ia64/ia64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 06:59:53 -0000 TB --- 2012-10-16 05:16:28 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 05:16:28 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 05:16:28 - starting HEAD tinderbox run for ia64/ia64 TB --- 2012-10-16 05:16:28 - cleaning the object tree TB --- 2012-10-16 05:17:24 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 05:17:24 - cd /tinderbox/HEAD/ia64/ia64 TB --- 2012-10-16 05:17:24 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 05:17:58 - /usr/local/bin/svn update /src TB --- 2012-10-16 05:18:04 - At svn revision 241602 TB --- 2012-10-16 05:18:05 - building world TB --- 2012-10-16 05:18:05 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 05:18:05 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 05:18:05 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 05:18:05 - SRCCONF=/dev/null TB --- 2012-10-16 05:18:05 - TARGET=ia64 TB --- 2012-10-16 05:18:05 - TARGET_ARCH=ia64 TB --- 2012-10-16 05:18:05 - TZ=UTC TB --- 2012-10-16 05:18:05 - __MAKE_CONF=/dev/null TB --- 2012-10-16 05:18:05 - cd /src TB --- 2012-10-16 05:18:05 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 05:18:10 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 06:53:54 UTC 2012 TB --- 2012-10-16 06:53:54 - generating LINT kernel config TB --- 2012-10-16 06:53:54 - cd /src/sys/ia64/conf TB --- 2012-10-16 06:53:54 - /usr/bin/make -B LINT TB --- 2012-10-16 06:53:54 - cd /src/sys/ia64/conf TB --- 2012-10-16 06:53:54 - /usr/sbin/config -m LINT TB --- 2012-10-16 06:53:55 - building LINT kernel TB --- 2012-10-16 06:53:55 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 06:53:55 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 06:53:55 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 06:53:55 - SRCCONF=/dev/null TB --- 2012-10-16 06:53:55 - TARGET=ia64 TB --- 2012-10-16 06:53:55 - TARGET_ARCH=ia64 TB --- 2012-10-16 06:53:55 - TZ=UTC TB --- 2012-10-16 06:53:55 - __MAKE_CONF=/dev/null TB --- 2012-10-16 06:53:55 - cd /src TB --- 2012-10-16 06:53:55 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 06:53:55 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 06:59:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 06:59:51 - ERROR: failed to build LINT kernel TB --- 2012-10-16 06:59:51 - 4582.12 user 712.95 system 6203.45 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 07:08:57 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3405D8FA; Tue, 16 Oct 2012 07:08:57 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id EE8D78FC08; Tue, 16 Oct 2012 07:08:56 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G78ul6013860; Tue, 16 Oct 2012 03:08:56 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G78urb013858; Tue, 16 Oct 2012 07:08:56 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 07:08:56 GMT Message-Id: <201210160708.q9G78urb013858@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 07:08:57 -0000 TB --- 2012-10-16 03:40:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 03:40:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 03:40:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-10-16 03:40:01 - cleaning the object tree TB --- 2012-10-16 03:49:01 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 03:49:01 - cd /tinderbox/HEAD/amd64/amd64 TB --- 2012-10-16 03:49:01 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 03:50:01 - /usr/local/bin/svn update /src TB --- 2012-10-16 03:50:07 - At svn revision 241602 TB --- 2012-10-16 03:50:08 - building world TB --- 2012-10-16 03:50:08 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 03:50:08 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 03:50:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 03:50:08 - SRCCONF=/dev/null TB --- 2012-10-16 03:50:08 - TARGET=amd64 TB --- 2012-10-16 03:50:08 - TARGET_ARCH=amd64 TB --- 2012-10-16 03:50:08 - TZ=UTC TB --- 2012-10-16 03:50:08 - __MAKE_CONF=/dev/null TB --- 2012-10-16 03:50:08 - cd /src TB --- 2012-10-16 03:50:08 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 03:50:13 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Oct 16 06:57:13 UTC 2012 TB --- 2012-10-16 06:57:13 - generating LINT kernel config TB --- 2012-10-16 06:57:13 - cd /src/sys/amd64/conf TB --- 2012-10-16 06:57:13 - /usr/bin/make -B LINT TB --- 2012-10-16 06:57:13 - cd /src/sys/amd64/conf TB --- 2012-10-16 06:57:13 - /usr/sbin/config -m LINT TB --- 2012-10-16 06:57:13 - building LINT kernel TB --- 2012-10-16 06:57:13 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 06:57:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 06:57:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 06:57:13 - SRCCONF=/dev/null TB --- 2012-10-16 06:57:13 - TARGET=amd64 TB --- 2012-10-16 06:57:13 - TARGET_ARCH=amd64 TB --- 2012-10-16 06:57:13 - TZ=UTC TB --- 2012-10-16 06:57:13 - __MAKE_CONF=/dev/null TB --- 2012-10-16 06:57:13 - cd /src TB --- 2012-10-16 06:57:13 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 06:57:14 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 07:08:56 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 07:08:56 - ERROR: failed to build LINT kernel TB --- 2012-10-16 07:08:56 - 8586.34 user 1320.44 system 12535.11 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 08:33:16 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 14CD9CA2; Tue, 16 Oct 2012 08:33:16 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id C89058FC14; Tue, 16 Oct 2012 08:33:15 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G8XEBu085952; Tue, 16 Oct 2012 04:33:14 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G8XEKs085949; Tue, 16 Oct 2012 08:33:14 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 08:33:14 GMT Message-Id: <201210160833.q9G8XEKs085949@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 08:33:16 -0000 TB --- 2012-10-16 07:08:56 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 07:08:56 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 07:08:56 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-10-16 07:08:57 - cleaning the object tree TB --- 2012-10-16 07:15:44 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 07:15:44 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2012-10-16 07:15:44 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 07:15:53 - /usr/local/bin/svn update /src TB --- 2012-10-16 07:16:00 - At svn revision 241602 TB --- 2012-10-16 07:16:01 - building world TB --- 2012-10-16 07:16:01 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 07:16:01 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 07:16:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 07:16:01 - SRCCONF=/dev/null TB --- 2012-10-16 07:16:01 - TARGET=sparc64 TB --- 2012-10-16 07:16:01 - TARGET_ARCH=sparc64 TB --- 2012-10-16 07:16:01 - TZ=UTC TB --- 2012-10-16 07:16:01 - __MAKE_CONF=/dev/null TB --- 2012-10-16 07:16:01 - cd /src TB --- 2012-10-16 07:16:01 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 07:16:07 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 08:27:28 UTC 2012 TB --- 2012-10-16 08:27:28 - generating LINT kernel config TB --- 2012-10-16 08:27:28 - cd /src/sys/sparc64/conf TB --- 2012-10-16 08:27:28 - /usr/bin/make -B LINT TB --- 2012-10-16 08:27:29 - cd /src/sys/sparc64/conf TB --- 2012-10-16 08:27:29 - /usr/sbin/config -m LINT TB --- 2012-10-16 08:27:29 - building LINT kernel TB --- 2012-10-16 08:27:29 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 08:27:29 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 08:27:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 08:27:29 - SRCCONF=/dev/null TB --- 2012-10-16 08:27:29 - TARGET=sparc64 TB --- 2012-10-16 08:27:29 - TARGET_ARCH=sparc64 TB --- 2012-10-16 08:27:29 - TZ=UTC TB --- 2012-10-16 08:27:29 - __MAKE_CONF=/dev/null TB --- 2012-10-16 08:27:29 - cd /src TB --- 2012-10-16 08:27:29 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 08:27:29 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dcons/dcons_crom.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dcons/dcons_os.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/de/if_de.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dpt/dpt_pci.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/dpt/dpt_scsi.c cc1: warnings being treated as errors /src/sys/dev/dpt/dpt_scsi.c: In function 'dptexecuteccb': /src/sys/dev/dpt/dpt_scsi.c:724: warning: 'dpt' is used uninitialized in this function *** [dpt_scsi.o] Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 08:33:14 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 08:33:14 - ERROR: failed to build LINT kernel TB --- 2012-10-16 08:33:14 - 3379.48 user 607.43 system 5057.77 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 09:11:29 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4DCCBA72; Tue, 16 Oct 2012 09:11:29 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 12F388FC0A; Tue, 16 Oct 2012 09:11:27 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9G9BRSj025695; Tue, 16 Oct 2012 05:11:27 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9G9BRdb025694; Tue, 16 Oct 2012 09:11:27 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 09:11:27 GMT Message-Id: <201210160911.q9G9BRdb025694@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 09:11:29 -0000 TB --- 2012-10-16 06:37:09 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 06:37:09 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 06:37:09 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2012-10-16 06:37:09 - cleaning the object tree TB --- 2012-10-16 06:38:28 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 06:38:28 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2012-10-16 06:38:28 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 06:39:47 - /usr/local/bin/svn update /src TB --- 2012-10-16 06:39:53 - At svn revision 241602 TB --- 2012-10-16 06:39:54 - building world TB --- 2012-10-16 06:39:54 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 06:39:54 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 06:39:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 06:39:54 - SRCCONF=/dev/null TB --- 2012-10-16 06:39:54 - TARGET=powerpc TB --- 2012-10-16 06:39:54 - TARGET_ARCH=powerpc TB --- 2012-10-16 06:39:54 - TZ=UTC TB --- 2012-10-16 06:39:54 - __MAKE_CONF=/dev/null TB --- 2012-10-16 06:39:54 - cd /src TB --- 2012-10-16 06:39:54 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 06:39:59 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 09:08:30 UTC 2012 TB --- 2012-10-16 09:08:30 - generating LINT kernel config TB --- 2012-10-16 09:08:30 - cd /src/sys/powerpc/conf TB --- 2012-10-16 09:08:30 - /usr/bin/make -B LINT TB --- 2012-10-16 09:08:30 - cd /src/sys/powerpc/conf TB --- 2012-10-16 09:08:30 - /usr/sbin/config -m LINT TB --- 2012-10-16 09:08:30 - building LINT kernel TB --- 2012-10-16 09:08:30 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 09:08:30 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 09:08:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 09:08:30 - SRCCONF=/dev/null TB --- 2012-10-16 09:08:30 - TARGET=powerpc TB --- 2012-10-16 09:08:30 - TARGET_ARCH=powerpc TB --- 2012-10-16 09:08:30 - TZ=UTC TB --- 2012-10-16 09:08:30 - __MAKE_CONF=/dev/null TB --- 2012-10-16 09:08:30 - cd /src TB --- 2012-10-16 09:08:30 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 09:08:30 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 09:11:27 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 09:11:27 - ERROR: failed to build LINT kernel TB --- 2012-10-16 09:11:27 - 7140.72 user 931.12 system 9257.59 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 09:21:26 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 602D0E8F; Tue, 16 Oct 2012 09:21:26 +0000 (UTC) (envelope-from fabien.thomas@netasq.com) Received: from work.netasq.com (gwlille.netasq.com [91.212.116.1]) by mx1.freebsd.org (Postfix) with ESMTP id E56B18FC0C; Tue, 16 Oct 2012 09:21:24 +0000 (UTC) Received: from [10.2.1.1] (unknown [10.2.1.1]) by work.netasq.com (Postfix) with ESMTPSA id BB10E2705208; Tue, 16 Oct 2012 11:21:17 +0200 (CEST) Subject: Re: [CFT]hwpmc update for sandybridge-e Mime-Version: 1.0 (Apple Message framework v1283) From: Fabien Thomas In-Reply-To: Date: Tue, 16 Oct 2012 11:21:18 +0200 Message-Id: <15825760-628D-4073-813A-DD2449BDC6FB@netasq.com> References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> To: hiren panchasara X-Mailer: Apple Mail (2.1283) Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-current , Davide Italiano X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 09:21:26 -0000 Le 16 oct. 2012 =E0 02:49, hiren panchasara a =E9crit : >=20 >=20 > On Mon, Oct 15, 2012 at 1:12 AM, Fabien Thomas = wrote: >=20 > Le 13 oct. 2012 =E0 00:54, hiren panchasara a =E9crit : >=20 > > > > > > On Fri, Oct 5, 2012 at 1:05 AM, Fabien Thomas = wrote: > > > > Le 5 oct. 2012 =E0 10:00, Fabien Thomas a =E9crit : > > > > > > > > Le 5 oct. 2012 =E0 00:46, Sean Bruno a =E9crit : > > > > > >> So, I did the bear minimum and kind of hacked things together = without > > >> understanding precisely what I was doing, and I was able to = massage the > > >> sandybridge-e CPUs into giving me some basic functions. > > >> > > >> Comments or concerns before I commit this? > > >> > > >> http://people.freebsd.org/~sbruno/pmc_sandybridge.txt > > > > > > Hi Sean, > > > > > > The only modification required is this one > > > http://svnweb.freebsd.org/base?view=3Drevision&revision=3D237196 > > > > > > but davide@ removed it for a problem that need to be looked at. > > > > Looking at the doc this CPU require a full set of PMC as the list of = event are different. > > So this mean full manpage, full event list, =85 > > > > Doc: > > " > > The events in Table 19-3 apply to > > processors with CPUID signature of DisplayFamily_DisplayModel = encoding with the > > following values: 06_2AH and 06_2DH. The events in Table 19-4 apply = to processors > > with CPUID signature 06_2AH. The events in Table 19-5 apply to = processors with > > CPUID signature 06_2DH. > > " > > > > Required change will be the same as this commit if you want to look = at it: > > http://svnweb.freebsd.org/base?view=3Drevision&revision=3D240164 > > > > Hi All, > > > > With help of Sean, I've prepared another semi-working patch: > > http://www.strugglingcoder.info/patches/hwpmc_sbx_1.txt >=20 > Great, i've quickly looked at the patch: >=20 > I'm not sure to understand why you have removed code in your case for = uncore. > If you dont want to support remove it like for ivy bridge. >=20 > Thanks Fabien for getting back quickly. As I am not clear about uncore = support, I've removed it entirely as you suggested. I've tried to = incorporate other comments too. >=20 > New set of diffs, pmccontrol and pmctest.py results are here: >=20 > http://www.strugglingcoder.info/patches/hwpmc_sbx_2.txt > http://www.strugglingcoder.info/patches/pmccontrol_2.txt > http://www.strugglingcoder.info/patches/pmctestpy_2.txt >=20 > I now have following event counters failing from pmctest.py script: > CYCLE_ACTIVITY.CYCLES_L2_PENDING >=20 I think you missed IAP_F_FM. I will look at the new diff later. > BACLEARS.ANY > L2_TRANS.DEMAND_DATA_RD > L2_TRANS.RF0 > SQ_MISC.SPLIT_LOCK > I am not quite sure why these are failing. Will continue looking into = it. >=20 > Appreciate your help, > Hiren From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 09:34:47 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C20534A6; Tue, 16 Oct 2012 09:34:47 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from acme.spoerlein.net (acme.spoerlein.net [IPv6:2a01:4f8:131:23c2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 53E938FC14; Tue, 16 Oct 2012 09:34:47 +0000 (UTC) Received: from localhost (acme.spoerlein.net [IPv6:2a01:4f8:131:23c2::1]) by acme.spoerlein.net (8.14.5/8.14.5) with ESMTP id q9G9Ykuw099364 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Tue, 16 Oct 2012 11:34:46 +0200 (CEST) (envelope-from uqs@FreeBSD.org) Date: Tue, 16 Oct 2012 11:34:45 +0200 From: Ulrich =?utf-8?B?U3DDtnJsZWlu?= To: Adrian Chadd Subject: Re: git.freebsd.org is down? Message-ID: <20121016093445.GB69724@acme.spoerlein.net> Mail-Followup-To: Adrian Chadd , Oliver Pinter , current@freebsd.org References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: current@FreeBSD.org, Oliver Pinter X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 09:34:47 -0000 Also, someone killed the machine with too much I/O by pulling too often, frequently or in parallel. In any case, please use github.com/freebsd for pulling and leave git.freebsd.org to do the conversion work. Thanks Uli On Sun, 2012-10-14 at 17:35:20 -0700, Adrian Chadd wrote: > The cluster is being relocated! > > > > adrian > > > On 14 October 2012 12:50, Oliver Pinter wrote: > > Hi All! > > > > I got this message, when I why try to pull from git.freebsd.org: > > > > ---8<--- > > fatal: unable to connect git.freebsd.org: > > git.freebsd.org[0: 69.147.83.33]: errno=Connection refused > > git.freebsd.org[1: 2001:4f8:fff6::21]: errno=No route to host > > ---8<--- > > > > The IPv6 related are ok, while this machine does not have an IPv6 > > address but the first not. > > > > The git.kernek.org adderss is pingable. > > _______________________________________________ > > freebsd-current@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-current > > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 10:02:04 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7FD3FF78; Tue, 16 Oct 2012 10:02:04 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 4827F8FC18; Tue, 16 Oct 2012 10:02:03 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9GA23oF027686; Tue, 16 Oct 2012 06:02:03 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9GA23HD027685; Tue, 16 Oct 2012 10:02:03 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 10:02:03 GMT Message-Id: <201210161002.q9GA23HD027685@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc64/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 10:02:04 -0000 TB --- 2012-10-16 06:59:52 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 06:59:52 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 06:59:52 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2012-10-16 06:59:52 - cleaning the object tree TB --- 2012-10-16 07:03:16 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 07:03:16 - cd /tinderbox/HEAD/powerpc64/powerpc TB --- 2012-10-16 07:03:16 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 07:04:27 - /usr/local/bin/svn update /src TB --- 2012-10-16 07:04:43 - At svn revision 241602 TB --- 2012-10-16 07:04:44 - building world TB --- 2012-10-16 07:04:44 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 07:04:44 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 07:04:44 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 07:04:44 - SRCCONF=/dev/null TB --- 2012-10-16 07:04:44 - TARGET=powerpc TB --- 2012-10-16 07:04:44 - TARGET_ARCH=powerpc64 TB --- 2012-10-16 07:04:44 - TZ=UTC TB --- 2012-10-16 07:04:44 - __MAKE_CONF=/dev/null TB --- 2012-10-16 07:04:44 - cd /src TB --- 2012-10-16 07:04:44 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 07:04:53 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Oct 16 09:58:57 UTC 2012 TB --- 2012-10-16 09:58:57 - generating LINT kernel config TB --- 2012-10-16 09:58:57 - cd /src/sys/powerpc/conf TB --- 2012-10-16 09:58:57 - /usr/bin/make -B LINT TB --- 2012-10-16 09:58:57 - cd /src/sys/powerpc/conf TB --- 2012-10-16 09:58:57 - /usr/sbin/config -m LINT TB --- 2012-10-16 09:58:57 - building LINT kernel TB --- 2012-10-16 09:58:57 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 09:58:57 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 09:58:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 09:58:57 - SRCCONF=/dev/null TB --- 2012-10-16 09:58:57 - TARGET=powerpc TB --- 2012-10-16 09:58:57 - TARGET_ARCH=powerpc64 TB --- 2012-10-16 09:58:57 - TZ=UTC TB --- 2012-10-16 09:58:57 - __MAKE_CONF=/dev/null TB --- 2012-10-16 09:58:57 - cd /src TB --- 2012-10-16 09:58:57 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 09:58:57 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1571: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1616: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c: In function 'ahatimeout': /src/sys/dev/aha/aha.c:1836: error: 'aacb' undeclared (first use in this function) /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant /src/sys/dev/aha/aha.c:1850: error: expected identifier before numeric constant *** [aha.o] Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 10:02:03 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 10:02:03 - ERROR: failed to build LINT kernel TB --- 2012-10-16 10:02:03 - 8675.39 user 1163.25 system 10930.90 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 10:29:48 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ACAC0A61; Tue, 16 Oct 2012 10:29:48 +0000 (UTC) (envelope-from wkoszek@freebsd.czest.pl) Received: from freebsd.czest.pl (freebsd.czest.pl [212.87.224.105]) by mx1.freebsd.org (Postfix) with ESMTP id 321578FC1B; Tue, 16 Oct 2012 10:29:47 +0000 (UTC) Received: from freebsd.czest.pl (freebsd.czest.pl [212.87.224.105]) by freebsd.czest.pl (8.14.5/8.14.5) with ESMTP id q9GAJvKR007057; Tue, 16 Oct 2012 10:19:57 GMT (envelope-from wkoszek@freebsd.czest.pl) Received: (from wkoszek@localhost) by freebsd.czest.pl (8.14.5/8.14.5/Submit) id q9GAJv5B007056; Tue, 16 Oct 2012 10:19:57 GMT (envelope-from wkoszek) Date: Tue, 16 Oct 2012 10:19:57 +0000 From: "Wojciech A. Koszek" To: freebsd-current@freebsd.org, freebsd-stable@freebsd.org, freebsd-hackers@freebsd.org Subject: FreeBSD in Google Code-In 2012? You can help too! Message-ID: <20121016101957.GB53800@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (freebsd.czest.pl [212.87.224.105]); Tue, 16 Oct 2012 10:19:58 +0000 (UTC) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 10:29:48 -0000 (cross-posted message; please keep discussion on freebsd-hackers@) Hello, Last year FreeBSD qualified for Google Code-In 2011 event--contest for youngest open-source hackers in 13-17yr age range: http://www.google-melange.com/gci/homepage/google/gci2012 It was successful. We gained one more FreeBSD developer thanks to that (Isabell Long) We're pondering participating in the contest this year as well. For now we only have 25 ideas. We need at least 100. I felt all members of the FreeBSD community should help, so please submit your own Google Code-In 2012 ideas here: http://www.emailmeform.com/builder/form/4aU93Obxo4NYdVAgb1 Examples of previously completed tasks: http://wiki.freebsd.org/GoogleCodeIn/2011Tasks Those of you who have Wiki access, please spent 2 more minutes and submit straight to Wiki: http://wiki.freebsd.org/GoogleCodeIn/2012Tasks I plan to send out next e-mail if there's any progress on this project. Help will be appreciated. Thanks, -- Wojciech A. Koszek wkoszek@FreeBSD.czest.pl http://FreeBSD.czest.pl/~wkoszek/ From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 12:56:21 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C399C571; Tue, 16 Oct 2012 12:56:21 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 75BA48FC16; Tue, 16 Oct 2012 12:56:21 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9GCuKCU060654; Tue, 16 Oct 2012 08:56:20 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9GCuKwE060648; Tue, 16 Oct 2012 12:56:20 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 12:56:20 GMT Message-Id: <201210161256.q9GCuKwE060648@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 12:56:21 -0000 TB --- 2012-10-16 10:10:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 10:10:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 10:10:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-16 10:10:00 - cleaning the object tree TB --- 2012-10-16 10:15:17 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 10:15:17 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-16 10:15:17 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 10:17:51 - /usr/local/bin/svn update /src TB --- 2012-10-16 10:18:11 - At svn revision 241608 TB --- 2012-10-16 10:18:12 - building world TB --- 2012-10-16 10:18:12 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 10:18:12 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 10:18:12 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 10:18:12 - SRCCONF=/dev/null TB --- 2012-10-16 10:18:12 - TARGET=i386 TB --- 2012-10-16 10:18:12 - TARGET_ARCH=i386 TB --- 2012-10-16 10:18:12 - TZ=UTC TB --- 2012-10-16 10:18:12 - __MAKE_CONF=/dev/null TB --- 2012-10-16 10:18:12 - cd /src TB --- 2012-10-16 10:18:12 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 10:18:19 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 12:48:59 UTC 2012 TB --- 2012-10-16 12:48:59 - generating LINT kernel config TB --- 2012-10-16 12:48:59 - cd /src/sys/i386/conf TB --- 2012-10-16 12:48:59 - /usr/bin/make -B LINT TB --- 2012-10-16 12:48:59 - cd /src/sys/i386/conf TB --- 2012-10-16 12:48:59 - /usr/sbin/config -m LINT TB --- 2012-10-16 12:49:00 - building LINT kernel TB --- 2012-10-16 12:49:00 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 12:49:00 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 12:49:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 12:49:00 - SRCCONF=/dev/null TB --- 2012-10-16 12:49:00 - TARGET=i386 TB --- 2012-10-16 12:49:00 - TARGET_ARCH=i386 TB --- 2012-10-16 12:49:00 - TZ=UTC TB --- 2012-10-16 12:49:00 - __MAKE_CONF=/dev/null TB --- 2012-10-16 12:49:00 - cd /src TB --- 2012-10-16 12:49:00 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 12:49:00 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/aha/aha_isa.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/aha/aha_mca.c In file included from /src/sys/dev/aha/aha_mca.c:49: /src/sys/dev/aha/ahareg.h:300: error: field 'timer' has incomplete type /src/sys/dev/aha/aha_mca.c: In function 'aha_mca_attach': /src/sys/dev/aha/aha_mca.c:194: error: 'aha' undeclared (first use in this function) /src/sys/dev/aha/aha_mca.c:194: error: (Each undeclared identifier is reported only once /src/sys/dev/aha/aha_mca.c:194: error: for each function it appears in.) *** [aha_mca.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 12:56:20 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 12:56:20 - ERROR: failed to build LINT kernel TB --- 2012-10-16 12:56:20 - 7132.31 user 1019.26 system 9979.82 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 13:00:56 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE931797 for ; Tue, 16 Oct 2012 13:00:56 +0000 (UTC) (envelope-from timp87@gmail.com) Received: from mail-la0-f54.google.com (mail-la0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 38B9E8FC1A for ; Tue, 16 Oct 2012 13:00:55 +0000 (UTC) Received: by mail-la0-f54.google.com with SMTP id e12so5111938lag.13 for ; Tue, 16 Oct 2012 06:00:54 -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=hloswP2iPBNtWVciOYLEakm8Mup9StCxybTjzcl/6Os=; b=TMCx9n9QdDHZ3Wy8mYtab/B0dwguNmZoWdLFeleZGQuxC8p6tu/4EwU4xS6+Dst0N/ 2B4cixUlR2pWoX7sEOY45R0uSYOPwMugka9HOyN/KB/gjH6OVv/7xcVyvKfJQQvw4mKF fUcrUc4VwYHKJ7O838SQ8AjvCNzSdmxDsS3LvXkBNhczHTy3Juy6hw+/xU1zV7kPsKzw N45O6dGMU1vUnisvupKF7O5QaO64D0V80FfgPdPmr2pv4jqLkTVBfXs48A7WXGkhsnIW DEmD4NKNunb4/6U3cBomXXRfvspce3gOdgcIxOMTF6kIQy9nhhWv4J8vC1h0S8LNGjsH 8K3Q== MIME-Version: 1.0 Received: by 10.152.105.236 with SMTP id gp12mr12894482lab.35.1350392454653; Tue, 16 Oct 2012 06:00:54 -0700 (PDT) Received: by 10.152.8.169 with HTTP; Tue, 16 Oct 2012 06:00:54 -0700 (PDT) Date: Tue, 16 Oct 2012 17:00:54 +0400 Message-ID: Subject: Portmaster with pkgng. Small inaccuracy. From: Pavel Timofeev To: freebsd-current@freebsd.org X-Mailman-Approved-At: Tue, 16 Oct 2012 13:12:24 +0000 Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 13:00:56 -0000 Hi! Thank you for this extremely perfect work! I've found a small inaccuracy when I use portmaster with pkgng (WITH_PKGNG in /etc/make.conf and use_pkgng in portmaster.rc). In such case portmaster still fills /var/db/pkg/${PORTNAME}-${PORTVERSION}/distfiles file. For example: $ cat /var/db/pkg/gmake-3.82_1/distfiles # Added by portmaster DISTFILE:make-3.82.tar.bz2:SIZE=1242186:SHA256=e2c1a73f179c40c71e2fe8abf8a8a0688b8499538512984da4a76958d0402966 Such file doesn't need for pkgng, but because of this pkg_info output spoils. Like this: $ pkg_info pkg_info: the package info for package 'gmake-3.82_1' is corrupt Thats ok, but it confused me first time before I understood what was wrong. From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 13:19:32 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D209CC2 for ; Tue, 16 Oct 2012 13:19:32 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id 591B78FC0C for ; Tue, 16 Oct 2012 13:19:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9GDJWhM062905 for ; Tue, 16 Oct 2012 13:19:32 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9GDJWFT062904 for freebsd-current@freebsd.org; Tue, 16 Oct 2012 13:19:32 GMT (envelope-from bdrewery) Received: (qmail 5269 invoked from network); 16 Oct 2012 08:19:30 -0500 Received: from unknown (HELO ?10.10.0.115?) (freebsd@shatow.net@10.10.0.115) by sweb.xzibition.com with ESMTPA; 16 Oct 2012 08:19:30 -0500 Message-ID: <507D5EDD.3070301@FreeBSD.org> Date: Tue, 16 Oct 2012 08:19:25 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: Pavel Timofeev Subject: Re: Portmaster with pkgng. Small inaccuracy. References: In-Reply-To: X-Enigmail-Version: 1.4.5 OpenPGP: id=3C9B0CF9; url=http://www.shatow.net/bryan/bryan.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 13:19:32 -0000 On 10/16/2012 8:00 AM, Pavel Timofeev wrote: > Hi! Thank you for this extremely perfect work! > I've found a small inaccuracy when I use portmaster with pkgng (WITH_PKGNG > in /etc/make.conf and use_pkgng in portmaster.rc). > In such case portmaster still fills > /var/db/pkg/${PORTNAME}-${PORTVERSION}/distfiles file. > For example: > > $ cat /var/db/pkg/gmake-3.82_1/distfiles > # Added by portmaster > DISTFILE:make-3.82.tar.bz2:SIZE=1242186:SHA256=e2c1a73f179c40c71e2fe8abf8a8a0688b8499538512984da4a76958d0402966 > > Such file doesn't need for pkgng, but because of this pkg_info > output spoils. > Like this: > > $ pkg_info > pkg_info: the package info for package 'gmake-3.82_1' is corrupt > > Thats ok, but it confused me first time before I understood what was wrong. Thank you. Will address for 3.15. -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 16:02:36 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10E7DAE4; Tue, 16 Oct 2012 16:02:36 +0000 (UTC) (envelope-from levitch@iglou.com) Received: from rdsmtp.iglou.com (rdsmtp.iglou.com [192.107.41.63]) by mx1.freebsd.org (Postfix) with ESMTP id BD06D8FC14; Tue, 16 Oct 2012 16:02:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=iglou.com; s=alpha; h=Content-Type:MIME-Version:References:Message-ID:In-Reply-To:Subject:cc:To:From:Date; bh=Du4/WghI18KdrlBnv90HYsMK8ZG7oAPu4oWnNgGYKyo=; b=kgw5fO0QCCd2TU3YWAYbz3/yWv8asboY2QTwwf0QW7OKUPOWr5O1VUKkFjYjNgWibD/J8O5y4tCSksxklxptzhSxDdSVaHRo16bdrDum+Mml2Mipbg+zF3a5K9ql/KqoBJeiyOKWwT7BGPv0XoyfVhjQynxmr9hGRSk8D5vfhbI=; Received: from iglou3.iglou.com ([192.107.41.6]:61422 helo=mail.iglou.com) by rdsmtp.iglou.com with esmtpa (Exim MTA/8.19.3) (envelope-from ) id 1TO9bB-0004DY-Mg by authid with igloumta_auth; Tue, 16 Oct 2012 12:02:29 -0400 Received: from shell1.iglou.com ([192.107.41.17]:52461 helo=shell1) by mail.iglou.com with esmtps (TLS cipher TLSv1:AES256-SHA:256) (Exim MTA/8.19.3) (envelope-from ) id 1TO9bB-0003O9-95; Tue, 16 Oct 2012 12:02:29 -0400 Date: Tue, 16 Oct 2012 12:02:29 -0400 (EDT) From: Darrel X-X-Sender: levitch@shell1 To: Matthew Seaman Subject: [solved]: pkgng | portmaster In-Reply-To: <507C5292.4050604@FreeBSD.org> Message-ID: References: <507C5292.4050604@FreeBSD.org> User-Agent: Alpine 2.00 (GSO 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Originating-IP: 192.107.41.17 X-IgLou-Customer: 3cb6f76205bd20f518810676a67a982b X-Mailman-Approved-At: Tue, 16 Oct 2012 16:22:34 +0000 Cc: current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 16:02:36 -0000 >> Hello, >> >> Concerning the new pkg system, I reckon that my port updates can take a >> drought. >> >> Would it be best to deinstall portmaster for now? Portmaster typically >> updates itself, but this might be a special case. >> >> Currently, my postmaster run ends like this: >> >> ===>>> Cannot continue >> ===>>> Aborting update >> >> ===>>> No ORIGIN in /var/db/pkg/portmaster-3.14/+CONTENTS >> >> ===>>> No ORIGIN in /var/db/pkg/postgresql-client-9.2.1/+CONTENTS >> >> ===>>> No ORIGIN in /var/db/pkg/postgresql-docs-9.2.1/+CONTENTS >> >> ===>>> No ORIGIN in /var/db/pkg/postgresql-server-9.2.1/+CONTENTS >> >> Terminated >> (48) @ 12:58:40> > > Did you apply the pkgng compatibility patch to portmaster? It's > available in ports-mgmt/portmaster now if you select the option in the > config dialogue. > Yes, I found the patch. > Once patched, portmaster should interoperate with pkgng pretty smoothly. > Certainly it should be using pkgng's local.sqlite database to pull out > package contents rather than trying to parse +CONTENTS files. > Thanks, Matthew! Darrel From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 17:00:43 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1D9E966E; Tue, 16 Oct 2012 17:00:43 +0000 (UTC) (envelope-from wkoszek@freebsd.czest.pl) Received: from freebsd.czest.pl (freebsd.czest.pl [212.87.224.105]) by mx1.freebsd.org (Postfix) with ESMTP id 938848FC16; Tue, 16 Oct 2012 17:00:42 +0000 (UTC) Received: from freebsd.czest.pl (freebsd.czest.pl [212.87.224.105]) by freebsd.czest.pl (8.14.5/8.14.5) with ESMTP id q9GGopOU009154; Tue, 16 Oct 2012 16:50:51 GMT (envelope-from wkoszek@freebsd.czest.pl) Received: (from wkoszek@localhost) by freebsd.czest.pl (8.14.5/8.14.5/Submit) id q9GGopps009153; Tue, 16 Oct 2012 16:50:51 GMT (envelope-from wkoszek) Date: Tue, 16 Oct 2012 16:50:51 +0000 From: "Wojciech A. Koszek" To: freebsd-current@freebsd.org, freebsd-stable@freebsd.org, freebsd-hackers@freebsd.org Subject: Re: FreeBSD in Google Code-In 2012? You can help too! Message-ID: <20121016165051.GC53800@FreeBSD.org> References: <20121016101957.GB53800@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline In-Reply-To: <20121016101957.GB53800@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (freebsd.czest.pl [212.87.224.105]); Tue, 16 Oct 2012 16:50:52 +0000 (UTC) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 17:00:43 -0000 On Tue, Oct 16, 2012 at 10:19:57AM +0000, Wojciech A. Koszek wrote: > (cross-posted message; please keep discussion on freebsd-hackers@) > > Hello, > > Last year FreeBSD qualified for Google Code-In 2011 event--contest for > youngest open-source hackers in 13-17yr age range: > > http://www.google-melange.com/gci/homepage/google/gci2012 > > It was successful. We gained one more FreeBSD developer thanks to that > (Isabell Long) We're pondering participating in the contest this year as > well. > > For now we only have 25 ideas. We need at least 100. > > I felt all members of the FreeBSD community should help, so please submit > your own Google Code-In 2012 ideas here: > > http://www.emailmeform.com/builder/form/4aU93Obxo4NYdVAgb1 > > Examples of previously completed tasks: > > http://wiki.freebsd.org/GoogleCodeIn/2011Tasks > > Those of you who have Wiki access, please spent 2 more minutes and submit > straight to Wiki: > > http://wiki.freebsd.org/GoogleCodeIn/2012Tasks > > I plan to send out next e-mail if there's any progress on this project. > > Help will be appreciated. Hi, (cross-posted message; please keep discussion on freebsd-hackers@) I made a mistake -- the web form didn't have "Contributor's name", thus I don't know who of you guys contributed first 9 ideas; e-mail me which ideas are yours, so that your name can be mentioned on Wiki: http://wiki.freebsd.org/GoogleCodeIn/2012Tasks I made slight adjustments to the form to make some fields more precise: http://www.emailmeform.com/builder/form/4aU93Obxo4NYdVAgb1 Sorry and thanks, -- Wojciech A. Koszek wkoszek@FreeBSD.czest.pl http://FreeBSD.czest.pl/~wkoszek/ From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 17:53:52 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0488A95F; Tue, 16 Oct 2012 17:53:52 +0000 (UTC) (envelope-from andy@neu.net) Received: from mail.neu.net (unknown [IPv6:2607:fc50:0:d300:216:3eff:fe54:f1c6]) by mx1.freebsd.org (Postfix) with ESMTP id BAF3B8FC14; Tue, 16 Oct 2012 17:53:51 +0000 (UTC) Received: from neu.net (neu.net [199.48.129.194]) by mail.neu.net (8.14.5/8.14.5) with ESMTP id q9GHrofj027995; Tue, 16 Oct 2012 13:53:50 -0400 (EDT) (envelope-from andy@neu.net) Date: Tue, 16 Oct 2012 13:53:49 -0400 (EDT) From: AN To: freebsd-current@freebsd.org Subject: Problem with fuse.ko In-Reply-To: <20120609120028.122CE1065695@hub.freebsd.org> Message-ID: References: <20120609120028.122CE1065695@hub.freebsd.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Virus-Scanned: clamav-milter 0.97.6 at my.mail.server X-Virus-Status: Clean X-Spam-Status: No, score=0.0 required=4.5 tests=RP_MATCHES_RCVD autolearn=unavailable version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail.neu.net Cc: attilio@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 17:53:52 -0000 FreeBSD FBSD10 10.0-CURRENT FreeBSD 10.0-CURRENT #26 r241612: Tue Oct 16 13:03:26 EDT 2012 root@FBSD10:/usr/obj/usr/src/sys/MYKERNEL amd64 I loaded the module with kldload fuse.ko # kldstat Id Refs Address Size Name 1 22 0xffffffff80200000 d75248 kernel 2 1 0xffffffff80f76000 3570 amdtemp.ko 3 1 0xffffffff80f7a000 ee2b08 nvidia.ko 4 3 0xffffffff81e5d000 48508 linux.ko 5 1 0xffffffff81ea6000 4ef30 vboxdrv.ko 6 1 0xffffffff82012000 3dfe linprocfs.ko 7 1 0xffffffff82183000 9744 fuse.ko According to /usr/src/UPDATING: 20121014: Import the FUSE kernel and userland support into base system. What provides libfuse.so.2? # truecrypt Shared object "libfuse.so.2" not found, required by "truecrypt" Previously the library was installed as part of the fusefs-kmod port, how do you install it now? From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 19:35:22 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 07AEF6D1 for ; Tue, 16 Oct 2012 19:35:22 +0000 (UTC) (envelope-from asmrookie@gmail.com) Received: from mail-gh0-f182.google.com (mail-gh0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id B34C08FC0C for ; Tue, 16 Oct 2012 19:35:21 +0000 (UTC) Received: by mail-gh0-f182.google.com with SMTP id r20so1831398ghr.13 for ; Tue, 16 Oct 2012 12:35:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=9o3D9sliKik5gmmw8MHy8VTZTRyutsr8dK09TPF3Ams=; b=sfUEqIGfbMYwN6gsSUHJWulzPoAcaONxwTUTVucUa2vf5J0meVo6owRDG8jxwu5uis 7QJH6iOij53DgvcdjHy4uHrI4MnW9Sk5DaDt85emE1MIGwld7CaPtslnTT9jwmGSPohO iM2AP/MApcIoJLJ0JdaTLCtcJQwmFRPmXCnbWbgV+TKaRrMetnUsc6Mh3nptnVDT02cT +PmM+Xo2NirLO89ZmUGK5FcGxm4KiI58xbeDmn2dL/wynAX/gEBblylWAsZ5PWUNPq1e UgtsEW/ANkyvyuaKL9twRwxb/YXXdORcQEQHYF4iztIVBjtAvkdCJoWIJ9sNpukyEW1e CAgw== MIME-Version: 1.0 Received: by 10.220.151.208 with SMTP id d16mr9229585vcw.7.1350416115508; Tue, 16 Oct 2012 12:35:15 -0700 (PDT) Sender: asmrookie@gmail.com Received: by 10.220.150.197 with HTTP; Tue, 16 Oct 2012 12:35:15 -0700 (PDT) In-Reply-To: References: <20120609120028.122CE1065695@hub.freebsd.org> Date: Tue, 16 Oct 2012 20:35:15 +0100 X-Google-Sender-Auth: -Fj1dgkzH5Is8zuWUCR5OS-l-Ro Message-ID: Subject: Re: Problem with fuse.ko From: Attilio Rao To: AN Content-Type: text/plain; charset=UTF-8 Cc: freebsd-current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: attilio@FreeBSD.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 19:35:22 -0000 On Tue, Oct 16, 2012 at 6:53 PM, AN wrote: > > FreeBSD FBSD10 10.0-CURRENT FreeBSD 10.0-CURRENT #26 r241612: Tue Oct 16 > 13:03:26 EDT 2012 root@FBSD10:/usr/obj/usr/src/sys/MYKERNEL amd64 > > I loaded the module with kldload fuse.ko > > # kldstat > Id Refs Address Size Name > 1 22 0xffffffff80200000 d75248 kernel > 2 1 0xffffffff80f76000 3570 amdtemp.ko > 3 1 0xffffffff80f7a000 ee2b08 nvidia.ko > 4 3 0xffffffff81e5d000 48508 linux.ko > 5 1 0xffffffff81ea6000 4ef30 vboxdrv.ko > 6 1 0xffffffff82012000 3dfe linprocfs.ko > 7 1 0xffffffff82183000 9744 fuse.ko > > According to /usr/src/UPDATING: > 20121014: > Import the FUSE kernel and userland support into base system. > > What provides libfuse.so.2? > > # truecrypt > Shared object "libfuse.so.2" not found, required by "truecrypt" > > Previously the library was installed as part of the fusefs-kmod port, how do > you install it now? Install the port sysutils/fusefs-libs. Attilio -- Peace can only be achieved by understanding - A. Einstein From owner-freebsd-current@FreeBSD.ORG Tue Oct 16 23:38:52 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A7954A8; Tue, 16 Oct 2012 23:38:52 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E16BC8FC14; Tue, 16 Oct 2012 23:38:51 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9GNcjIS075405; Tue, 16 Oct 2012 19:38:45 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9GNcjVN075401; Tue, 16 Oct 2012 23:38:45 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 16 Oct 2012 23:38:45 GMT Message-Id: <201210162338.q9GNcjVN075401@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Oct 2012 23:38:52 -0000 TB --- 2012-10-16 18:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 18:50:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 18:50:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-16 18:50:00 - cleaning the object tree TB --- 2012-10-16 18:54:55 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 18:54:55 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-16 18:54:55 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 18:55:43 - /usr/local/bin/svn update /src TB --- 2012-10-16 18:55:51 - At svn revision 241613 TB --- 2012-10-16 18:55:52 - building world TB --- 2012-10-16 18:55:52 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 18:55:52 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 18:55:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 18:55:52 - SRCCONF=/dev/null TB --- 2012-10-16 18:55:52 - TARGET=i386 TB --- 2012-10-16 18:55:52 - TARGET_ARCH=i386 TB --- 2012-10-16 18:55:52 - TZ=UTC TB --- 2012-10-16 18:55:52 - __MAKE_CONF=/dev/null TB --- 2012-10-16 18:55:52 - cd /src TB --- 2012-10-16 18:55:52 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 18:55:57 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Tue Oct 16 21:22:42 UTC 2012 TB --- 2012-10-16 21:22:42 - generating LINT kernel config TB --- 2012-10-16 21:22:42 - cd /src/sys/i386/conf TB --- 2012-10-16 21:22:42 - /usr/bin/make -B LINT TB --- 2012-10-16 21:22:42 - cd /src/sys/i386/conf TB --- 2012-10-16 21:22:42 - /usr/sbin/config -m LINT TB --- 2012-10-16 21:22:42 - building LINT kernel TB --- 2012-10-16 21:22:42 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 21:22:42 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 21:22:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 21:22:42 - SRCCONF=/dev/null TB --- 2012-10-16 21:22:42 - TARGET=i386 TB --- 2012-10-16 21:22:42 - TARGET_ARCH=i386 TB --- 2012-10-16 21:22:42 - TZ=UTC TB --- 2012-10-16 21:22:42 - __MAKE_CONF=/dev/null TB --- 2012-10-16 21:22:42 - cd /src TB --- 2012-10-16 21:22:42 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 21:22:42 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT completed on Tue Oct 16 21:55:28 UTC 2012 TB --- 2012-10-16 21:55:28 - cd /src/sys/i386/conf TB --- 2012-10-16 21:55:28 - /usr/sbin/config -m LINT-NOINET TB --- 2012-10-16 21:55:28 - building LINT-NOINET kernel TB --- 2012-10-16 21:55:28 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 21:55:28 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 21:55:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 21:55:28 - SRCCONF=/dev/null TB --- 2012-10-16 21:55:28 - TARGET=i386 TB --- 2012-10-16 21:55:28 - TARGET_ARCH=i386 TB --- 2012-10-16 21:55:28 - TZ=UTC TB --- 2012-10-16 21:55:28 - __MAKE_CONF=/dev/null TB --- 2012-10-16 21:55:28 - cd /src TB --- 2012-10-16 21:55:28 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>> Kernel build for LINT-NOINET started on Tue Oct 16 21:55:28 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET completed on Tue Oct 16 22:26:26 UTC 2012 TB --- 2012-10-16 22:26:26 - cd /src/sys/i386/conf TB --- 2012-10-16 22:26:26 - /usr/sbin/config -m LINT-NOINET6 TB --- 2012-10-16 22:26:26 - building LINT-NOINET6 kernel TB --- 2012-10-16 22:26:26 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 22:26:26 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 22:26:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 22:26:26 - SRCCONF=/dev/null TB --- 2012-10-16 22:26:26 - TARGET=i386 TB --- 2012-10-16 22:26:26 - TARGET_ARCH=i386 TB --- 2012-10-16 22:26:26 - TZ=UTC TB --- 2012-10-16 22:26:26 - __MAKE_CONF=/dev/null TB --- 2012-10-16 22:26:26 - cd /src TB --- 2012-10-16 22:26:26 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>> Kernel build for LINT-NOINET6 started on Tue Oct 16 22:26:26 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET6 completed on Tue Oct 16 22:57:15 UTC 2012 TB --- 2012-10-16 22:57:15 - cd /src/sys/i386/conf TB --- 2012-10-16 22:57:15 - /usr/sbin/config -m LINT-NOIP TB --- 2012-10-16 22:57:15 - building LINT-NOIP kernel TB --- 2012-10-16 22:57:15 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 22:57:15 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 22:57:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 22:57:15 - SRCCONF=/dev/null TB --- 2012-10-16 22:57:15 - TARGET=i386 TB --- 2012-10-16 22:57:15 - TARGET_ARCH=i386 TB --- 2012-10-16 22:57:15 - TZ=UTC TB --- 2012-10-16 22:57:15 - __MAKE_CONF=/dev/null TB --- 2012-10-16 22:57:15 - cd /src TB --- 2012-10-16 22:57:15 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>> Kernel build for LINT-NOIP started on Tue Oct 16 22:57:16 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOIP completed on Tue Oct 16 23:25:39 UTC 2012 TB --- 2012-10-16 23:25:39 - cd /src/sys/i386/conf TB --- 2012-10-16 23:25:39 - /usr/sbin/config -m LINT-VIMAGE TB --- 2012-10-16 23:25:39 - building LINT-VIMAGE kernel TB --- 2012-10-16 23:25:39 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 23:25:39 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 23:25:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 23:25:39 - SRCCONF=/dev/null TB --- 2012-10-16 23:25:39 - TARGET=i386 TB --- 2012-10-16 23:25:39 - TARGET_ARCH=i386 TB --- 2012-10-16 23:25:39 - TZ=UTC TB --- 2012-10-16 23:25:39 - __MAKE_CONF=/dev/null TB --- 2012-10-16 23:25:39 - cd /src TB --- 2012-10-16 23:25:39 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Tue Oct 16 23:25:39 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/ieee8023ad_lacp.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_arcsubr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_atmsubr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_bridge.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_clone.c /src/sys/net/if_clone.c: In function 'if_clone_destroy': /src/sys/net/if_clone.c:275: error: 'struct if_clone' has no member named 'type' *** [if_clone.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT-VIMAGE. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-16 23:38:45 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-16 23:38:45 - ERROR: failed to build LINT-VIMAGE kernel TB --- 2012-10-16 23:38:45 - 13252.30 user 1841.25 system 17325.20 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 00:06:34 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5656FF12; Wed, 17 Oct 2012 00:06:34 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 19BAF8FC0C; Wed, 17 Oct 2012 00:06:33 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H06X0t060080; Tue, 16 Oct 2012 20:06:33 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H06XvV060074; Wed, 17 Oct 2012 00:06:33 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 00:06:33 GMT Message-Id: <201210170006.q9H06XvV060074@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 00:06:34 -0000 TB --- 2012-10-16 18:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 18:50:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 18:50:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-10-16 18:50:00 - cleaning the object tree TB --- 2012-10-16 18:50:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 18:50:00 - cd /tinderbox/HEAD/amd64/amd64 TB --- 2012-10-16 18:50:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 18:52:40 - /usr/local/bin/svn update /src TB --- 2012-10-16 18:53:00 - At svn revision 241613 TB --- 2012-10-16 18:53:01 - building world TB --- 2012-10-16 18:53:01 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 18:53:01 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 18:53:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 18:53:01 - SRCCONF=/dev/null TB --- 2012-10-16 18:53:01 - TARGET=amd64 TB --- 2012-10-16 18:53:01 - TARGET_ARCH=amd64 TB --- 2012-10-16 18:53:01 - TZ=UTC TB --- 2012-10-16 18:53:01 - __MAKE_CONF=/dev/null TB --- 2012-10-16 18:53:01 - cd /src TB --- 2012-10-16 18:53:01 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 18:53:09 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Tue Oct 16 21:56:29 UTC 2012 TB --- 2012-10-16 21:56:29 - generating LINT kernel config TB --- 2012-10-16 21:56:29 - cd /src/sys/amd64/conf TB --- 2012-10-16 21:56:29 - /usr/bin/make -B LINT TB --- 2012-10-16 21:56:29 - cd /src/sys/amd64/conf TB --- 2012-10-16 21:56:29 - /usr/sbin/config -m LINT TB --- 2012-10-16 21:56:29 - building LINT kernel TB --- 2012-10-16 21:56:29 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 21:56:29 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 21:56:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 21:56:29 - SRCCONF=/dev/null TB --- 2012-10-16 21:56:29 - TARGET=amd64 TB --- 2012-10-16 21:56:29 - TARGET_ARCH=amd64 TB --- 2012-10-16 21:56:29 - TZ=UTC TB --- 2012-10-16 21:56:29 - __MAKE_CONF=/dev/null TB --- 2012-10-16 21:56:29 - cd /src TB --- 2012-10-16 21:56:29 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Tue Oct 16 21:56:29 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT completed on Tue Oct 16 22:27:43 UTC 2012 TB --- 2012-10-16 22:27:43 - cd /src/sys/amd64/conf TB --- 2012-10-16 22:27:43 - /usr/sbin/config -m LINT-NOINET TB --- 2012-10-16 22:27:43 - building LINT-NOINET kernel TB --- 2012-10-16 22:27:43 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 22:27:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 22:27:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 22:27:43 - SRCCONF=/dev/null TB --- 2012-10-16 22:27:43 - TARGET=amd64 TB --- 2012-10-16 22:27:43 - TARGET_ARCH=amd64 TB --- 2012-10-16 22:27:43 - TZ=UTC TB --- 2012-10-16 22:27:43 - __MAKE_CONF=/dev/null TB --- 2012-10-16 22:27:43 - cd /src TB --- 2012-10-16 22:27:43 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>> Kernel build for LINT-NOINET started on Tue Oct 16 22:27:43 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET completed on Tue Oct 16 22:57:00 UTC 2012 TB --- 2012-10-16 22:57:00 - cd /src/sys/amd64/conf TB --- 2012-10-16 22:57:00 - /usr/sbin/config -m LINT-NOINET6 TB --- 2012-10-16 22:57:01 - building LINT-NOINET6 kernel TB --- 2012-10-16 22:57:01 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 22:57:01 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 22:57:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 22:57:01 - SRCCONF=/dev/null TB --- 2012-10-16 22:57:01 - TARGET=amd64 TB --- 2012-10-16 22:57:01 - TARGET_ARCH=amd64 TB --- 2012-10-16 22:57:01 - TZ=UTC TB --- 2012-10-16 22:57:01 - __MAKE_CONF=/dev/null TB --- 2012-10-16 22:57:01 - cd /src TB --- 2012-10-16 22:57:01 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>> Kernel build for LINT-NOINET6 started on Tue Oct 16 22:57:01 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET6 completed on Tue Oct 16 23:26:08 UTC 2012 TB --- 2012-10-16 23:26:08 - cd /src/sys/amd64/conf TB --- 2012-10-16 23:26:08 - /usr/sbin/config -m LINT-NOIP TB --- 2012-10-16 23:26:08 - building LINT-NOIP kernel TB --- 2012-10-16 23:26:08 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 23:26:08 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 23:26:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 23:26:08 - SRCCONF=/dev/null TB --- 2012-10-16 23:26:08 - TARGET=amd64 TB --- 2012-10-16 23:26:08 - TARGET_ARCH=amd64 TB --- 2012-10-16 23:26:08 - TZ=UTC TB --- 2012-10-16 23:26:08 - __MAKE_CONF=/dev/null TB --- 2012-10-16 23:26:08 - cd /src TB --- 2012-10-16 23:26:08 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>> Kernel build for LINT-NOIP started on Tue Oct 16 23:26:08 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOIP completed on Tue Oct 16 23:52:41 UTC 2012 TB --- 2012-10-16 23:52:41 - cd /src/sys/amd64/conf TB --- 2012-10-16 23:52:41 - /usr/sbin/config -m LINT-VIMAGE TB --- 2012-10-16 23:52:41 - building LINT-VIMAGE kernel TB --- 2012-10-16 23:52:41 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 23:52:41 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 23:52:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 23:52:41 - SRCCONF=/dev/null TB --- 2012-10-16 23:52:41 - TARGET=amd64 TB --- 2012-10-16 23:52:41 - TARGET_ARCH=amd64 TB --- 2012-10-16 23:52:41 - TZ=UTC TB --- 2012-10-16 23:52:41 - __MAKE_CONF=/dev/null TB --- 2012-10-16 23:52:41 - cd /src TB --- 2012-10-16 23:52:41 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Tue Oct 16 23:52:41 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/ieee8023ad_lacp.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_arcsubr.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_atmsubr.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_bridge.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_clone.c /src/sys/net/if_clone.c: In function 'if_clone_destroy': /src/sys/net/if_clone.c:275: error: 'struct if_clone' has no member named 'type' *** [if_clone.o] Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT-VIMAGE. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 00:06:33 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 00:06:33 - ERROR: failed to build LINT-VIMAGE kernel TB --- 2012-10-17 00:06:33 - 14377.88 user 2113.07 system 18992.82 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 01:20:26 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 94F3D25F; Wed, 17 Oct 2012 01:20:26 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 590CA8FC0C; Wed, 17 Oct 2012 01:20:26 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H1KPYP082906; Tue, 16 Oct 2012 21:20:25 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H1KPib082904; Wed, 17 Oct 2012 01:20:25 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 01:20:25 GMT Message-Id: <201210170120.q9H1KPib082904@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 01:20:26 -0000 TB --- 2012-10-17 00:06:33 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 00:06:33 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 00:06:33 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-10-17 00:06:33 - cleaning the object tree TB --- 2012-10-17 00:06:33 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 00:06:33 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2012-10-17 00:06:33 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 00:07:21 - /usr/local/bin/svn update /src TB --- 2012-10-17 00:07:27 - At svn revision 241619 TB --- 2012-10-17 00:07:28 - building world TB --- 2012-10-17 00:07:28 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 00:07:28 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 00:07:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 00:07:28 - SRCCONF=/dev/null TB --- 2012-10-17 00:07:28 - TARGET=sparc64 TB --- 2012-10-17 00:07:28 - TARGET_ARCH=sparc64 TB --- 2012-10-17 00:07:28 - TZ=UTC TB --- 2012-10-17 00:07:28 - __MAKE_CONF=/dev/null TB --- 2012-10-17 00:07:28 - cd /src TB --- 2012-10-17 00:07:28 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 00:07:33 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Oct 17 01:10:00 UTC 2012 TB --- 2012-10-17 01:10:00 - generating LINT kernel config TB --- 2012-10-17 01:10:00 - cd /src/sys/sparc64/conf TB --- 2012-10-17 01:10:00 - /usr/bin/make -B LINT TB --- 2012-10-17 01:10:00 - cd /src/sys/sparc64/conf TB --- 2012-10-17 01:10:00 - /usr/sbin/config -m LINT TB --- 2012-10-17 01:10:00 - building LINT kernel TB --- 2012-10-17 01:10:00 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 01:10:00 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 01:10:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 01:10:00 - SRCCONF=/dev/null TB --- 2012-10-17 01:10:00 - TARGET=sparc64 TB --- 2012-10-17 01:10:00 - TARGET_ARCH=sparc64 TB --- 2012-10-17 01:10:00 - TZ=UTC TB --- 2012-10-17 01:10:00 - __MAKE_CONF=/dev/null TB --- 2012-10-17 01:10:00 - cd /src TB --- 2012-10-17 01:10:00 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 01:10:00 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/net/if_gif.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/net/if_gre.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/net/if_iso88025subr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/net/if_lagg.c /src/sys/net/if_lagg.c: In function 'lagg_clone_create': /src/sys/net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in this function) /src/sys/net/if_lagg.c:291: error: (Each undeclared identifier is reported only once /src/sys/net/if_lagg.c:291: error: for each function it appears in.) *** [if_lagg.o] Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 01:20:25 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 01:20:25 - ERROR: failed to build LINT kernel TB --- 2012-10-17 01:20:25 - 3553.45 user 609.61 system 4431.88 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 02:03:10 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D7FEFCA7; Wed, 17 Oct 2012 02:03:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 9BF6E8FC12; Wed, 17 Oct 2012 02:03:10 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H2397c036756; Tue, 16 Oct 2012 22:03:09 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H239qX036749; Wed, 17 Oct 2012 02:03:09 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 02:03:09 GMT Message-Id: <201210170203.q9H239qX036749@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 02:03:11 -0000 TB --- 2012-10-16 23:38:45 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 23:38:45 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 23:38:45 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2012-10-16 23:38:45 - cleaning the object tree TB --- 2012-10-16 23:38:45 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 23:38:45 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2012-10-16 23:38:45 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 23:39:32 - /usr/local/bin/svn update /src TB --- 2012-10-16 23:39:38 - At svn revision 241619 TB --- 2012-10-16 23:39:39 - building world TB --- 2012-10-16 23:39:39 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 23:39:39 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 23:39:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 23:39:39 - SRCCONF=/dev/null TB --- 2012-10-16 23:39:39 - TARGET=powerpc TB --- 2012-10-16 23:39:39 - TARGET_ARCH=powerpc TB --- 2012-10-16 23:39:39 - TZ=UTC TB --- 2012-10-16 23:39:39 - __MAKE_CONF=/dev/null TB --- 2012-10-16 23:39:39 - cd /src TB --- 2012-10-16 23:39:39 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 23:39:44 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Oct 17 01:55:22 UTC 2012 TB --- 2012-10-17 01:55:22 - generating LINT kernel config TB --- 2012-10-17 01:55:22 - cd /src/sys/powerpc/conf TB --- 2012-10-17 01:55:22 - /usr/bin/make -B LINT TB --- 2012-10-17 01:55:22 - cd /src/sys/powerpc/conf TB --- 2012-10-17 01:55:22 - /usr/sbin/config -m LINT TB --- 2012-10-17 01:55:22 - building LINT kernel TB --- 2012-10-17 01:55:22 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 01:55:22 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 01:55:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 01:55:22 - SRCCONF=/dev/null TB --- 2012-10-17 01:55:22 - TARGET=powerpc TB --- 2012-10-17 01:55:22 - TARGET_ARCH=powerpc TB --- 2012-10-17 01:55:22 - TZ=UTC TB --- 2012-10-17 01:55:22 - __MAKE_CONF=/dev/null TB --- 2012-10-17 01:55:22 - cd /src TB --- 2012-10-17 01:55:22 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 01:55:22 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/net/if_gif.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/net/if_gre.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/net/if_iso88025subr.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/net/if_lagg.c /src/sys/net/if_lagg.c: In function 'lagg_clone_create': /src/sys/net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in this function) /src/sys/net/if_lagg.c:291: error: (Each undeclared identifier is reported only once /src/sys/net/if_lagg.c:291: error: for each function it appears in.) *** [if_lagg.o] Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 02:03:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 02:03:09 - ERROR: failed to build LINT kernel TB --- 2012-10-17 02:03:09 - 7216.20 user 926.06 system 8663.81 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 02:32:34 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A36BD2F6; Wed, 17 Oct 2012 02:32:34 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 67AB98FC17; Wed, 17 Oct 2012 02:32:34 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H2WXj4094222; Tue, 16 Oct 2012 22:32:33 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H2WXSU094221; Wed, 17 Oct 2012 02:32:33 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 02:32:33 GMT Message-Id: <201210170232.q9H2WXSU094221@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc64/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 02:32:34 -0000 TB --- 2012-10-16 23:39:45 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-16 23:39:45 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-16 23:39:45 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2012-10-16 23:39:45 - cleaning the object tree TB --- 2012-10-16 23:39:45 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-16 23:39:45 - cd /tinderbox/HEAD/powerpc64/powerpc TB --- 2012-10-16 23:39:45 - /usr/local/bin/svn cleanup /src TB --- 2012-10-16 23:40:44 - /usr/local/bin/svn update /src TB --- 2012-10-16 23:40:50 - At svn revision 241619 TB --- 2012-10-16 23:40:51 - building world TB --- 2012-10-16 23:40:51 - CROSS_BUILD_TESTING=YES TB --- 2012-10-16 23:40:51 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-16 23:40:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-16 23:40:51 - SRCCONF=/dev/null TB --- 2012-10-16 23:40:51 - TARGET=powerpc TB --- 2012-10-16 23:40:51 - TARGET_ARCH=powerpc64 TB --- 2012-10-16 23:40:51 - TZ=UTC TB --- 2012-10-16 23:40:51 - __MAKE_CONF=/dev/null TB --- 2012-10-16 23:40:51 - cd /src TB --- 2012-10-16 23:40:51 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Tue Oct 16 23:40:56 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed Oct 17 02:24:28 UTC 2012 TB --- 2012-10-17 02:24:28 - generating LINT kernel config TB --- 2012-10-17 02:24:28 - cd /src/sys/powerpc/conf TB --- 2012-10-17 02:24:28 - /usr/bin/make -B LINT TB --- 2012-10-17 02:24:28 - cd /src/sys/powerpc/conf TB --- 2012-10-17 02:24:28 - /usr/sbin/config -m LINT TB --- 2012-10-17 02:24:28 - building LINT kernel TB --- 2012-10-17 02:24:28 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 02:24:28 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 02:24:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 02:24:28 - SRCCONF=/dev/null TB --- 2012-10-17 02:24:28 - TARGET=powerpc TB --- 2012-10-17 02:24:28 - TARGET_ARCH=powerpc64 TB --- 2012-10-17 02:24:28 - TZ=UTC TB --- 2012-10-17 02:24:28 - __MAKE_CONF=/dev/null TB --- 2012-10-17 02:24:28 - cd /src TB --- 2012-10-17 02:24:28 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 02:24:29 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/net/if_gif.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/net/if_gre.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/net/if_iso88025subr.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/net/if_lagg.c /src/sys/net/if_lagg.c: In function 'lagg_clone_create': /src/sys/net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in this function) /src/sys/net/if_lagg.c:291: error: (Each undeclared identifier is reported only once /src/sys/net/if_lagg.c:291: error: for each function it appears in.) *** [if_lagg.o] Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 02:32:33 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 02:32:33 - ERROR: failed to build LINT kernel TB --- 2012-10-17 02:32:33 - 8768.12 user 1180.09 system 10367.66 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 04:14:40 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 51274138; Wed, 17 Oct 2012 04:14:40 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 0B0CB8FC0A; Wed, 17 Oct 2012 04:14:39 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H4EdBg081785; Wed, 17 Oct 2012 00:14:39 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H4Ed81081784; Wed, 17 Oct 2012 04:14:39 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 04:14:39 GMT Message-Id: <201210170414.q9H4Ed81081784@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on arm/arm Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 04:14:40 -0000 TB --- 2012-10-17 02:40:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 02:40:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 02:40:00 - starting HEAD tinderbox run for arm/arm TB --- 2012-10-17 02:40:00 - cleaning the object tree TB --- 2012-10-17 02:40:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 02:40:00 - cd /tinderbox/HEAD/arm/arm TB --- 2012-10-17 02:40:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 02:42:42 - /usr/local/bin/svn update /src TB --- 2012-10-17 02:42:50 - At svn revision 241625 TB --- 2012-10-17 02:42:51 - building world TB --- 2012-10-17 02:42:51 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 02:42:51 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 02:42:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 02:42:51 - SRCCONF=/dev/null TB --- 2012-10-17 02:42:51 - TARGET=arm TB --- 2012-10-17 02:42:51 - TARGET_ARCH=arm TB --- 2012-10-17 02:42:51 - TZ=UTC TB --- 2012-10-17 02:42:51 - __MAKE_CONF=/dev/null TB --- 2012-10-17 02:42:51 - cd /src TB --- 2012-10-17 02:42:51 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 02:42:57 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Oct 17 03:43:32 UTC 2012 TB --- 2012-10-17 03:43:32 - cd /src/sys/arm/conf TB --- 2012-10-17 03:43:32 - /usr/sbin/config -m AC100 TB --- 2012-10-17 03:43:32 - skipping AC100 kernel TB --- 2012-10-17 03:43:32 - cd /src/sys/arm/conf TB --- 2012-10-17 03:43:32 - /usr/sbin/config -m ARMADAXP TB --- 2012-10-17 03:43:32 - skipping ARMADAXP kernel TB --- 2012-10-17 03:43:32 - cd /src/sys/arm/conf TB --- 2012-10-17 03:43:32 - /usr/sbin/config -m ATMEL TB --- 2012-10-17 03:43:32 - building ATMEL kernel TB --- 2012-10-17 03:43:32 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 03:43:32 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 03:43:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 03:43:32 - SRCCONF=/dev/null TB --- 2012-10-17 03:43:32 - TARGET=arm TB --- 2012-10-17 03:43:32 - TARGET_ARCH=arm TB --- 2012-10-17 03:43:32 - TZ=UTC TB --- 2012-10-17 03:43:32 - __MAKE_CONF=/dev/null TB --- 2012-10-17 03:43:32 - cd /src TB --- 2012-10-17 03:43:32 - /usr/bin/make -B buildkernel KERNCONF=ATMEL >>> Kernel build for ATMEL started on Wed Oct 17 03:43:32 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for ATMEL completed on Wed Oct 17 03:47:31 UTC 2012 TB --- 2012-10-17 03:47:31 - cd /src/sys/arm/conf TB --- 2012-10-17 03:47:31 - /usr/sbin/config -m AVILA TB --- 2012-10-17 03:47:31 - skipping AVILA kernel TB --- 2012-10-17 03:47:31 - cd /src/sys/arm/conf TB --- 2012-10-17 03:47:31 - /usr/sbin/config -m BEAGLEBONE TB --- 2012-10-17 03:47:31 - skipping BEAGLEBONE kernel TB --- 2012-10-17 03:47:31 - cd /src/sys/arm/conf TB --- 2012-10-17 03:47:31 - /usr/sbin/config -m BWCT TB --- 2012-10-17 03:47:32 - building BWCT kernel TB --- 2012-10-17 03:47:32 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 03:47:32 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 03:47:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 03:47:32 - SRCCONF=/dev/null TB --- 2012-10-17 03:47:32 - TARGET=arm TB --- 2012-10-17 03:47:32 - TARGET_ARCH=arm TB --- 2012-10-17 03:47:32 - TZ=UTC TB --- 2012-10-17 03:47:32 - __MAKE_CONF=/dev/null TB --- 2012-10-17 03:47:32 - cd /src TB --- 2012-10-17 03:47:32 - /usr/bin/make -B buildkernel KERNCONF=BWCT >>> Kernel build for BWCT started on Wed Oct 17 03:47:32 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for BWCT completed on Wed Oct 17 03:49:40 UTC 2012 TB --- 2012-10-17 03:49:40 - cd /src/sys/arm/conf TB --- 2012-10-17 03:49:40 - /usr/sbin/config -m CAMBRIA TB --- 2012-10-17 03:49:40 - skipping CAMBRIA kernel TB --- 2012-10-17 03:49:40 - cd /src/sys/arm/conf TB --- 2012-10-17 03:49:40 - /usr/sbin/config -m CNS11XXNAS TB --- 2012-10-17 03:49:40 - building CNS11XXNAS kernel TB --- 2012-10-17 03:49:40 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 03:49:40 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 03:49:40 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 03:49:40 - SRCCONF=/dev/null TB --- 2012-10-17 03:49:40 - TARGET=arm TB --- 2012-10-17 03:49:40 - TARGET_ARCH=arm TB --- 2012-10-17 03:49:40 - TZ=UTC TB --- 2012-10-17 03:49:40 - __MAKE_CONF=/dev/null TB --- 2012-10-17 03:49:40 - cd /src TB --- 2012-10-17 03:49:40 - /usr/bin/make -B buildkernel KERNCONF=CNS11XXNAS >>> Kernel build for CNS11XXNAS started on Wed Oct 17 03:49:40 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for CNS11XXNAS completed on Wed Oct 17 03:52:08 UTC 2012 TB --- 2012-10-17 03:52:08 - cd /src/sys/arm/conf TB --- 2012-10-17 03:52:08 - /usr/sbin/config -m CRB TB --- 2012-10-17 03:52:08 - skipping CRB kernel TB --- 2012-10-17 03:52:08 - cd /src/sys/arm/conf TB --- 2012-10-17 03:52:08 - /usr/sbin/config -m DB-78XXX TB --- 2012-10-17 03:52:08 - building DB-78XXX kernel TB --- 2012-10-17 03:52:08 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 03:52:08 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 03:52:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 03:52:08 - SRCCONF=/dev/null TB --- 2012-10-17 03:52:08 - TARGET=arm TB --- 2012-10-17 03:52:08 - TARGET_ARCH=arm TB --- 2012-10-17 03:52:08 - TZ=UTC TB --- 2012-10-17 03:52:08 - __MAKE_CONF=/dev/null TB --- 2012-10-17 03:52:08 - cd /src TB --- 2012-10-17 03:52:08 - /usr/bin/make -B buildkernel KERNCONF=DB-78XXX >>> Kernel build for DB-78XXX started on Wed Oct 17 03:52:08 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-78XXX completed on Wed Oct 17 03:54:54 UTC 2012 TB --- 2012-10-17 03:54:54 - cd /src/sys/arm/conf TB --- 2012-10-17 03:54:54 - /usr/sbin/config -m DB-88F5XXX TB --- 2012-10-17 03:54:54 - building DB-88F5XXX kernel TB --- 2012-10-17 03:54:54 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 03:54:54 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 03:54:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 03:54:54 - SRCCONF=/dev/null TB --- 2012-10-17 03:54:54 - TARGET=arm TB --- 2012-10-17 03:54:54 - TARGET_ARCH=arm TB --- 2012-10-17 03:54:54 - TZ=UTC TB --- 2012-10-17 03:54:54 - __MAKE_CONF=/dev/null TB --- 2012-10-17 03:54:54 - cd /src TB --- 2012-10-17 03:54:54 - /usr/bin/make -B buildkernel KERNCONF=DB-88F5XXX >>> Kernel build for DB-88F5XXX started on Wed Oct 17 03:54:54 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F5XXX completed on Wed Oct 17 03:57:33 UTC 2012 TB --- 2012-10-17 03:57:33 - cd /src/sys/arm/conf TB --- 2012-10-17 03:57:33 - /usr/sbin/config -m DB-88F6XXX TB --- 2012-10-17 03:57:33 - building DB-88F6XXX kernel TB --- 2012-10-17 03:57:33 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 03:57:33 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 03:57:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 03:57:33 - SRCCONF=/dev/null TB --- 2012-10-17 03:57:33 - TARGET=arm TB --- 2012-10-17 03:57:33 - TARGET_ARCH=arm TB --- 2012-10-17 03:57:33 - TZ=UTC TB --- 2012-10-17 03:57:33 - __MAKE_CONF=/dev/null TB --- 2012-10-17 03:57:33 - cd /src TB --- 2012-10-17 03:57:33 - /usr/bin/make -B buildkernel KERNCONF=DB-88F6XXX >>> Kernel build for DB-88F6XXX started on Wed Oct 17 03:57:33 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F6XXX completed on Wed Oct 17 04:00:52 UTC 2012 TB --- 2012-10-17 04:00:52 - cd /src/sys/arm/conf TB --- 2012-10-17 04:00:52 - /usr/sbin/config -m DOCKSTAR TB --- 2012-10-17 04:00:52 - building DOCKSTAR kernel TB --- 2012-10-17 04:00:52 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 04:00:52 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 04:00:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 04:00:52 - SRCCONF=/dev/null TB --- 2012-10-17 04:00:52 - TARGET=arm TB --- 2012-10-17 04:00:52 - TARGET_ARCH=arm TB --- 2012-10-17 04:00:52 - TZ=UTC TB --- 2012-10-17 04:00:52 - __MAKE_CONF=/dev/null TB --- 2012-10-17 04:00:52 - cd /src TB --- 2012-10-17 04:00:52 - /usr/bin/make -B buildkernel KERNCONF=DOCKSTAR >>> Kernel build for DOCKSTAR started on Wed Oct 17 04:00:52 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DOCKSTAR completed on Wed Oct 17 04:03:24 UTC 2012 TB --- 2012-10-17 04:03:24 - cd /src/sys/arm/conf TB --- 2012-10-17 04:03:24 - /usr/sbin/config -m EA3250 TB --- 2012-10-17 04:03:24 - building EA3250 kernel TB --- 2012-10-17 04:03:24 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 04:03:24 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 04:03:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 04:03:24 - SRCCONF=/dev/null TB --- 2012-10-17 04:03:24 - TARGET=arm TB --- 2012-10-17 04:03:24 - TARGET_ARCH=arm TB --- 2012-10-17 04:03:24 - TZ=UTC TB --- 2012-10-17 04:03:24 - __MAKE_CONF=/dev/null TB --- 2012-10-17 04:03:24 - cd /src TB --- 2012-10-17 04:03:24 - /usr/bin/make -B buildkernel KERNCONF=EA3250 >>> Kernel build for EA3250 started on Wed Oct 17 04:03:25 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EA3250 completed on Wed Oct 17 04:06:02 UTC 2012 TB --- 2012-10-17 04:06:02 - cd /src/sys/arm/conf TB --- 2012-10-17 04:06:02 - /usr/sbin/config -m EB9200 TB --- 2012-10-17 04:06:02 - building EB9200 kernel TB --- 2012-10-17 04:06:02 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 04:06:02 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 04:06:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 04:06:02 - SRCCONF=/dev/null TB --- 2012-10-17 04:06:02 - TARGET=arm TB --- 2012-10-17 04:06:02 - TARGET_ARCH=arm TB --- 2012-10-17 04:06:02 - TZ=UTC TB --- 2012-10-17 04:06:02 - __MAKE_CONF=/dev/null TB --- 2012-10-17 04:06:02 - cd /src TB --- 2012-10-17 04:06:02 - /usr/bin/make -B buildkernel KERNCONF=EB9200 >>> Kernel build for EB9200 started on Wed Oct 17 04:06:02 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EB9200 completed on Wed Oct 17 04:08:34 UTC 2012 TB --- 2012-10-17 04:08:34 - cd /src/sys/arm/conf TB --- 2012-10-17 04:08:34 - /usr/sbin/config -m EP80219 TB --- 2012-10-17 04:08:34 - skipping EP80219 kernel TB --- 2012-10-17 04:08:34 - cd /src/sys/arm/conf TB --- 2012-10-17 04:08:34 - /usr/sbin/config -m ETHERNUT5 TB --- 2012-10-17 04:08:34 - building ETHERNUT5 kernel TB --- 2012-10-17 04:08:34 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 04:08:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 04:08:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 04:08:34 - SRCCONF=/dev/null TB --- 2012-10-17 04:08:34 - TARGET=arm TB --- 2012-10-17 04:08:34 - TARGET_ARCH=arm TB --- 2012-10-17 04:08:34 - TZ=UTC TB --- 2012-10-17 04:08:34 - __MAKE_CONF=/dev/null TB --- 2012-10-17 04:08:34 - cd /src TB --- 2012-10-17 04:08:34 - /usr/bin/make -B buildkernel KERNCONF=ETHERNUT5 >>> Kernel build for ETHERNUT5 started on Wed Oct 17 04:08:34 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] ld -Bshareable -d -warn-common -o if_gre.ko if_gre.kld objcopy --strip-debug if_gre.ko ===> if_lagg (all) cc -O -pipe -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /obj/arm.arm/src/sys/ETHERNUT5/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -I/obj/arm.arm/src/sys/ETHERNUT5 -mcpu=arm9 -ffreestanding -std=iso9899:1999 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -c /src/sys/modules/if_lagg/../../net/if_lagg.c /src/sys/modules/if_lagg/../../net/if_lagg.c: In function 'lagg_clone_create': /src/sys/modules/if_lagg/../../net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in this function) /src/sys/modules/if_lagg/../../net/if_lagg.c:291: error: (Each undeclared identifier is reported only once /src/sys/modules/if_lagg/../../net/if_lagg.c:291: error: for each function it appears in.) *** [if_lagg.o] Error code 1 Stop in /src/sys/modules/if_lagg. *** [all] Error code 1 Stop in /src/sys/modules. *** [modules-all] Error code 1 Stop in /obj/arm.arm/src/sys/ETHERNUT5. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 04:14:39 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 04:14:39 - ERROR: failed to build ETHERNUT5 kernel TB --- 2012-10-17 04:14:39 - 4019.50 user 795.34 system 5678.52 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 05:21:26 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE4CADF7; Wed, 17 Oct 2012 05:21:26 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 70E468FC08; Wed, 17 Oct 2012 05:21:26 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H5LPZf097809; Wed, 17 Oct 2012 01:21:25 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H5LPw4097805; Wed, 17 Oct 2012 05:21:25 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 05:21:25 GMT Message-Id: <201210170521.q9H5LPw4097805@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/pc98 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 05:21:26 -0000 TB --- 2012-10-17 02:40:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 02:40:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 02:40:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2012-10-17 02:40:00 - cleaning the object tree TB --- 2012-10-17 02:40:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 02:40:00 - cd /tinderbox/HEAD/i386/pc98 TB --- 2012-10-17 02:40:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 02:42:42 - /usr/local/bin/svn update /src TB --- 2012-10-17 02:42:50 - At svn revision 241625 TB --- 2012-10-17 02:42:51 - building world TB --- 2012-10-17 02:42:51 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 02:42:51 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 02:42:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 02:42:51 - SRCCONF=/dev/null TB --- 2012-10-17 02:42:51 - TARGET=pc98 TB --- 2012-10-17 02:42:51 - TARGET_ARCH=i386 TB --- 2012-10-17 02:42:51 - TZ=UTC TB --- 2012-10-17 02:42:51 - __MAKE_CONF=/dev/null TB --- 2012-10-17 02:42:51 - cd /src TB --- 2012-10-17 02:42:51 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 02:42:57 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Oct 17 05:08:46 UTC 2012 TB --- 2012-10-17 05:08:46 - generating LINT kernel config TB --- 2012-10-17 05:08:46 - cd /src/sys/pc98/conf TB --- 2012-10-17 05:08:46 - /usr/bin/make -B LINT TB --- 2012-10-17 05:08:46 - cd /src/sys/pc98/conf TB --- 2012-10-17 05:08:46 - /usr/sbin/config -m LINT TB --- 2012-10-17 05:08:46 - building LINT kernel TB --- 2012-10-17 05:08:46 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 05:08:46 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 05:08:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 05:08:46 - SRCCONF=/dev/null TB --- 2012-10-17 05:08:46 - TARGET=pc98 TB --- 2012-10-17 05:08:46 - TARGET_ARCH=i386 TB --- 2012-10-17 05:08:46 - TZ=UTC TB --- 2012-10-17 05:08:46 - __MAKE_CONF=/dev/null TB --- 2012-10-17 05:08:46 - cd /src TB --- 2012-10-17 05:08:46 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 05:08:46 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_gif.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_gre.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_iso88025subr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_lagg.c /src/sys/net/if_lagg.c: In function 'lagg_clone_create': /src/sys/net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in this function) /src/sys/net/if_lagg.c:291: error: (Each undeclared identifier is reported only once /src/sys/net/if_lagg.c:291: error: for each function it appears in.) *** [if_lagg.o] Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 05:21:25 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 05:21:25 - ERROR: failed to build LINT kernel TB --- 2012-10-17 05:21:25 - 7417.45 user 1009.21 system 9684.55 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 05:35:54 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1DBDF1B1; Wed, 17 Oct 2012 05:35:54 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id CEFA38FC14; Wed, 17 Oct 2012 05:35:53 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H5Zr8I094065; Wed, 17 Oct 2012 01:35:53 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H5ZrRq094061; Wed, 17 Oct 2012 05:35:53 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 05:35:53 GMT Message-Id: <201210170535.q9H5ZrRq094061@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 05:35:54 -0000 TB --- 2012-10-17 02:40:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 02:40:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 02:40:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-17 02:40:00 - cleaning the object tree TB --- 2012-10-17 02:50:41 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 02:50:41 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-17 02:50:41 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 02:51:44 - /usr/local/bin/svn update /src TB --- 2012-10-17 02:51:51 - At svn revision 241625 TB --- 2012-10-17 02:51:52 - building world TB --- 2012-10-17 02:51:52 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 02:51:52 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 02:51:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 02:51:52 - SRCCONF=/dev/null TB --- 2012-10-17 02:51:52 - TARGET=i386 TB --- 2012-10-17 02:51:52 - TARGET_ARCH=i386 TB --- 2012-10-17 02:51:52 - TZ=UTC TB --- 2012-10-17 02:51:52 - __MAKE_CONF=/dev/null TB --- 2012-10-17 02:51:52 - cd /src TB --- 2012-10-17 02:51:52 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 02:51:58 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Oct 17 05:19:56 UTC 2012 TB --- 2012-10-17 05:19:56 - generating LINT kernel config TB --- 2012-10-17 05:19:56 - cd /src/sys/i386/conf TB --- 2012-10-17 05:19:56 - /usr/bin/make -B LINT TB --- 2012-10-17 05:19:56 - cd /src/sys/i386/conf TB --- 2012-10-17 05:19:56 - /usr/sbin/config -m LINT TB --- 2012-10-17 05:19:56 - building LINT kernel TB --- 2012-10-17 05:19:56 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 05:19:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 05:19:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 05:19:56 - SRCCONF=/dev/null TB --- 2012-10-17 05:19:56 - TARGET=i386 TB --- 2012-10-17 05:19:56 - TARGET_ARCH=i386 TB --- 2012-10-17 05:19:56 - TZ=UTC TB --- 2012-10-17 05:19:56 - __MAKE_CONF=/dev/null TB --- 2012-10-17 05:19:56 - cd /src TB --- 2012-10-17 05:19:56 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 05:19:57 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_gif.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_gre.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_iso88025subr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_lagg.c /src/sys/net/if_lagg.c: In function 'lagg_clone_create': /src/sys/net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in this function) /src/sys/net/if_lagg.c:291: error: (Each undeclared identifier is reported only once /src/sys/net/if_lagg.c:291: error: for each function it appears in.) *** [if_lagg.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 05:35:52 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 05:35:52 - ERROR: failed to build LINT kernel TB --- 2012-10-17 05:35:52 - 7572.40 user 1051.65 system 10552.40 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 06:06:08 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F40BBA1; Wed, 17 Oct 2012 06:06:08 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 53BA88FC14; Wed, 17 Oct 2012 06:06:07 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H667fg099589; Wed, 17 Oct 2012 02:06:07 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H667p3099388; Wed, 17 Oct 2012 06:06:07 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 06:06:07 GMT Message-Id: <201210170606.q9H667p3099388@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on ia64/ia64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 06:06:08 -0000 TB --- 2012-10-17 04:14:39 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 04:14:39 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 04:14:39 - starting HEAD tinderbox run for ia64/ia64 TB --- 2012-10-17 04:14:39 - cleaning the object tree TB --- 2012-10-17 04:14:39 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 04:14:39 - cd /tinderbox/HEAD/ia64/ia64 TB --- 2012-10-17 04:14:39 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 04:15:12 - /usr/local/bin/svn update /src TB --- 2012-10-17 04:15:17 - At svn revision 241625 TB --- 2012-10-17 04:15:18 - building world TB --- 2012-10-17 04:15:18 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 04:15:18 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 04:15:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 04:15:18 - SRCCONF=/dev/null TB --- 2012-10-17 04:15:18 - TARGET=ia64 TB --- 2012-10-17 04:15:18 - TARGET_ARCH=ia64 TB --- 2012-10-17 04:15:18 - TZ=UTC TB --- 2012-10-17 04:15:18 - __MAKE_CONF=/dev/null TB --- 2012-10-17 04:15:18 - cd /src TB --- 2012-10-17 04:15:18 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 04:15:23 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Oct 17 05:49:29 UTC 2012 TB --- 2012-10-17 05:49:29 - generating LINT kernel config TB --- 2012-10-17 05:49:29 - cd /src/sys/ia64/conf TB --- 2012-10-17 05:49:29 - /usr/bin/make -B LINT TB --- 2012-10-17 05:49:29 - cd /src/sys/ia64/conf TB --- 2012-10-17 05:49:29 - /usr/sbin/config -m LINT TB --- 2012-10-17 05:49:29 - building LINT kernel TB --- 2012-10-17 05:49:29 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 05:49:29 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 05:49:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 05:49:29 - SRCCONF=/dev/null TB --- 2012-10-17 05:49:29 - TARGET=ia64 TB --- 2012-10-17 05:49:29 - TARGET_ARCH=ia64 TB --- 2012-10-17 05:49:29 - TZ=UTC TB --- 2012-10-17 05:49:29 - __MAKE_CONF=/dev/null TB --- 2012-10-17 05:49:29 - cd /src TB --- 2012-10-17 05:49:29 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 05:49:29 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/net/if_gif.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/net/if_gre.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/net/if_iso88025subr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mconstant-gp -ffixed-r13 -mfixed-range=f32-f127 -fpic -ffreestanding -Werror /src/sys/net/if_lagg.c /src/sys/net/if_lagg.c: In function 'lagg_clone_create': /src/sys/net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in this function) /src/sys/net/if_lagg.c:291: error: (Each undeclared identifier is reported only once /src/sys/net/if_lagg.c:291: error: for each function it appears in.) *** [if_lagg.o] Error code 1 Stop in /obj/ia64.ia64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 06:06:02 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 06:06:02 - ERROR: failed to build LINT kernel TB --- 2012-10-17 06:06:02 - 5146.33 user 757.37 system 6682.84 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 06:13:24 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4258BDDB; Wed, 17 Oct 2012 06:13:24 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 0C89A8FC16; Wed, 17 Oct 2012 06:13:23 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H6DNbS020843; Wed, 17 Oct 2012 02:13:23 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H6DNKO020841; Wed, 17 Oct 2012 06:13:23 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 06:13:23 GMT Message-Id: <201210170613.q9H6DNKO020841@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 06:13:24 -0000 TB --- 2012-10-17 02:40:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 02:40:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 02:40:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-10-17 02:40:00 - cleaning the object tree TB --- 2012-10-17 02:51:45 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 02:51:45 - cd /tinderbox/HEAD/amd64/amd64 TB --- 2012-10-17 02:51:45 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 02:52:46 - /usr/local/bin/svn update /src TB --- 2012-10-17 02:52:52 - At svn revision 241625 TB --- 2012-10-17 02:52:53 - building world TB --- 2012-10-17 02:52:53 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 02:52:53 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 02:52:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 02:52:53 - SRCCONF=/dev/null TB --- 2012-10-17 02:52:53 - TARGET=amd64 TB --- 2012-10-17 02:52:53 - TARGET_ARCH=amd64 TB --- 2012-10-17 02:52:53 - TZ=UTC TB --- 2012-10-17 02:52:53 - __MAKE_CONF=/dev/null TB --- 2012-10-17 02:52:53 - cd /src TB --- 2012-10-17 02:52:53 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 02:52:58 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed Oct 17 05:58:49 UTC 2012 TB --- 2012-10-17 05:58:49 - generating LINT kernel config TB --- 2012-10-17 05:58:49 - cd /src/sys/amd64/conf TB --- 2012-10-17 05:58:49 - /usr/bin/make -B LINT TB --- 2012-10-17 05:58:49 - cd /src/sys/amd64/conf TB --- 2012-10-17 05:58:49 - /usr/sbin/config -m LINT TB --- 2012-10-17 05:58:50 - building LINT kernel TB --- 2012-10-17 05:58:50 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 05:58:50 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 05:58:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 05:58:50 - SRCCONF=/dev/null TB --- 2012-10-17 05:58:50 - TARGET=amd64 TB --- 2012-10-17 05:58:50 - TARGET_ARCH=amd64 TB --- 2012-10-17 05:58:50 - TZ=UTC TB --- 2012-10-17 05:58:50 - __MAKE_CONF=/dev/null TB --- 2012-10-17 05:58:50 - cd /src TB --- 2012-10-17 05:58:50 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 05:58:50 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_gif.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_gre.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_iso88025subr.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_lagg.c /src/sys/net/if_lagg.c: In function 'lagg_clone_create': /src/sys/net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in this function) /src/sys/net/if_lagg.c:291: error: (Each undeclared identifier is reported only once /src/sys/net/if_lagg.c:291: error: for each function it appears in.) *** [if_lagg.o] Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 06:13:23 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 06:13:23 - ERROR: failed to build LINT kernel TB --- 2012-10-17 06:13:23 - 9025.22 user 1370.88 system 12802.55 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 06:44:19 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC90A61E; Wed, 17 Oct 2012 06:44:19 +0000 (UTC) (envelope-from hiren.panchasara@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 0A49E8FC0A; Wed, 17 Oct 2012 06:44:18 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so3229531bkc.13 for ; Tue, 16 Oct 2012 23:44:18 -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=T2HndZWHHjlIH4ZhIiocUomzdmyuIAbHMwgDYX7Olbc=; b=NKzghfRreQcAMGTYTce6mS4TcpqFlvrJfDntzeVNFpVbOz4S7oYcUP3siYUk9K0/p7 QcLtQmcTp7vbd74JnGlf/VTCoXdbGHqfV6GGJRu4xrGRBb4hcad2Dz5IIJM8X/1YlOuh nztEv9bqRLQTpg5iyQiwV0s81h5JZMUq9+m/ddNu3dj5m8/MiY/ZCxgoWj4amgzsu5El AONCZ3ity12vCqbB/s+6VhUFiUsUTHPP9asKJCC4o3pGlyk8pS9BWjoi3j0Ceq5XEqCd DbejbU9HaOx1H1IWN0jZRVqptF8MPxtfRdkw1k32l/PUvAWkebWMtnHI3QMECMGo/3+m LRgg== MIME-Version: 1.0 Received: by 10.204.128.138 with SMTP id k10mr4936861bks.27.1350456257883; Tue, 16 Oct 2012 23:44:17 -0700 (PDT) Received: by 10.205.36.136 with HTTP; Tue, 16 Oct 2012 23:44:17 -0700 (PDT) In-Reply-To: <201210170535.q9H5ZrRq094061@freebsd-current.sentex.ca> References: <201210170535.q9H5ZrRq094061@freebsd-current.sentex.ca> Date: Tue, 16 Oct 2012 23:44:17 -0700 Message-ID: Subject: Re: [head tinderbox] failure on i386/i386 From: hiren panchasara To: current@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: emax@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 06:44:19 -0000 On Tue, Oct 16, 2012 at 10:35 PM, FreeBSD Tinderbox wrote: > TB --- 2012-10-17 02:40:00 - tinderbox 2.9 running on > freebsd-current.sentex.ca > TB --- 2012-10-17 02:40:00 - FreeBSD freebsd-current.sentex.ca8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 > des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 > TB --- 2012-10-17 02:40:00 - starting HEAD tinderbox run for i386/i386 > TB --- 2012-10-17 02:40:00 - cleaning the object tree > TB --- 2012-10-17 02:50:41 - checking out /src from svn:// > svn.freebsd.org/base/head > TB --- 2012-10-17 02:50:41 - cd /tinderbox/HEAD/i386/i386 > TB --- 2012-10-17 02:50:41 - /usr/local/bin/svn cleanup /src > TB --- 2012-10-17 02:51:44 - /usr/local/bin/svn update /src > TB --- 2012-10-17 02:51:51 - At svn revision 241625 > TB --- 2012-10-17 02:51:52 - building world > TB --- 2012-10-17 02:51:52 - CROSS_BUILD_TESTING=YES > TB --- 2012-10-17 02:51:52 - MAKEOBJDIRPREFIX=/obj > TB --- 2012-10-17 02:51:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2012-10-17 02:51:52 - SRCCONF=/dev/null > TB --- 2012-10-17 02:51:52 - TARGET=i386 > TB --- 2012-10-17 02:51:52 - TARGET_ARCH=i386 > TB --- 2012-10-17 02:51:52 - TZ=UTC > TB --- 2012-10-17 02:51:52 - __MAKE_CONF=/dev/null > TB --- 2012-10-17 02:51:52 - cd /src > TB --- 2012-10-17 02:51:52 - /usr/bin/make -B buildworld > >>> Building an up-to-date make(1) > >>> World build started on Wed Oct 17 02:51:58 UTC 2012 > >>> Rebuilding the temporary build tree > >>> stage 1.1: legacy release compatibility shims > >>> stage 1.2: bootstrap tools > >>> stage 2.1: cleaning up the object tree > >>> stage 2.2: rebuilding the object tree > >>> stage 2.3: build tools > >>> stage 3: cross tools > >>> stage 4.1: building includes > >>> stage 4.2: building libraries > >>> stage 4.3: make dependencies > >>> stage 4.4: building everything > >>> World build completed on Wed Oct 17 05:19:56 UTC 2012 > TB --- 2012-10-17 05:19:56 - generating LINT kernel config > TB --- 2012-10-17 05:19:56 - cd /src/sys/i386/conf > TB --- 2012-10-17 05:19:56 - /usr/bin/make -B LINT > TB --- 2012-10-17 05:19:56 - cd /src/sys/i386/conf > TB --- 2012-10-17 05:19:56 - /usr/sbin/config -m LINT > TB --- 2012-10-17 05:19:56 - building LINT kernel > TB --- 2012-10-17 05:19:56 - CROSS_BUILD_TESTING=YES > TB --- 2012-10-17 05:19:56 - MAKEOBJDIRPREFIX=/obj > TB --- 2012-10-17 05:19:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2012-10-17 05:19:56 - SRCCONF=/dev/null > TB --- 2012-10-17 05:19:56 - TARGET=i386 > TB --- 2012-10-17 05:19:56 - TARGET_ARCH=i386 > TB --- 2012-10-17 05:19:56 - TZ=UTC > TB --- 2012-10-17 05:19:56 - __MAKE_CONF=/dev/null > TB --- 2012-10-17 05:19:56 - cd /src > TB --- 2012-10-17 05:19:56 - /usr/bin/make -B buildkernel KERNCONF=LINT > >>> Kernel build for LINT started on Wed Oct 17 05:19:57 UTC 2012 > >>> stage 1: configuring the kernel > >>> stage 2.1: cleaning up the object tree > >>> stage 2.2: rebuilding the object tree > >>> stage 2.3: build tools > >>> stage 3.1: making dependencies > >>> stage 3.2: building everything > [...] > cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls > -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith > -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions > -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. > -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS > -include opt_global.h -fno-common -finline-limit=8000 --param > inline-unit-growth=100 --param large-function-growth=1000 -DGPROF > -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings > -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding > -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_gif.c > cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls > -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith > -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions > -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. > -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS > -include opt_global.h -fno-common -finline-limit=8000 --param > inline-unit-growth=100 --param large-function-growth=1000 -DGPROF > -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings > -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding > -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_gre.c > cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls > -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith > -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions > -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. > -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS > -include opt_global.h -fno-common -finline-limit=8000 --param > inline-unit-growth=100 --param large-function-growth=1000 -DGPROF > -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings > -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding > -fstack-protector -Werror -pg -mprofiler-epilogue > /src/sys/net/if_iso88025subr.c > cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls > -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith > -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions > -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. > -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS > -include opt_global.h -fno-common -finline-limit=8000 --param > inline-unit-growth=100 --param large-function-growth=1000 -DGPROF > -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings > -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding > -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_lagg.c > /src/sys/net/if_lagg.c: In function 'lagg_clone_create': > /src/sys/net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in > this function) > /src/sys/net/if_lagg.c:291: error: (Each undeclared identifier is reported > only once > /src/sys/net/if_lagg.c:291: error: for each function it appears in.) > *** [if_lagg.o] Error code 1 This seems to be coming from 241619 via emax. Should we change CTLFLAG_RO to CTLFLAG_RD ? Thanks, Hiren > > Stop in /obj/i386.i386/src/sys/LINT. > *** [buildkernel] Error code 1 > > Stop in /src. > *** Error code 1 > > Stop in /src. > TB --- 2012-10-17 05:35:52 - WARNING: /usr/bin/make returned exit code 1 > TB --- 2012-10-17 05:35:52 - ERROR: failed to build LINT kernel > TB --- 2012-10-17 05:35:52 - 7572.40 user 1051.65 system 10552.40 real > > > http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 07:40:45 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 56704EE3; Wed, 17 Oct 2012 07:40:45 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 214C58FC12; Wed, 17 Oct 2012 07:40:45 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H7eiA6011421; Wed, 17 Oct 2012 03:40:44 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H7ei9S011419; Wed, 17 Oct 2012 07:40:44 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 07:40:44 GMT Message-Id: <201210170740.q9H7ei9S011419@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 07:40:45 -0000 TB --- 2012-10-17 06:13:23 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 06:13:23 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 06:13:23 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-10-17 06:13:23 - cleaning the object tree TB --- 2012-10-17 06:14:46 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 06:14:46 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2012-10-17 06:14:46 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 06:15:33 - /usr/local/bin/svn update /src TB --- 2012-10-17 06:15:39 - At svn revision 241626 TB --- 2012-10-17 06:15:40 - building world TB --- 2012-10-17 06:15:40 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 06:15:40 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 06:15:40 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 06:15:40 - SRCCONF=/dev/null TB --- 2012-10-17 06:15:40 - TARGET=sparc64 TB --- 2012-10-17 06:15:40 - TARGET_ARCH=sparc64 TB --- 2012-10-17 06:15:40 - TZ=UTC TB --- 2012-10-17 06:15:40 - __MAKE_CONF=/dev/null TB --- 2012-10-17 06:15:40 - cd /src TB --- 2012-10-17 06:15:40 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 06:15:45 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Oct 17 07:27:25 UTC 2012 TB --- 2012-10-17 07:27:25 - generating LINT kernel config TB --- 2012-10-17 07:27:25 - cd /src/sys/sparc64/conf TB --- 2012-10-17 07:27:25 - /usr/bin/make -B LINT TB --- 2012-10-17 07:27:25 - cd /src/sys/sparc64/conf TB --- 2012-10-17 07:27:25 - /usr/sbin/config -m LINT TB --- 2012-10-17 07:27:25 - building LINT kernel TB --- 2012-10-17 07:27:25 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 07:27:25 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 07:27:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 07:27:25 - SRCCONF=/dev/null TB --- 2012-10-17 07:27:25 - TARGET=sparc64 TB --- 2012-10-17 07:27:25 - TARGET_ARCH=sparc64 TB --- 2012-10-17 07:27:25 - TZ=UTC TB --- 2012-10-17 07:27:25 - __MAKE_CONF=/dev/null TB --- 2012-10-17 07:27:25 - cd /src TB --- 2012-10-17 07:27:25 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 07:27:25 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/net/if_gif.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/net/if_gre.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/net/if_iso88025subr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/net/if_lagg.c /src/sys/net/if_lagg.c: In function 'lagg_clone_create': /src/sys/net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in this function) /src/sys/net/if_lagg.c:291: error: (Each undeclared identifier is reported only once /src/sys/net/if_lagg.c:291: error: for each function it appears in.) *** [if_lagg.o] Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 07:40:44 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 07:40:44 - ERROR: failed to build LINT kernel TB --- 2012-10-17 07:40:44 - 3727.85 user 641.70 system 5240.92 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 08:12:43 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 794D7B0F; Wed, 17 Oct 2012 08:12:43 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 3452F8FC0A; Wed, 17 Oct 2012 08:12:43 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H8CgVY006042; Wed, 17 Oct 2012 04:12:42 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H8CgBp006037; Wed, 17 Oct 2012 08:12:42 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 08:12:42 GMT Message-Id: <201210170812.q9H8CgBp006037@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 08:12:43 -0000 TB --- 2012-10-17 05:35:53 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 05:35:53 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 05:35:53 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2012-10-17 05:35:53 - cleaning the object tree TB --- 2012-10-17 05:37:03 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 05:37:03 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2012-10-17 05:37:03 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 05:37:47 - /usr/local/bin/svn update /src TB --- 2012-10-17 05:37:53 - At svn revision 241626 TB --- 2012-10-17 05:37:54 - building world TB --- 2012-10-17 05:37:54 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 05:37:54 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 05:37:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 05:37:54 - SRCCONF=/dev/null TB --- 2012-10-17 05:37:54 - TARGET=powerpc TB --- 2012-10-17 05:37:54 - TARGET_ARCH=powerpc TB --- 2012-10-17 05:37:54 - TZ=UTC TB --- 2012-10-17 05:37:54 - __MAKE_CONF=/dev/null TB --- 2012-10-17 05:37:54 - cd /src TB --- 2012-10-17 05:37:54 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 05:37:59 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Oct 17 08:05:06 UTC 2012 TB --- 2012-10-17 08:05:06 - generating LINT kernel config TB --- 2012-10-17 08:05:06 - cd /src/sys/powerpc/conf TB --- 2012-10-17 08:05:06 - /usr/bin/make -B LINT TB --- 2012-10-17 08:05:06 - cd /src/sys/powerpc/conf TB --- 2012-10-17 08:05:06 - /usr/sbin/config -m LINT TB --- 2012-10-17 08:05:06 - building LINT kernel TB --- 2012-10-17 08:05:06 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 08:05:06 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 08:05:06 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 08:05:06 - SRCCONF=/dev/null TB --- 2012-10-17 08:05:06 - TARGET=powerpc TB --- 2012-10-17 08:05:06 - TARGET_ARCH=powerpc TB --- 2012-10-17 08:05:06 - TZ=UTC TB --- 2012-10-17 08:05:06 - __MAKE_CONF=/dev/null TB --- 2012-10-17 08:05:06 - cd /src TB --- 2012-10-17 08:05:06 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 08:05:06 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/net/if_gif.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/net/if_gre.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/net/if_iso88025subr.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/net/if_lagg.c /src/sys/net/if_lagg.c: In function 'lagg_clone_create': /src/sys/net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in this function) /src/sys/net/if_lagg.c:291: error: (Each undeclared identifier is reported only once /src/sys/net/if_lagg.c:291: error: for each function it appears in.) *** [if_lagg.o] Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 08:12:42 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 08:12:42 - ERROR: failed to build LINT kernel TB --- 2012-10-17 08:12:42 - 7460.52 user 951.54 system 9409.06 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 08:27:41 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D036315E; Wed, 17 Oct 2012 08:27:41 +0000 (UTC) (envelope-from andreast-list@fgznet.ch) Received: from smtp.fgznet.ch (mail.fgznet.ch [81.92.96.47]) by mx1.freebsd.org (Postfix) with ESMTP id 1826B8FC08; Wed, 17 Oct 2012 08:27:40 +0000 (UTC) Received: from deuterium.andreas.nets (dhclient-91-190-14-19.flashcable.ch [91.190.14.19]) by smtp.fgznet.ch (8.13.8/8.13.8/Submit_SMTPAUTH) with ESMTP id q9H8RTfr045460; Wed, 17 Oct 2012 10:27:30 +0200 (CEST) (envelope-from andreast-list@fgznet.ch) Message-ID: <507E6BF2.3030100@fgznet.ch> Date: Wed, 17 Oct 2012 10:27:30 +0200 From: Andreas Tobler User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.5; rv:15.0) Gecko/20120907 Thunderbird/15.0.1 MIME-Version: 1.0 To: current@freebsd.org Subject: Re: [head tinderbox] failure on amd64/amd64 References: <201210170006.q9H06XvV060074@freebsd-current.sentex.ca> In-Reply-To: <201210170006.q9H06XvV060074@freebsd-current.sentex.ca> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.64 on 81.92.96.47 Cc: amd64@freebsd.org, FreeBSD Tinderbox X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 08:27:41 -0000 On 17.10.12 02:06, FreeBSD Tinderbox wrote: > TB --- 2012-10-16 18:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca > TB --- 2012-10-16 18:50:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 > TB --- 2012-10-16 18:50:00 - starting HEAD tinderbox run for amd64/amd64 > TB --- 2012-10-16 18:50:00 - cleaning the object tree > TB --- 2012-10-16 18:50:00 - checking out /src from svn://svn.freebsd.org/base/head > TB --- 2012-10-16 18:50:00 - cd /tinderbox/HEAD/amd64/amd64 > TB --- 2012-10-16 18:50:00 - /usr/local/bin/svn cleanup /src > TB --- 2012-10-16 18:52:40 - /usr/local/bin/svn update /src > TB --- 2012-10-16 18:53:00 - At svn revision 241613 > TB --- 2012-10-16 18:53:01 - building world > TB --- 2012-10-16 18:53:01 - CROSS_BUILD_TESTING=YES > TB --- 2012-10-16 18:53:01 - MAKEOBJDIRPREFIX=/obj > TB --- 2012-10-16 18:53:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2012-10-16 18:53:01 - SRCCONF=/dev/null > TB --- 2012-10-16 18:53:01 - TARGET=amd64 > TB --- 2012-10-16 18:53:01 - TARGET_ARCH=amd64 > TB --- 2012-10-16 18:53:01 - TZ=UTC > TB --- 2012-10-16 18:53:01 - __MAKE_CONF=/dev/null > TB --- 2012-10-16 18:53:01 - cd /src > TB --- 2012-10-16 18:53:01 - /usr/bin/make -B buildworld >>>> Building an up-to-date make(1) >>>> World build started on Tue Oct 16 18:53:09 UTC 2012 >>>> Rebuilding the temporary build tree >>>> stage 1.1: legacy release compatibility shims >>>> stage 1.2: bootstrap tools >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3: cross tools >>>> stage 4.1: building includes >>>> stage 4.2: building libraries >>>> stage 4.3: make dependencies >>>> stage 4.4: building everything >>>> stage 5.1: building 32 bit shim libraries >>>> World build completed on Tue Oct 16 21:56:29 UTC 2012 > TB --- 2012-10-16 21:56:29 - generating LINT kernel config > TB --- 2012-10-16 21:56:29 - cd /src/sys/amd64/conf > TB --- 2012-10-16 21:56:29 - /usr/bin/make -B LINT > TB --- 2012-10-16 21:56:29 - cd /src/sys/amd64/conf > TB --- 2012-10-16 21:56:29 - /usr/sbin/config -m LINT > TB --- 2012-10-16 21:56:29 - building LINT kernel > TB --- 2012-10-16 21:56:29 - CROSS_BUILD_TESTING=YES > TB --- 2012-10-16 21:56:29 - MAKEOBJDIRPREFIX=/obj > TB --- 2012-10-16 21:56:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2012-10-16 21:56:29 - SRCCONF=/dev/null > TB --- 2012-10-16 21:56:29 - TARGET=amd64 > TB --- 2012-10-16 21:56:29 - TARGET_ARCH=amd64 > TB --- 2012-10-16 21:56:29 - TZ=UTC > TB --- 2012-10-16 21:56:29 - __MAKE_CONF=/dev/null > TB --- 2012-10-16 21:56:29 - cd /src > TB --- 2012-10-16 21:56:29 - /usr/bin/make -B buildkernel KERNCONF=LINT >>>> Kernel build for LINT started on Tue Oct 16 21:56:29 UTC 2012 >>>> stage 1: configuring the kernel >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3.1: making dependencies >>>> stage 3.2: building everything >>>> Kernel build for LINT completed on Tue Oct 16 22:27:43 UTC 2012 > TB --- 2012-10-16 22:27:43 - cd /src/sys/amd64/conf > TB --- 2012-10-16 22:27:43 - /usr/sbin/config -m LINT-NOINET > TB --- 2012-10-16 22:27:43 - building LINT-NOINET kernel > TB --- 2012-10-16 22:27:43 - CROSS_BUILD_TESTING=YES > TB --- 2012-10-16 22:27:43 - MAKEOBJDIRPREFIX=/obj > TB --- 2012-10-16 22:27:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2012-10-16 22:27:43 - SRCCONF=/dev/null > TB --- 2012-10-16 22:27:43 - TARGET=amd64 > TB --- 2012-10-16 22:27:43 - TARGET_ARCH=amd64 > TB --- 2012-10-16 22:27:43 - TZ=UTC > TB --- 2012-10-16 22:27:43 - __MAKE_CONF=/dev/null > TB --- 2012-10-16 22:27:43 - cd /src > TB --- 2012-10-16 22:27:43 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>>> Kernel build for LINT-NOINET started on Tue Oct 16 22:27:43 UTC 2012 >>>> stage 1: configuring the kernel >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3.1: making dependencies >>>> stage 3.2: building everything >>>> Kernel build for LINT-NOINET completed on Tue Oct 16 22:57:00 UTC 2012 > TB --- 2012-10-16 22:57:00 - cd /src/sys/amd64/conf > TB --- 2012-10-16 22:57:00 - /usr/sbin/config -m LINT-NOINET6 > TB --- 2012-10-16 22:57:01 - building LINT-NOINET6 kernel > TB --- 2012-10-16 22:57:01 - CROSS_BUILD_TESTING=YES > TB --- 2012-10-16 22:57:01 - MAKEOBJDIRPREFIX=/obj > TB --- 2012-10-16 22:57:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2012-10-16 22:57:01 - SRCCONF=/dev/null > TB --- 2012-10-16 22:57:01 - TARGET=amd64 > TB --- 2012-10-16 22:57:01 - TARGET_ARCH=amd64 > TB --- 2012-10-16 22:57:01 - TZ=UTC > TB --- 2012-10-16 22:57:01 - __MAKE_CONF=/dev/null > TB --- 2012-10-16 22:57:01 - cd /src > TB --- 2012-10-16 22:57:01 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>>> Kernel build for LINT-NOINET6 started on Tue Oct 16 22:57:01 UTC 2012 >>>> stage 1: configuring the kernel >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3.1: making dependencies >>>> stage 3.2: building everything >>>> Kernel build for LINT-NOINET6 completed on Tue Oct 16 23:26:08 UTC 2012 > TB --- 2012-10-16 23:26:08 - cd /src/sys/amd64/conf > TB --- 2012-10-16 23:26:08 - /usr/sbin/config -m LINT-NOIP > TB --- 2012-10-16 23:26:08 - building LINT-NOIP kernel > TB --- 2012-10-16 23:26:08 - CROSS_BUILD_TESTING=YES > TB --- 2012-10-16 23:26:08 - MAKEOBJDIRPREFIX=/obj > TB --- 2012-10-16 23:26:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2012-10-16 23:26:08 - SRCCONF=/dev/null > TB --- 2012-10-16 23:26:08 - TARGET=amd64 > TB --- 2012-10-16 23:26:08 - TARGET_ARCH=amd64 > TB --- 2012-10-16 23:26:08 - TZ=UTC > TB --- 2012-10-16 23:26:08 - __MAKE_CONF=/dev/null > TB --- 2012-10-16 23:26:08 - cd /src > TB --- 2012-10-16 23:26:08 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>>> Kernel build for LINT-NOIP started on Tue Oct 16 23:26:08 UTC 2012 >>>> stage 1: configuring the kernel >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3.1: making dependencies >>>> stage 3.2: building everything >>>> Kernel build for LINT-NOIP completed on Tue Oct 16 23:52:41 UTC 2012 > TB --- 2012-10-16 23:52:41 - cd /src/sys/amd64/conf > TB --- 2012-10-16 23:52:41 - /usr/sbin/config -m LINT-VIMAGE > TB --- 2012-10-16 23:52:41 - building LINT-VIMAGE kernel > TB --- 2012-10-16 23:52:41 - CROSS_BUILD_TESTING=YES > TB --- 2012-10-16 23:52:41 - MAKEOBJDIRPREFIX=/obj > TB --- 2012-10-16 23:52:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin > TB --- 2012-10-16 23:52:41 - SRCCONF=/dev/null > TB --- 2012-10-16 23:52:41 - TARGET=amd64 > TB --- 2012-10-16 23:52:41 - TARGET_ARCH=amd64 > TB --- 2012-10-16 23:52:41 - TZ=UTC > TB --- 2012-10-16 23:52:41 - __MAKE_CONF=/dev/null > TB --- 2012-10-16 23:52:41 - cd /src > TB --- 2012-10-16 23:52:41 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>>> Kernel build for LINT-VIMAGE started on Tue Oct 16 23:52:41 UTC 2012 >>>> stage 1: configuring the kernel >>>> stage 2.1: cleaning up the object tree >>>> stage 2.2: rebuilding the object tree >>>> stage 2.3: build tools >>>> stage 3.1: making dependencies >>>> stage 3.2: building everything > [...] > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/ieee8023ad_lacp.c > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if.c > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_arcsubr.c > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_atmsubr.c > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_bridge.c > cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_clone.c > /src/sys/net/if_clone.c: In function 'if_clone_destroy': > /src/sys/net/if_clone.c:275: error: 'struct if_clone' has no member named 'type' > *** [if_clone.o] Error code 1 Untested, the below should fix it, right? Andreas Index: net/if_clone.c =================================================================== --- net/if_clone.c (revision 241626) +++ net/if_clone.c (working copy) @@ -272,7 +272,7 @@ if (ifc == NULL && !IS_DEFAULT_VNET(curvnet)) { CURVNET_SET_QUIET(vnet0); LIST_FOREACH(ifc, &V_if_cloners, ifc_list) - if (ifc->type == SIMPLE) { + if (ifc->ifc_type == SIMPLE) { if (ifc_simple_match(ifc, name)) break; } else { From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 09:05:51 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1CAD0998; Wed, 17 Oct 2012 09:05:51 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id D00A88FC0A; Wed, 17 Oct 2012 09:05:50 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9H95nVD008563; Wed, 17 Oct 2012 05:05:49 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9H95nig008562; Wed, 17 Oct 2012 09:05:49 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 09:05:49 GMT Message-Id: <201210170905.q9H95nig008562@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc64/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 09:05:51 -0000 TB --- 2012-10-17 06:06:07 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 06:06:07 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 06:06:07 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2012-10-17 06:06:07 - cleaning the object tree TB --- 2012-10-17 06:08:07 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 06:08:07 - cd /tinderbox/HEAD/powerpc64/powerpc TB --- 2012-10-17 06:08:07 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 06:08:36 - /usr/local/bin/svn update /src TB --- 2012-10-17 06:08:42 - At svn revision 241626 TB --- 2012-10-17 06:08:43 - building world TB --- 2012-10-17 06:08:43 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 06:08:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 06:08:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 06:08:43 - SRCCONF=/dev/null TB --- 2012-10-17 06:08:43 - TARGET=powerpc TB --- 2012-10-17 06:08:43 - TARGET_ARCH=powerpc64 TB --- 2012-10-17 06:08:43 - TZ=UTC TB --- 2012-10-17 06:08:43 - __MAKE_CONF=/dev/null TB --- 2012-10-17 06:08:43 - cd /src TB --- 2012-10-17 06:08:43 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 06:08:48 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed Oct 17 08:57:47 UTC 2012 TB --- 2012-10-17 08:57:47 - generating LINT kernel config TB --- 2012-10-17 08:57:47 - cd /src/sys/powerpc/conf TB --- 2012-10-17 08:57:47 - /usr/bin/make -B LINT TB --- 2012-10-17 08:57:47 - cd /src/sys/powerpc/conf TB --- 2012-10-17 08:57:47 - /usr/sbin/config -m LINT TB --- 2012-10-17 08:57:47 - building LINT kernel TB --- 2012-10-17 08:57:47 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 08:57:47 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 08:57:47 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 08:57:47 - SRCCONF=/dev/null TB --- 2012-10-17 08:57:47 - TARGET=powerpc TB --- 2012-10-17 08:57:47 - TARGET_ARCH=powerpc64 TB --- 2012-10-17 08:57:47 - TZ=UTC TB --- 2012-10-17 08:57:47 - __MAKE_CONF=/dev/null TB --- 2012-10-17 08:57:47 - cd /src TB --- 2012-10-17 08:57:47 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 08:57:47 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/net/if_gif.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/net/if_gre.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/net/if_iso88025subr.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/net/if_lagg.c /src/sys/net/if_lagg.c: In function 'lagg_clone_create': /src/sys/net/if_lagg.c:291: error: 'CTLFLAG_RO' undeclared (first use in this function) /src/sys/net/if_lagg.c:291: error: (Each undeclared identifier is reported only once /src/sys/net/if_lagg.c:291: error: for each function it appears in.) *** [if_lagg.o] Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 09:05:49 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 09:05:49 - ERROR: failed to build LINT kernel TB --- 2012-10-17 09:05:49 - 8987.31 user 1173.06 system 10782.00 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 14:13:26 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1B246AE; Wed, 17 Oct 2012 14:13:26 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 968918FC08; Wed, 17 Oct 2012 14:13:26 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9HEDPLv004006; Wed, 17 Oct 2012 10:13:25 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9HEDP39003999; Wed, 17 Oct 2012 14:13:25 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 14:13:25 GMT Message-Id: <201210171413.q9HEDP39003999@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 14:13:26 -0000 TB --- 2012-10-17 09:10:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 09:10:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 09:10:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-17 09:10:00 - cleaning the object tree TB --- 2012-10-17 09:15:26 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 09:15:26 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-17 09:15:26 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 09:17:34 - /usr/local/bin/svn update /src TB --- 2012-10-17 09:17:40 - At svn revision 241627 TB --- 2012-10-17 09:17:41 - building world TB --- 2012-10-17 09:17:41 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 09:17:41 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 09:17:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 09:17:41 - SRCCONF=/dev/null TB --- 2012-10-17 09:17:41 - TARGET=i386 TB --- 2012-10-17 09:17:41 - TARGET_ARCH=i386 TB --- 2012-10-17 09:17:41 - TZ=UTC TB --- 2012-10-17 09:17:41 - __MAKE_CONF=/dev/null TB --- 2012-10-17 09:17:41 - cd /src TB --- 2012-10-17 09:17:41 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 09:17:46 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Oct 17 11:49:58 UTC 2012 TB --- 2012-10-17 11:49:58 - generating LINT kernel config TB --- 2012-10-17 11:49:58 - cd /src/sys/i386/conf TB --- 2012-10-17 11:49:58 - /usr/bin/make -B LINT TB --- 2012-10-17 11:49:58 - cd /src/sys/i386/conf TB --- 2012-10-17 11:49:58 - /usr/sbin/config -m LINT TB --- 2012-10-17 11:49:58 - building LINT kernel TB --- 2012-10-17 11:49:58 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 11:49:58 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 11:49:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 11:49:58 - SRCCONF=/dev/null TB --- 2012-10-17 11:49:58 - TARGET=i386 TB --- 2012-10-17 11:49:58 - TARGET_ARCH=i386 TB --- 2012-10-17 11:49:58 - TZ=UTC TB --- 2012-10-17 11:49:58 - __MAKE_CONF=/dev/null TB --- 2012-10-17 11:49:58 - cd /src TB --- 2012-10-17 11:49:58 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 11:49:58 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT completed on Wed Oct 17 12:24:41 UTC 2012 TB --- 2012-10-17 12:24:41 - cd /src/sys/i386/conf TB --- 2012-10-17 12:24:41 - /usr/sbin/config -m LINT-NOINET TB --- 2012-10-17 12:24:41 - building LINT-NOINET kernel TB --- 2012-10-17 12:24:41 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 12:24:41 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 12:24:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 12:24:41 - SRCCONF=/dev/null TB --- 2012-10-17 12:24:41 - TARGET=i386 TB --- 2012-10-17 12:24:41 - TARGET_ARCH=i386 TB --- 2012-10-17 12:24:41 - TZ=UTC TB --- 2012-10-17 12:24:41 - __MAKE_CONF=/dev/null TB --- 2012-10-17 12:24:41 - cd /src TB --- 2012-10-17 12:24:41 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>> Kernel build for LINT-NOINET started on Wed Oct 17 12:24:42 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET completed on Wed Oct 17 12:57:25 UTC 2012 TB --- 2012-10-17 12:57:25 - cd /src/sys/i386/conf TB --- 2012-10-17 12:57:25 - /usr/sbin/config -m LINT-NOINET6 TB --- 2012-10-17 12:57:25 - building LINT-NOINET6 kernel TB --- 2012-10-17 12:57:25 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 12:57:25 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 12:57:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 12:57:25 - SRCCONF=/dev/null TB --- 2012-10-17 12:57:25 - TARGET=i386 TB --- 2012-10-17 12:57:25 - TARGET_ARCH=i386 TB --- 2012-10-17 12:57:25 - TZ=UTC TB --- 2012-10-17 12:57:25 - __MAKE_CONF=/dev/null TB --- 2012-10-17 12:57:25 - cd /src TB --- 2012-10-17 12:57:25 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>> Kernel build for LINT-NOINET6 started on Wed Oct 17 12:57:25 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET6 completed on Wed Oct 17 13:29:44 UTC 2012 TB --- 2012-10-17 13:29:44 - cd /src/sys/i386/conf TB --- 2012-10-17 13:29:44 - /usr/sbin/config -m LINT-NOIP TB --- 2012-10-17 13:29:44 - building LINT-NOIP kernel TB --- 2012-10-17 13:29:44 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 13:29:44 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 13:29:44 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 13:29:44 - SRCCONF=/dev/null TB --- 2012-10-17 13:29:44 - TARGET=i386 TB --- 2012-10-17 13:29:44 - TARGET_ARCH=i386 TB --- 2012-10-17 13:29:44 - TZ=UTC TB --- 2012-10-17 13:29:44 - __MAKE_CONF=/dev/null TB --- 2012-10-17 13:29:44 - cd /src TB --- 2012-10-17 13:29:44 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>> Kernel build for LINT-NOIP started on Wed Oct 17 13:29:44 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOIP completed on Wed Oct 17 13:59:24 UTC 2012 TB --- 2012-10-17 13:59:24 - cd /src/sys/i386/conf TB --- 2012-10-17 13:59:24 - /usr/sbin/config -m LINT-VIMAGE TB --- 2012-10-17 13:59:25 - building LINT-VIMAGE kernel TB --- 2012-10-17 13:59:25 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 13:59:25 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 13:59:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 13:59:25 - SRCCONF=/dev/null TB --- 2012-10-17 13:59:25 - TARGET=i386 TB --- 2012-10-17 13:59:25 - TARGET_ARCH=i386 TB --- 2012-10-17 13:59:25 - TZ=UTC TB --- 2012-10-17 13:59:25 - __MAKE_CONF=/dev/null TB --- 2012-10-17 13:59:25 - cd /src TB --- 2012-10-17 13:59:25 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Wed Oct 17 13:59:25 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/ieee8023ad_lacp.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_arcsubr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_atmsubr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_bridge.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_clone.c /src/sys/net/if_clone.c: In function 'if_clone_destroy': /src/sys/net/if_clone.c:275: error: 'struct if_clone' has no member named 'type' *** [if_clone.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT-VIMAGE. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 14:13:25 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 14:13:25 - ERROR: failed to build LINT-VIMAGE kernel TB --- 2012-10-17 14:13:25 - 13818.16 user 1884.73 system 18204.52 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 14:43:05 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F64AEE7; Wed, 17 Oct 2012 14:43:05 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 219228FC08; Wed, 17 Oct 2012 14:43:04 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9HEh4Gd082436; Wed, 17 Oct 2012 10:43:04 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9HEh4hZ082425; Wed, 17 Oct 2012 14:43:04 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 14:43:04 GMT Message-Id: <201210171443.q9HEh4hZ082425@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 14:43:05 -0000 TB --- 2012-10-17 09:10:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 09:10:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 09:10:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-10-17 09:10:00 - cleaning the object tree TB --- 2012-10-17 09:18:10 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 09:18:10 - cd /tinderbox/HEAD/amd64/amd64 TB --- 2012-10-17 09:18:10 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 09:18:50 - /usr/local/bin/svn update /src TB --- 2012-10-17 09:18:56 - At svn revision 241627 TB --- 2012-10-17 09:18:57 - building world TB --- 2012-10-17 09:18:57 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 09:18:57 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 09:18:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 09:18:57 - SRCCONF=/dev/null TB --- 2012-10-17 09:18:57 - TARGET=amd64 TB --- 2012-10-17 09:18:57 - TARGET_ARCH=amd64 TB --- 2012-10-17 09:18:57 - TZ=UTC TB --- 2012-10-17 09:18:57 - __MAKE_CONF=/dev/null TB --- 2012-10-17 09:18:57 - cd /src TB --- 2012-10-17 09:18:57 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 09:19:02 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed Oct 17 12:26:39 UTC 2012 TB --- 2012-10-17 12:26:39 - generating LINT kernel config TB --- 2012-10-17 12:26:39 - cd /src/sys/amd64/conf TB --- 2012-10-17 12:26:39 - /usr/bin/make -B LINT TB --- 2012-10-17 12:26:39 - cd /src/sys/amd64/conf TB --- 2012-10-17 12:26:39 - /usr/sbin/config -m LINT TB --- 2012-10-17 12:26:39 - building LINT kernel TB --- 2012-10-17 12:26:39 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 12:26:39 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 12:26:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 12:26:39 - SRCCONF=/dev/null TB --- 2012-10-17 12:26:39 - TARGET=amd64 TB --- 2012-10-17 12:26:39 - TARGET_ARCH=amd64 TB --- 2012-10-17 12:26:39 - TZ=UTC TB --- 2012-10-17 12:26:39 - __MAKE_CONF=/dev/null TB --- 2012-10-17 12:26:39 - cd /src TB --- 2012-10-17 12:26:39 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 12:26:39 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT completed on Wed Oct 17 13:00:13 UTC 2012 TB --- 2012-10-17 13:00:13 - cd /src/sys/amd64/conf TB --- 2012-10-17 13:00:13 - /usr/sbin/config -m LINT-NOINET TB --- 2012-10-17 13:00:13 - building LINT-NOINET kernel TB --- 2012-10-17 13:00:13 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 13:00:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 13:00:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 13:00:13 - SRCCONF=/dev/null TB --- 2012-10-17 13:00:13 - TARGET=amd64 TB --- 2012-10-17 13:00:13 - TARGET_ARCH=amd64 TB --- 2012-10-17 13:00:13 - TZ=UTC TB --- 2012-10-17 13:00:13 - __MAKE_CONF=/dev/null TB --- 2012-10-17 13:00:13 - cd /src TB --- 2012-10-17 13:00:13 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>> Kernel build for LINT-NOINET started on Wed Oct 17 13:00:13 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET completed on Wed Oct 17 13:30:16 UTC 2012 TB --- 2012-10-17 13:30:16 - cd /src/sys/amd64/conf TB --- 2012-10-17 13:30:16 - /usr/sbin/config -m LINT-NOINET6 TB --- 2012-10-17 13:30:16 - building LINT-NOINET6 kernel TB --- 2012-10-17 13:30:16 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 13:30:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 13:30:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 13:30:16 - SRCCONF=/dev/null TB --- 2012-10-17 13:30:16 - TARGET=amd64 TB --- 2012-10-17 13:30:16 - TARGET_ARCH=amd64 TB --- 2012-10-17 13:30:16 - TZ=UTC TB --- 2012-10-17 13:30:16 - __MAKE_CONF=/dev/null TB --- 2012-10-17 13:30:16 - cd /src TB --- 2012-10-17 13:30:16 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>> Kernel build for LINT-NOINET6 started on Wed Oct 17 13:30:16 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET6 completed on Wed Oct 17 14:00:43 UTC 2012 TB --- 2012-10-17 14:00:43 - cd /src/sys/amd64/conf TB --- 2012-10-17 14:00:43 - /usr/sbin/config -m LINT-NOIP TB --- 2012-10-17 14:00:43 - building LINT-NOIP kernel TB --- 2012-10-17 14:00:43 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 14:00:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 14:00:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 14:00:43 - SRCCONF=/dev/null TB --- 2012-10-17 14:00:43 - TARGET=amd64 TB --- 2012-10-17 14:00:43 - TARGET_ARCH=amd64 TB --- 2012-10-17 14:00:43 - TZ=UTC TB --- 2012-10-17 14:00:43 - __MAKE_CONF=/dev/null TB --- 2012-10-17 14:00:43 - cd /src TB --- 2012-10-17 14:00:43 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>> Kernel build for LINT-NOIP started on Wed Oct 17 14:00:43 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOIP completed on Wed Oct 17 14:29:38 UTC 2012 TB --- 2012-10-17 14:29:38 - cd /src/sys/amd64/conf TB --- 2012-10-17 14:29:38 - /usr/sbin/config -m LINT-VIMAGE TB --- 2012-10-17 14:29:38 - building LINT-VIMAGE kernel TB --- 2012-10-17 14:29:38 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 14:29:38 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 14:29:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 14:29:38 - SRCCONF=/dev/null TB --- 2012-10-17 14:29:38 - TARGET=amd64 TB --- 2012-10-17 14:29:38 - TARGET_ARCH=amd64 TB --- 2012-10-17 14:29:38 - TZ=UTC TB --- 2012-10-17 14:29:38 - __MAKE_CONF=/dev/null TB --- 2012-10-17 14:29:38 - cd /src TB --- 2012-10-17 14:29:38 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Wed Oct 17 14:29:38 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/ieee8023ad_lacp.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_arcsubr.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_atmsubr.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_bridge.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_clone.c /src/sys/net/if_clone.c: In function 'if_clone_destroy': /src/sys/net/if_clone.c:275: error: 'struct if_clone' has no member named 'type' *** [if_clone.o] Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT-VIMAGE. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 14:43:04 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 14:43:04 - ERROR: failed to build LINT-VIMAGE kernel TB --- 2012-10-17 14:43:04 - 14961.03 user 2145.52 system 19983.41 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 17:16:10 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D64DDA7D; Wed, 17 Oct 2012 17:16:10 +0000 (UTC) (envelope-from oleg.moskalenko@citrix.com) Received: from SMTP.CITRIX.COM (smtp.citrix.com [66.165.176.89]) by mx1.freebsd.org (Postfix) with ESMTP id 5D6608FC08; Wed, 17 Oct 2012 17:16:10 +0000 (UTC) X-IronPort-AV: E=Sophos;i="4.80,602,1344211200"; d="scan'208,217";a="41544866" Received: from sjcpmailmx01.citrite.net ([10.216.14.74]) by FTLPIPO01.CITRIX.COM with ESMTP/TLS/RC4-MD5; 17 Oct 2012 17:11:17 +0000 Received: from SJCPMAILBOX01.citrite.net ([10.216.4.72]) by SJCPMAILMX01.citrite.net ([10.216.14.74]) with mapi; Wed, 17 Oct 2012 10:11:16 -0700 From: Oleg Moskalenko To: 'Dennis Glatting' , Gabor Kovesdan Date: Wed, 17 Oct 2012 10:11:16 -0700 Subject: RE: [HEADSUP] Upcoming GNU sort removal Thread-Topic: [HEADSUP] Upcoming GNU sort removal Thread-Index: Ac2iptHPMudmEQKYRu21xdXXxdsWggJ41Shg Message-ID: <031222CBCF33214AB2EB4ABA279428A3012CA5381C0F@SJCPMAILBOX01.citrite.net> References: <506D6AA3.7010504@FreeBSD.org> <1349362250.83035.3.camel@btw.pki2.com> <506DB65D.7000009@FreeBSD.org> <1349406553.89315.5.camel@btw.pki2.com> In-Reply-To: <1349406553.89315.5.camel@btw.pki2.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: "current@FreeBSD.org" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 17:16:10 -0000 Q3VycmVudGx5IHRoZSBzb3J0IHN0cnVjdHVyZXMgaW4gdGhlIHNvcnQgdXRpbGl0eSB1c2UgMzIt Yml0cyBjb3VudGVycy4gV2l0aCBUYiBmaWxlcywgdGhpcyBtYXkgYmUgdGhlIGxpbWl0YXRpb24g cG9pbnQuIEkgY2FuIHRha2UgYSBsb29rIGludG8gZml4aW5nIHRoYXQuDQoNCk9sZWcNCg0KRnJv bTogRGVubmlzIEdsYXR0aW5nIFttYWlsdG86ZnJlZWJzZEBwZW54LmNvbV0NClNlbnQ6IFRodXJz ZGF5LCBPY3RvYmVyIDA0LCAyMDEyIDg6MDkgUE0NClRvOiBHYWJvciBLb3Zlc2Rhbg0KQ2M6IGN1 cnJlbnRARnJlZUJTRC5vcmc7IE9sZWcgTW9za2FsZW5rbw0KU3ViamVjdDogUmU6IFtIRUFEU1VQ XSBVcGNvbWluZyBHTlUgc29ydCByZW1vdmFsDQoNCk9uIFRodSwgMjAxMi0xMC0wNCBhdCAxODox NiArMDIwMCwgR2Fib3IgS292ZXNkYW4gd3JvdGU6DQoNCg0KDQpFbSAwNC0xMC0yMDEyIDE2OjUw LCBEZW5uaXMgR2xhdHRpbmcgZXNjcmV2ZXU6DQoNCj4gT24gVGh1LCAyMDEyLTEwLTA0IGF0IDEy OjUzICswMjAwLCBHYWJvciBLb3Zlc2RhbiB3cm90ZToNCg0KPj4gPiBIaSwNCg0KPj4gPg0KDQo+ PiA+IGl0IGhhcyBiZWVuIG1vcmUgdGhhbiAzIG1vbnRocyBhZ28gdGhhdCBCU0Qgc29ydCBiZWNh bWUgZGVmYXVsdCBpbiBIRUFEDQoNCj4+ID4gYW5kIG5vIHNlcmlvdXMgY29tcGxhaW50cyBoYXZl IGJlZW4gcmFpc2VkIGFnYWluc3QgaXQgc2luY2UgdGhlbiBzbyBJDQoNCj4+ID4gcGxhbiB0byBw ZXJtYW5lbnRseSByZW1vdmUgR05VIHNvcnQgZnJvbSBoZWFkIGluIHRoZSBuZXh0IGRheXMuIElm IHlvdQ0KDQo+PiA+IGhhdmUgYW55IG9iamVjdGlvbiwgcGxlYXNlIHJhaXNlIGl0IG5vdy4NCg0K Pj4gPg0KDQo+IEluaXRpYWxseSBJIGhhZCBwcm9ibGVtcyB3aXRoIG11bHRpIFRCIGZpbGVzICgt LXVuaXF1ZSwgZml2ZSB0byB0ZW4NCg0KPiBmaWxlcykgYnV0IEkgaGF2ZW4ndCBoYWQgdG8gZG8g dGhhdCBpbiB0d28oPykgbW9udGhzLiBJIHdpbGwgYmUgZ2V0dGluZw0KDQo+IGJhY2sgdG8gdGhh dCBwcm9qZWN0IGluIGEgbW9udGggb3Igc28uDQoNCj4NCg0KPiBJdCBjaGFsbGFuZ2VzIGEgc3lz dGVtJ3MgcmVzb3VyY2VzLiA6KQ0KDQoNCg0KQW5kIGRpZCBpdCBnbyBtdWNoIGJldHRlciB3aXRo IGJhc2UgR05VIHNvcnQ/IEl0J3MgcXVpdGUgYW4gZXh0cmVtZQ0KDQpjYXNlLi4uIDopIE11bHRp IEdCIGlzIGFsc28gcmFyZSBub3Qgc3BlYWtpbmcgYWJvdXQgbXVsdGkgVEIuLi4NCg0KDQoNClll cy4gSG93ZXZlciBteSBwcm9ibGVtIG5vdyBpcyBaRlMgc3RhYmlsaXR5IC0tIHR5cGljYWxseSBs b2NraW5nIHVwLCBjYXNlIGV4YW1wbGUgdG9kYXk6DQoNCg0KbGFzdCBwaWQ6IDY3OTk4OyAgbG9h ZCBhdmVyYWdlczogIDAuMDAsICAwLjAwLCAgMC4wMCAgICB1cCAxKzE5OjUwOjUxICAxOTowMjox MA0KODAgcHJvY2Vzc2VzOiAgMSBydW5uaW5nLCA3OSBzbGVlcGluZw0KQ1BVOiAgMC4wJSB1c2Vy LCAgMC4wJSBuaWNlLCAgMC4wJSBzeXN0ZW0sICAwLjAlIGludGVycnVwdCwgIDEwMCUgaWRsZQ0K TWVtOiAxNDZNIEFjdGl2ZSwgMjc2NU0gSW5hY3QsIDM1RyBXaXJlZCwgMzcxTSBCdWYsIDg2RyBG cmVlDQpBUkM6IDMyRyBUb3RhbCwgNDE0MU0gTVJVLCAyN0cgTUZVLCA1NU0gQW5vbiwgNDg1TSBI ZWFkZXIsIDYxNE0gT3RoZXINClN3YXA6IDIzM0cgVG90YWwsIDIzM0cgRnJlZQ0KDQogIFBJRCBV U0VSTkFNRSAgICBUSFIgUFJJIE5JQ0UgICBTSVpFICAgIFJFUyBTVEFURSAgIEMgICBUSU1FICAg V0NQVSBDT01NQU5EDQoxNzUxNyByb290ICAgICAgICAgMTcgIDQyICAgIDQgICAyMTdNICAgMTI4 TSB0eC0+dHggMjEgIDI1LjNIICAwLjAwJSBwYnppcDINCjE3NTY4IHJvb3QgICAgICAgICAxNyAg NTIgICAgNCAgIDIwMU0gICAxMTZNIHR4LT50eCAyNCAgMjUuMkggIDAuMDAlIHBiemlwMg0KMTc1 MDggcm9vdCAgICAgICAgIDE3ICA0NiAgICA0ICAgMjAxTSAgIDExNk0gdHgtPnR4IDMzICAyNC42 SCAgMC4wMCUgcGJ6aXAyDQoxNzU0NCByb290ICAgICAgICAgMTcgIDUyICAgIDQgICAyMDVNICAg MTIwTSB0eC0+dHggMzcgIDI0LjZIICAwLjAwJSBwYnppcDINCjE3NTMyIHJvb3QgICAgICAgICAx NyAgNTIgICAgNCAgIDIwOU0gICAxMjNNIHR4LT50eCAzNSAgMjQuNUggIDAuMDAlIHBiemlwMg0K DQpldGMuDQo= From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 17:24:21 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C9B96E95 for ; Wed, 17 Oct 2012 17:24:21 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from micro.madpilot.net (micro.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 62FCE8FC08 for ; Wed, 17 Oct 2012 17:24:21 +0000 (UTC) Received: from micro.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP id 3XhgH74Rsbz2xW for ; Wed, 17 Oct 2012 19:24:19 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=madpilot.net; h= content-transfer-encoding:content-type:content-type:subject :subject:mime-version:user-agent:from:from:date:date:message-id :received:received; s=mail; t=1350494657; x=1352309058; bh=2nMms ultHN3i6OlpZKizCE3fGX3UHRC5sYmmM3xsWzE=; b=XVGpfW9g0ekQwU+Q6xk/t TIjP21cPYrivEdNzvzbYiaSFABGH+lWWZui1ZvXeGEyV6fkyYIznHPI321+Zj7wh QutZ+zqWBLgRSloAhTyo0JqM9jrIwVvim8PGIR5Sky8yxMMh8amc+3B0M5iYvfLH LNvhdekoR54fmaGrybO0PQ= X-Virus-Scanned: amavisd-new at madpilot.net Received: from micro.madpilot.net ([127.0.0.1]) by micro.madpilot.net (micro.madpilot.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WGPOV-3Ecx29 for ; Wed, 17 Oct 2012 19:24:17 +0200 (CEST) Received: from marvin.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP for ; Wed, 17 Oct 2012 19:24:17 +0200 (CEST) Message-ID: <507EE9C1.7060800@madpilot.net> Date: Wed, 17 Oct 2012 19:24:17 +0200 From: Guido Falsi User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 To: "current@FreeBSD.org" Subject: Regression with ZFS on recent current Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 17:24:21 -0000 Hi! While testing portshaker I found a regression in latest current. portshaker depends on ZFS(when enabling ZFS support) remounting filesystems on the fly when changing the mountpoint property. This is working as expected on 9.x while on 10-current is not working. Problem has appeared sometime before October 3rd. Here is some sample output from a9.x machine and a 10-current one: root@micro:~ [0]# uname -a FreeBSD micro.madpilot.net 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 r239180: Sat Aug 11 00:14:47 CEST 2012 root@micro.madpilot.net:/usr/obj/usr/src/sys/MICRO amd64 root@micro:~ [0]# zfs create tank/test root@micro:~ [0]# touch /test/baz root@micro:~ [0]# zfs set mountpoint=/foo tank/test root@micro:~ [0]# ls -ld /foo drwxr-xr-x 2 root wheel 3 Oct 17 19:18 /foo root@micro:~ [0]# ls -l /foo/ total 1 -rw-r--r-- 1 root wheel 0 Oct 17 19:18 baz root@micro:~ [0]# zfs list tank/test NAME USED AVAIL REFER MOUNTPOINT tank/test 144K 826G 144K /foo root@marvin:~ [0]# uname -a FreeBSD marvin.madpilot.net 10.0-CURRENT FreeBSD 10.0-CURRENT #7 r241638: Wed Oct 17 14:33:18 CEST 2012 root@marvin.madpilot.net:/usr/obj/usr/src/sys/MARVIN amd64 root@marvin:~ [0]# zfs create tank/test root@marvin:~ [0]# touch /test/baz root@marvin:~ [0]# zfs set mountpoint=/foo tank/test root@marvin:~ [0]# ls -ld /foo ls: /foo: No such file or directory root@marvin:~ [1]# ls -l /foo/ ls: /foo/: No such file or directory root@marvin:~ [1]# ls -ld /test drwxr-xr-x 2 root wheel 3 Oct 17 19:19 /test root@marvin:~ [0]# zfs list tank/test NAME USED AVAIL REFER MOUNTPOINT tank/test 31K 240G 31K /foo Is this known? is the new behavior expected? Am I doing something stupid? Thanks in advance -- Guido Falsi From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 17:39:03 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F157F593 for ; Wed, 17 Oct 2012 17:39:03 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from micro.madpilot.net (micro.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 8A03D8FC14 for ; Wed, 17 Oct 2012 17:39:03 +0000 (UTC) Received: from micro.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP id 3Xhgc63wLPz2xg for ; Wed, 17 Oct 2012 19:39:02 +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=1350495537; x=1352309938; bh=r/A/qMkDTh10umN8vuESgaG6B7DCwquBRcHv6UD/OmU=; b= Q+52+dVCfx5yxDJc6258IJNdTq14HOdhvsJFecOz3CrFPpv2kA/BXRj8Ms9QNVMa RB0oQU5L4MJblqQTfAA48/xfy78fDeeB8grSgOwcZC+2BPQBrhgsCmB3gE6fRNlv WvuZv7I8I8VuD0DGP6UZyXx+mJ3iE1/CkCbuB0awHLI= X-Virus-Scanned: amavisd-new at madpilot.net Received: from micro.madpilot.net ([127.0.0.1]) by micro.madpilot.net (micro.madpilot.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id luLtDQaL9BKk for ; Wed, 17 Oct 2012 19:38:57 +0200 (CEST) Received: from marvin.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP for ; Wed, 17 Oct 2012 19:38:57 +0200 (CEST) Message-ID: <507EED30.5090607@madpilot.net> Date: Wed, 17 Oct 2012 19:38:56 +0200 From: Guido Falsi User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: Re: Regression with ZFS on recent current References: <507EE9C1.7060800@madpilot.net> In-Reply-To: <507EE9C1.7060800@madpilot.net> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 17:39:04 -0000 On 10/17/12 19:24, Guido Falsi wrote: > Hi! > > While testing portshaker I found a regression in latest current. > > portshaker depends on ZFS(when enabling ZFS support) remounting > filesystems on the fly when changing the mountpoint property. This is > working as expected on 9.x while on 10-current is not working. Problem > has appeared sometime before October 3rd. > > Here is some sample output from a9.x machine and a 10-current one: Forgot to add some information, both machines have root on ZFS, and the mountpoint property of the main ZFS (tank for both) is set to "/". The problem should be anyway reproducible on a different ZFS setup without root when changing the mountpoint property of an already mounted ZFS. -- Guido Falsi From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 18:41:06 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 96D94ED1 for ; Wed, 17 Oct 2012 18:41:06 +0000 (UTC) (envelope-from jim.harris@gmail.com) Received: from mail-vc0-f182.google.com (mail-vc0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3D1138FC08 for ; Wed, 17 Oct 2012 18:41:06 +0000 (UTC) Received: by mail-vc0-f182.google.com with SMTP id fw7so10803822vcb.13 for ; Wed, 17 Oct 2012 11:41:05 -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=ZNIetv5xUK5rZQdTNGFb6FaEmnByjk9ojZx2oeUuqk8=; b=KyzblM1ZTW0qqykDWweN8WZJQgGg20DFTM8vjB5nu8oYtgogKVIep/ip7rxHLwuTVp n4xjYPB8tyTbBVgX1xzybI6Xafx2OwTO55nxoqSaPo8MjPHWpousxt+tmI3xsD3onNgB 966p8BZFukHYH6h2P8Dn2ZeZw/HVTbYnk4slbMc3Li6HFPTjN5I+ZtQxl8p5pQD2iCQy EyKGrfaA4Sb/0RDpaUV4upL1VgtyPpGmLM7kikKUPbTpkqRJECjVLEZDJnCB1PS7nRM2 fVG5L749Li/6sEXMr9YVv9texr51h+lNa13bIUx+MaBI+8tvr/pQygjpQv4Ld1b+R16c 434g== MIME-Version: 1.0 Received: by 10.58.244.99 with SMTP id xf3mr11157303vec.21.1350499265113; Wed, 17 Oct 2012 11:41:05 -0700 (PDT) Received: by 10.58.225.2 with HTTP; Wed, 17 Oct 2012 11:41:05 -0700 (PDT) In-Reply-To: References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> Date: Wed, 17 Oct 2012 11:41:05 -0700 Message-ID: Subject: Re: [CFT]hwpmc update for sandybridge-e From: Jim Harris To: hiren panchasara Content-Type: text/plain; charset=ISO-8859-1 Cc: Davide Italiano , freebsd-current , Fabien Thomas X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 18:41:06 -0000 On Mon, Oct 15, 2012 at 5:49 PM, hiren panchasara wrote: > > Thanks Fabien for getting back quickly. As I am not clear about uncore > support, I've removed it entirely as you suggested. I've tried to > incorporate other comments too. > > New set of diffs, pmccontrol and pmctest.py results are here: > > http://www.strugglingcoder.info/patches/hwpmc_sbx_2.txt > http://www.strugglingcoder.info/patches/pmccontrol_2.txt > http://www.strugglingcoder.info/patches/pmctestpy_2.txt > > I now have following event counters failing from pmctest.py script: > > CYCLE_ACTIVITY.CYCLES_L2_PENDING > BACLEARS.ANY > L2_TRANS.DEMAND_DATA_RD > L2_TRANS.RF0 > SQ_MISC.SPLIT_LOCK Hi Hiren, With your patch, I see different event counters failing on my SNB Xeon system: CYCLE_ACTIVITY.CYCLES_L2_PENDING - this is due to missing IAP_F_FM which Fabien already pointed out. There are 5 total that need this added - this one is the only one that fails from the pmctest.py script because it's the only one with bit 0 set (IAP_M_CORE) in its flags which causes a hard pmc_allocation failure. MEM_LOAD_UOPS_LLC_MISS_RETIRED.LOCAL_DRAM - this is due to adding this event to the SNB Xeon event list in the header file, but IAP_F_SBX is missing from the associated IAPDESCR for D3H_01H in hwpmc_core.c. It's not clear to me why you are seeing failures on those other events. Maybe make sure libpmc/pmcstat/pmccontrol/hwpmc are all in sync? Thanks for working on this! Regards, -Jim > I am not quite sure why these are failing. Will continue looking into it. > > Appreciate your help, > Hiren > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 21:05:39 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 09B03197 for ; Wed, 17 Oct 2012 21:05:39 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 525348FC0C for ; Wed, 17 Oct 2012 21:05:38 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id AAA09831; Thu, 18 Oct 2012 00:05:36 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1TOao3-0000RL-Vs; Thu, 18 Oct 2012 00:05:36 +0300 Message-ID: <507F1D9E.3010803@FreeBSD.org> Date: Thu, 18 Oct 2012 00:05:34 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 To: Guido Falsi Subject: Re: Regression with ZFS on recent current References: <507EE9C1.7060800@madpilot.net> In-Reply-To: <507EE9C1.7060800@madpilot.net> X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "current@FreeBSD.org" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 21:05:39 -0000 on 17/10/2012 20:24 Guido Falsi said the following: > Hi! > > While testing portshaker I found a regression in latest current. > > portshaker depends on ZFS(when enabling ZFS support) remounting > filesystems on the fly when changing the mountpoint property. This is > working as expected on 9.x while on 10-current is not working. Problem > has appeared sometime before October 3rd. Can you clarify what you mean but this date? That the problem didn't exist in head until recently? Can you name a date when the problem didn't exists in head then? > Here is some sample output from a9.x machine and a 10-current one: > > root@micro:~ [0]# uname -a > FreeBSD micro.madpilot.net 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 > r239180: Sat Aug 11 00:14:47 CEST 2012 > root@micro.madpilot.net:/usr/obj/usr/src/sys/MICRO amd64 > root@micro:~ [0]# zfs create tank/test > root@micro:~ [0]# touch /test/baz > root@micro:~ [0]# zfs set mountpoint=/foo tank/test > root@micro:~ [0]# ls -ld /foo > drwxr-xr-x 2 root wheel 3 Oct 17 19:18 /foo > root@micro:~ [0]# ls -l /foo/ > total 1 > -rw-r--r-- 1 root wheel 0 Oct 17 19:18 baz > root@micro:~ [0]# zfs list tank/test > NAME USED AVAIL REFER MOUNTPOINT > tank/test 144K 826G 144K /foo > > > root@marvin:~ [0]# uname -a > FreeBSD marvin.madpilot.net 10.0-CURRENT FreeBSD 10.0-CURRENT #7 > r241638: Wed Oct 17 14:33:18 CEST 2012 > root@marvin.madpilot.net:/usr/obj/usr/src/sys/MARVIN amd64 > root@marvin:~ [0]# zfs create tank/test > root@marvin:~ [0]# touch /test/baz > root@marvin:~ [0]# zfs set mountpoint=/foo tank/test > root@marvin:~ [0]# ls -ld /foo > ls: /foo: No such file or directory > root@marvin:~ [1]# ls -l /foo/ > ls: /foo/: No such file or directory > root@marvin:~ [1]# ls -ld /test > drwxr-xr-x 2 root wheel 3 Oct 17 19:19 /test > root@marvin:~ [0]# zfs list tank/test > NAME USED AVAIL REFER MOUNTPOINT > tank/test 31K 240G 31K /foo > > > Is this known? is the new behavior expected? > > Am I doing something stupid? > > Thanks in advance > -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 21:36:01 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CFBB2BB6; Wed, 17 Oct 2012 21:36:01 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 9B7838FC08; Wed, 17 Oct 2012 21:36:01 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9HLa0AQ058508; Wed, 17 Oct 2012 17:36:00 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9HLa0s1058469; Wed, 17 Oct 2012 21:36:00 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 21:36:00 GMT Message-Id: <201210172136.q9HLa0s1058469@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on ia64/ia64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 21:36:02 -0000 TB --- 2012-10-17 20:08:51 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 20:08:51 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 20:08:51 - starting HEAD tinderbox run for ia64/ia64 TB --- 2012-10-17 20:08:51 - cleaning the object tree TB --- 2012-10-17 20:08:51 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 20:08:51 - cd /tinderbox/HEAD/ia64/ia64 TB --- 2012-10-17 20:08:51 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 20:09:38 - /usr/local/bin/svn update /src TB --- 2012-10-17 20:09:44 - At svn revision 241646 TB --- 2012-10-17 20:09:45 - building world TB --- 2012-10-17 20:09:45 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 20:09:45 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 20:09:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 20:09:45 - SRCCONF=/dev/null TB --- 2012-10-17 20:09:45 - TARGET=ia64 TB --- 2012-10-17 20:09:45 - TARGET_ARCH=ia64 TB --- 2012-10-17 20:09:45 - TZ=UTC TB --- 2012-10-17 20:09:45 - __MAKE_CONF=/dev/null TB --- 2012-10-17 20:09:45 - cd /src TB --- 2012-10-17 20:09:45 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 20:09:50 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] building shared library snmp_hostres.so.6 sed -e 's%@MODPATH@%/usr/lib/%g' -e 's%@DEFPATH@%/usr/share/snmp/defs/%g' -e 's%@MIBSPATH@%/usr/share/snmp/mibs/%g' < /src/usr.sbin/bsnmpd/modules/snmp_hostres/snmp_hostres.3 | gzip -cn > snmp_hostres.3.gz ===> usr.sbin/bsnmpd/modules/snmp_mibII (all) cc -fpic -DPIC -O2 -pipe -I/src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/lib -I/src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmpd -DHAVE_ERR_H -DHAVE_GETADDRINFO -DHAVE_STRLCPY -DHAVE_SYS_TREE_H -I. -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c -o mibII.So /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c: In function 'mibif_reset_hc_timer': /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c:388: error: 'uintmax_t' undeclared (first use in this function) /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c:388: error: (Each undeclared identifier is reported only once /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c:388: error: for each function it appears in.) *** [mibII.So] Error code 1 Stop in /src/usr.sbin/bsnmpd/modules/snmp_mibII. *** [all] Error code 1 Stop in /src/usr.sbin/bsnmpd/modules. *** [all] Error code 1 Stop in /src/usr.sbin/bsnmpd. *** [all] Error code 1 Stop in /src/usr.sbin. *** [usr.sbin.all__D] Error code 1 Stop in /src. *** [everything] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 21:36:00 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 21:36:00 - ERROR: failed to build world TB --- 2012-10-17 21:36:00 - 4010.32 user 617.74 system 5228.68 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 21:45:35 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B2A47E3D; Wed, 17 Oct 2012 21:45:35 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id B44918FC14; Wed, 17 Oct 2012 21:45:34 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id AAA10240; Thu, 18 Oct 2012 00:45:29 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1TObQe-0000UF-Tu; Thu, 18 Oct 2012 00:45:28 +0300 Message-ID: <507F26F7.8090302@FreeBSD.org> Date: Thu, 18 Oct 2012 00:45:27 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 To: Guido Falsi , Martin Matuska Subject: Re: Regression with ZFS on recent current References: <507EE9C1.7060800@madpilot.net> <507F1D9E.3010803@FreeBSD.org> In-Reply-To: <507F1D9E.3010803@FreeBSD.org> X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "current@FreeBSD.org" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 21:45:35 -0000 on 18/10/2012 00:05 Andriy Gapon said the following: > on 17/10/2012 20:24 Guido Falsi said the following: >> Hi! >> >> While testing portshaker I found a regression in latest current. >> >> portshaker depends on ZFS(when enabling ZFS support) remounting >> filesystems on the fly when changing the mountpoint property. This is >> working as expected on 9.x while on 10-current is not working. Problem >> has appeared sometime before October 3rd. > > Can you clarify what you mean but this date? > That the problem didn't exist in head until recently? Can you name a date when > the problem didn't exists in head then? Oh, hmm, not sure if it is a bug that we imported from upstream or a porting mistake. Before r238391 do_prefix variable in zfs_prop_set (in cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c) was always initialized. Now it is either explicitly set to B_FALSE or left alone uninitialized. http://svnweb.freebsd.org/base/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c?r1=237119&r2=238391&pathrev=238391 >> Here is some sample output from a9.x machine and a 10-current one: >> >> root@micro:~ [0]# uname -a >> FreeBSD micro.madpilot.net 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 >> r239180: Sat Aug 11 00:14:47 CEST 2012 >> root@micro.madpilot.net:/usr/obj/usr/src/sys/MICRO amd64 >> root@micro:~ [0]# zfs create tank/test >> root@micro:~ [0]# touch /test/baz >> root@micro:~ [0]# zfs set mountpoint=/foo tank/test >> root@micro:~ [0]# ls -ld /foo >> drwxr-xr-x 2 root wheel 3 Oct 17 19:18 /foo >> root@micro:~ [0]# ls -l /foo/ >> total 1 >> -rw-r--r-- 1 root wheel 0 Oct 17 19:18 baz >> root@micro:~ [0]# zfs list tank/test >> NAME USED AVAIL REFER MOUNTPOINT >> tank/test 144K 826G 144K /foo >> >> >> root@marvin:~ [0]# uname -a >> FreeBSD marvin.madpilot.net 10.0-CURRENT FreeBSD 10.0-CURRENT #7 >> r241638: Wed Oct 17 14:33:18 CEST 2012 >> root@marvin.madpilot.net:/usr/obj/usr/src/sys/MARVIN amd64 >> root@marvin:~ [0]# zfs create tank/test >> root@marvin:~ [0]# touch /test/baz >> root@marvin:~ [0]# zfs set mountpoint=/foo tank/test >> root@marvin:~ [0]# ls -ld /foo >> ls: /foo: No such file or directory >> root@marvin:~ [1]# ls -l /foo/ >> ls: /foo/: No such file or directory >> root@marvin:~ [1]# ls -ld /test >> drwxr-xr-x 2 root wheel 3 Oct 17 19:19 /test >> root@marvin:~ [0]# zfs list tank/test >> NAME USED AVAIL REFER MOUNTPOINT >> tank/test 31K 240G 31K /foo >> >> >> Is this known? is the new behavior expected? >> >> Am I doing something stupid? >> >> Thanks in advance >> > > -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 22:02:43 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BBC39781; Wed, 17 Oct 2012 22:02:43 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 7CC2F8FC0C; Wed, 17 Oct 2012 22:02:43 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9HM2g7k014907; Wed, 17 Oct 2012 18:02:42 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9HM2gZk014901; Wed, 17 Oct 2012 22:02:42 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 22:02:42 GMT Message-Id: <201210172202.q9HM2gZk014901@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on mips/mips Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 22:02:44 -0000 TB --- 2012-10-17 21:03:07 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 21:03:07 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 21:03:07 - starting HEAD tinderbox run for mips/mips TB --- 2012-10-17 21:03:07 - cleaning the object tree TB --- 2012-10-17 21:03:07 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 21:03:07 - cd /tinderbox/HEAD/mips/mips TB --- 2012-10-17 21:03:07 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 21:04:30 - /usr/local/bin/svn update /src TB --- 2012-10-17 21:04:36 - At svn revision 241649 TB --- 2012-10-17 21:04:37 - building world TB --- 2012-10-17 21:04:37 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 21:04:37 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 21:04:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 21:04:37 - SRCCONF=/dev/null TB --- 2012-10-17 21:04:37 - TARGET=mips TB --- 2012-10-17 21:04:37 - TARGET_ARCH=mips TB --- 2012-10-17 21:04:37 - TZ=UTC TB --- 2012-10-17 21:04:37 - __MAKE_CONF=/dev/null TB --- 2012-10-17 21:04:37 - cd /src TB --- 2012-10-17 21:04:37 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 21:04:43 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] building shared library snmp_hostres.so.6 sed -e 's%@MODPATH@%/usr/lib/%g' -e 's%@DEFPATH@%/usr/share/snmp/defs/%g' -e 's%@MIBSPATH@%/usr/share/snmp/mibs/%g' < /src/usr.sbin/bsnmpd/modules/snmp_hostres/snmp_hostres.3 | gzip -cn > snmp_hostres.3.gz ===> usr.sbin/bsnmpd/modules/snmp_mibII (all) cc -fpic -DPIC -O -pipe -G0 -I/src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/lib -I/src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmpd -DHAVE_ERR_H -DHAVE_GETADDRINFO -DHAVE_STRLCPY -DHAVE_SYS_TREE_H -I. -std=gnu99 -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c -o mibII.So /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c: In function 'mibif_reset_hc_timer': /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c:388: error: 'uintmax_t' undeclared (first use in this function) /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c:388: error: (Each undeclared identifier is reported only once /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c:388: error: for each function it appears in.) *** [mibII.So] Error code 1 Stop in /src/usr.sbin/bsnmpd/modules/snmp_mibII. *** [all] Error code 1 Stop in /src/usr.sbin/bsnmpd/modules. *** [all] Error code 1 Stop in /src/usr.sbin/bsnmpd. *** [all] Error code 1 Stop in /src/usr.sbin. *** [usr.sbin.all__D] Error code 1 Stop in /src. *** [everything] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 22:02:42 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 22:02:42 - ERROR: failed to build world TB --- 2012-10-17 22:02:42 - 2439.37 user 520.34 system 3575.38 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 22:26:27 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CEE6ECE5; Wed, 17 Oct 2012 22:26:27 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from micro.madpilot.net (micro.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 64DC08FC0A; Wed, 17 Oct 2012 22:26:27 +0000 (UTC) Received: from micro.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP id 3Xhnzk0BCCz30W; Thu, 18 Oct 2012 00:26:26 +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=1350512783; x=1352327184; bh=IvTtR8BAj59qMLLzOOHUiV18clQj5NNAPZAd9R5+ckk=; b= K6zayS+WCMzMwkzrBaRRhHoGkbOsqn5ZH+/0z1v7eh/uhyXFK6HQEzp/Sl9ZHp0D sVNrciLxQjqhPscjEDBwraPTL5I0cmoMNp+Jtb8F0mVOXgRJL59up459uXvFYaGQ eSLLRhX7dRlUG36pDw6AomI++TVZ4F3jXfOXLDGGM4Q= X-Virus-Scanned: amavisd-new at madpilot.net Received: from micro.madpilot.net ([127.0.0.1]) by micro.madpilot.net (micro.madpilot.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dIyt_5F2JP5i; Thu, 18 Oct 2012 00:26:23 +0200 (CEST) Received: from marvin.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP; Thu, 18 Oct 2012 00:26:23 +0200 (CEST) Message-ID: <507F308F.90203@madpilot.net> Date: Thu, 18 Oct 2012 00:26:23 +0200 From: Guido Falsi User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 To: Andriy Gapon Subject: Re: Regression with ZFS on recent current References: <507EE9C1.7060800@madpilot.net> <507F1D9E.3010803@FreeBSD.org> <507F26F7.8090302@FreeBSD.org> In-Reply-To: <507F26F7.8090302@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: Martin Matuska , "current@FreeBSD.org" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 22:26:27 -0000 On 10/17/12 23:45, Andriy Gapon wrote: > on 18/10/2012 00:05 Andriy Gapon said the following: >> on 17/10/2012 20:24 Guido Falsi said the following: >>> Hi! >>> >>> While testing portshaker I found a regression in latest current. >>> >>> portshaker depends on ZFS(when enabling ZFS support) remounting >>> filesystems on the fly when changing the mountpoint property. This is >>> working as expected on 9.x while on 10-current is not working. Problem >>> has appeared sometime before October 3rd. >> >> Can you clarify what you mean but this date? >> That the problem didn't exist in head until recently? Can you name a date when >> the problem didn't exists in head then? Sorry, I was not clear. I was using -current from October 3rd up to this morning, when I noticed this problem. I tried updating to the latest sources to see if this was already solved by any of the recent commits to zfs. I can't pin down a date when -current was working right away. > > Oh, hmm, not sure if it is a bug that we imported from upstream or a porting > mistake. Before r238391 do_prefix variable in zfs_prop_set (in > cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c) was always initialized. > Now it is either explicitly set to B_FALSE or left alone uninitialized. > > http://svnweb.freebsd.org/base/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c?r1=237119&r2=238391&pathrev=238391 > I can try reverting this diff and see if it solves the problem. Thanks for pointing out this commit. I'll report back as soon as I have tested this. -- Guido Falsi From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 22:28:56 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 14730E44; Wed, 17 Oct 2012 22:28:56 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from micro.madpilot.net (micro.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id 9C2A38FC08; Wed, 17 Oct 2012 22:28:55 +0000 (UTC) Received: from micro.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP id 3Xhp2Z4dbKz30Y; Thu, 18 Oct 2012 00:28:54 +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=1350512932; x=1352327333; bh=+y+Tg0WCMpHWmzo097XZryTiyUYsKyYJBFK5YieZG/g=; b= lEmzrlk0a5wa37Jgc5sJuKAtPFL1ySnUQUpukmxNgo4vavCHTBiXeq6USnF8s7cB pzyuUXBqhKJKN+meiSCpRnlL6WuBUaY968v4W0xda2qQREAjRZq4uGDAnreo7e5h WMPuNP51vOs6FcySYkJznkvNs+4sAXdoGyVTNz81etk= X-Virus-Scanned: amavisd-new at madpilot.net Received: from micro.madpilot.net ([127.0.0.1]) by micro.madpilot.net (micro.madpilot.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id It-slm74CZsa; Thu, 18 Oct 2012 00:28:52 +0200 (CEST) Received: from marvin.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP; Thu, 18 Oct 2012 00:28:52 +0200 (CEST) Message-ID: <507F3124.6060806@madpilot.net> Date: Thu, 18 Oct 2012 00:28:52 +0200 From: Guido Falsi User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 To: Andriy Gapon Subject: Re: Regression with ZFS on recent current References: <507EE9C1.7060800@madpilot.net> <507F1D9E.3010803@FreeBSD.org> <507F26F7.8090302@FreeBSD.org> <507F308F.90203@madpilot.net> In-Reply-To: <507F308F.90203@madpilot.net> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: Martin Matuska , "current@FreeBSD.org" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 22:28:56 -0000 On 10/18/12 00:26, Guido Falsi wrote: >> Oh, hmm, not sure if it is a bug that we imported from upstream or a porting >> mistake. Before r238391 do_prefix variable in zfs_prop_set (in >> cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c) was always initialized. >> Now it is either explicitly set to B_FALSE or left alone uninitialized. >> >> http://svnweb.freebsd.org/base/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c?r1=237119&r2=238391&pathrev=238391 >> > > I can try reverting this diff and see if it solves the problem. Thanks > for pointing out this commit. I'll report back as soon as I have tested > this. > I see a fix has already been committed. I'm updating my sources and trying again. Thank you a lot! -- Guido Falsi From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 22:44:35 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C999E8; Wed, 17 Oct 2012 22:44:35 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 650918FC16; Wed, 17 Oct 2012 22:44:35 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9HMiY2d056151; Wed, 17 Oct 2012 18:44:34 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9HMiY1J056150; Wed, 17 Oct 2012 22:44:34 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 22:44:34 GMT Message-Id: <201210172244.q9HMiY1J056150@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 22:44:35 -0000 TB --- 2012-10-17 17:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 17:50:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 17:50:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-17 17:50:00 - cleaning the object tree TB --- 2012-10-17 18:01:02 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 18:01:02 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-17 18:01:02 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 18:02:02 - /usr/local/bin/svn update /src TB --- 2012-10-17 18:02:12 - At svn revision 241642 TB --- 2012-10-17 18:02:13 - building world TB --- 2012-10-17 18:02:13 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 18:02:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 18:02:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 18:02:13 - SRCCONF=/dev/null TB --- 2012-10-17 18:02:13 - TARGET=i386 TB --- 2012-10-17 18:02:13 - TARGET_ARCH=i386 TB --- 2012-10-17 18:02:13 - TZ=UTC TB --- 2012-10-17 18:02:13 - __MAKE_CONF=/dev/null TB --- 2012-10-17 18:02:13 - cd /src TB --- 2012-10-17 18:02:13 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 18:02:19 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Wed Oct 17 20:26:50 UTC 2012 TB --- 2012-10-17 20:26:50 - generating LINT kernel config TB --- 2012-10-17 20:26:50 - cd /src/sys/i386/conf TB --- 2012-10-17 20:26:50 - /usr/bin/make -B LINT TB --- 2012-10-17 20:26:51 - cd /src/sys/i386/conf TB --- 2012-10-17 20:26:51 - /usr/sbin/config -m LINT TB --- 2012-10-17 20:26:51 - building LINT kernel TB --- 2012-10-17 20:26:51 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 20:26:51 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 20:26:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 20:26:51 - SRCCONF=/dev/null TB --- 2012-10-17 20:26:51 - TARGET=i386 TB --- 2012-10-17 20:26:51 - TARGET_ARCH=i386 TB --- 2012-10-17 20:26:51 - TZ=UTC TB --- 2012-10-17 20:26:51 - __MAKE_CONF=/dev/null TB --- 2012-10-17 20:26:51 - cd /src TB --- 2012-10-17 20:26:51 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 20:26:51 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT completed on Wed Oct 17 21:00:14 UTC 2012 TB --- 2012-10-17 21:00:14 - cd /src/sys/i386/conf TB --- 2012-10-17 21:00:14 - /usr/sbin/config -m LINT-NOINET TB --- 2012-10-17 21:00:14 - building LINT-NOINET kernel TB --- 2012-10-17 21:00:14 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 21:00:14 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 21:00:14 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 21:00:14 - SRCCONF=/dev/null TB --- 2012-10-17 21:00:14 - TARGET=i386 TB --- 2012-10-17 21:00:14 - TARGET_ARCH=i386 TB --- 2012-10-17 21:00:14 - TZ=UTC TB --- 2012-10-17 21:00:14 - __MAKE_CONF=/dev/null TB --- 2012-10-17 21:00:14 - cd /src TB --- 2012-10-17 21:00:14 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>> Kernel build for LINT-NOINET started on Wed Oct 17 21:00:14 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET completed on Wed Oct 17 21:32:10 UTC 2012 TB --- 2012-10-17 21:32:10 - cd /src/sys/i386/conf TB --- 2012-10-17 21:32:10 - /usr/sbin/config -m LINT-NOINET6 TB --- 2012-10-17 21:32:10 - building LINT-NOINET6 kernel TB --- 2012-10-17 21:32:10 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 21:32:10 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 21:32:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 21:32:10 - SRCCONF=/dev/null TB --- 2012-10-17 21:32:10 - TARGET=i386 TB --- 2012-10-17 21:32:10 - TARGET_ARCH=i386 TB --- 2012-10-17 21:32:10 - TZ=UTC TB --- 2012-10-17 21:32:10 - __MAKE_CONF=/dev/null TB --- 2012-10-17 21:32:10 - cd /src TB --- 2012-10-17 21:32:10 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>> Kernel build for LINT-NOINET6 started on Wed Oct 17 21:32:10 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET6 completed on Wed Oct 17 22:03:34 UTC 2012 TB --- 2012-10-17 22:03:34 - cd /src/sys/i386/conf TB --- 2012-10-17 22:03:34 - /usr/sbin/config -m LINT-NOIP TB --- 2012-10-17 22:03:34 - building LINT-NOIP kernel TB --- 2012-10-17 22:03:34 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 22:03:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 22:03:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 22:03:34 - SRCCONF=/dev/null TB --- 2012-10-17 22:03:34 - TARGET=i386 TB --- 2012-10-17 22:03:34 - TARGET_ARCH=i386 TB --- 2012-10-17 22:03:34 - TZ=UTC TB --- 2012-10-17 22:03:34 - __MAKE_CONF=/dev/null TB --- 2012-10-17 22:03:34 - cd /src TB --- 2012-10-17 22:03:34 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>> Kernel build for LINT-NOIP started on Wed Oct 17 22:03:34 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOIP completed on Wed Oct 17 22:31:34 UTC 2012 TB --- 2012-10-17 22:31:34 - cd /src/sys/i386/conf TB --- 2012-10-17 22:31:34 - /usr/sbin/config -m LINT-VIMAGE TB --- 2012-10-17 22:31:34 - building LINT-VIMAGE kernel TB --- 2012-10-17 22:31:34 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 22:31:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 22:31:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 22:31:34 - SRCCONF=/dev/null TB --- 2012-10-17 22:31:34 - TARGET=i386 TB --- 2012-10-17 22:31:34 - TARGET_ARCH=i386 TB --- 2012-10-17 22:31:34 - TZ=UTC TB --- 2012-10-17 22:31:34 - __MAKE_CONF=/dev/null TB --- 2012-10-17 22:31:34 - cd /src TB --- 2012-10-17 22:31:34 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Wed Oct 17 22:31:34 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/ieee8023ad_lacp.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_arcsubr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_atmsubr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_bridge.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_clone.c /src/sys/net/if_clone.c: In function 'if_clone_destroy': /src/sys/net/if_clone.c:275: error: 'struct if_clone' has no member named 'type' *** [if_clone.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT-VIMAGE. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 22:44:34 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 22:44:34 - ERROR: failed to build LINT-VIMAGE kernel TB --- 2012-10-17 22:44:34 - 13214.93 user 1831.42 system 17673.91 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 22:57:45 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D62B83BA for ; Wed, 17 Oct 2012 22:57:45 +0000 (UTC) (envelope-from hiren.panchasara@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 546AD8FC08 for ; Wed, 17 Oct 2012 22:57:44 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so3705049bkc.13 for ; Wed, 17 Oct 2012 15:57:44 -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=Uxf9uZOZDcqbxoYBfDxtj7AtTPPKNrOaH/+vQc4fWcg=; b=kto45l7InNXjg4lbRHWjdVPLL+win0FObaO08QsTPz+8/iOu/EPK9MDsZXrn3fE42c gbxYSg8g4vfYpEsVsAWTKs1eZ5Jx6LpqHrf4HMGReb/k5QRvS0wrkVUeDYH7TRameGsk pUvlBnTDn4aTBW3/7c6DUlZbVFdzBgeS2ZCR8MEdezB+X8M5Kk8FK2fF2jPwSUodJjm2 Zn5nAIYuXEmPndB838hPgmOMf7z8eSeuvE8MHcbNHrNmttKX8koN+AuXZhG9DNxpyyLG 1l2x4QowUbmGW9VeZrxXDdL+mVuyyJt0kFRQC4RmrArj3oCH/5pnjJq0oXLxUkkUA+Md MCSQ== MIME-Version: 1.0 Received: by 10.204.128.201 with SMTP id l9mr5574255bks.66.1350514663883; Wed, 17 Oct 2012 15:57:43 -0700 (PDT) Received: by 10.205.36.136 with HTTP; Wed, 17 Oct 2012 15:57:43 -0700 (PDT) In-Reply-To: References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> Date: Wed, 17 Oct 2012 15:57:43 -0700 Message-ID: Subject: Re: [CFT]hwpmc update for sandybridge-e From: hiren panchasara To: Jim Harris Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Davide Italiano , freebsd-current , Fabien Thomas X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 22:57:45 -0000 On Wed, Oct 17, 2012 at 11:41 AM, Jim Harris wrote: > On Mon, Oct 15, 2012 at 5:49 PM, hiren panchasara > wrote: > > > > > Thanks Fabien for getting back quickly. As I am not clear about uncore > > support, I've removed it entirely as you suggested. I've tried to > > incorporate other comments too. > > > > New set of diffs, pmccontrol and pmctest.py results are here: > > > > http://www.strugglingcoder.info/patches/hwpmc_sbx_2.txt > > http://www.strugglingcoder.info/patches/pmccontrol_2.txt > > http://www.strugglingcoder.info/patches/pmctestpy_2.txt > > > > I now have following event counters failing from pmctest.py script: > > > > CYCLE_ACTIVITY.CYCLES_L2_PENDING > > BACLEARS.ANY > > L2_TRANS.DEMAND_DATA_RD > > L2_TRANS.RF0 > > SQ_MISC.SPLIT_LOCK > > Hi Hiren, > > With your patch, I see different event counters failing on my SNB Xeon > system: > > CYCLE_ACTIVITY.CYCLES_L2_PENDING - this is due to missing IAP_F_FM > which Fabien already pointed out. There are 5 total that need this > added - this one is the only one that fails from the pmctest.py script > because it's the only one with bit 0 set (IAP_M_CORE) in its flags > which causes a hard pmc_allocation failure. > MEM_LOAD_UOPS_LLC_MISS_RETIRED.LOCAL_DRAM - this is due to adding this > event to the SNB Xeon event list in the header file, but IAP_F_SBX is > missing from the associated IAPDESCR for D3H_01H in hwpmc_core.c. > Thanks for the pointers Jim! It seems that everything works now with: http://www.strugglingcoder.info/patches/hwpmc_sbx_3.txt http://www.strugglingcoder.info/patches/pmccontrol_3.txt http://www.strugglingcoder.info/patches/pmctestpy_3.txt As it can be seen, I do not see any errors with the test script. I've also tried to take care of the sorting issues Fabien mentioned. Can you please give this a whirl? > > It's not clear to me why you are seeing failures on those other > events. Maybe make sure libpmc/pmcstat/pmccontrol/hwpmc are all in > sync? > I have a few questions regarding this. For my testing I am using hwpmc as a module. Problem is that any change to pmc_events.h is not reflected when I do: 1) rebuild /sys/modules/hwpmc - unload/load new module 2) rebuild /lib/libpmc/ 3) rebuild /usr.sbin/pmccontrol and pmcstat I have to do buildworld for changes in pmc_events.h to take effect. (which kind of explains my delayed responses :D ) I know I am missing something here and there should be a better way to do this. Any other changes (other than pmc_events.h) can be tested with above 3 steps. > Thanks for working on this! > Entirely my pleasure :-) Thanks, Hiren From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 23:12:40 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44F7D632; Wed, 17 Oct 2012 23:12:40 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 02C048FC16; Wed, 17 Oct 2012 23:12:39 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9HNCdP1061069; Wed, 17 Oct 2012 19:12:39 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9HNCdmO061065; Wed, 17 Oct 2012 23:12:39 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 23:12:39 GMT Message-Id: <201210172312.q9HNCdmO061065@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 23:12:40 -0000 TB --- 2012-10-17 17:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 17:50:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 17:50:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-10-17 17:50:00 - cleaning the object tree TB --- 2012-10-17 18:02:07 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 18:02:07 - cd /tinderbox/HEAD/amd64/amd64 TB --- 2012-10-17 18:02:07 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 18:03:41 - /usr/local/bin/svn update /src TB --- 2012-10-17 18:03:49 - At svn revision 241642 TB --- 2012-10-17 18:03:50 - building world TB --- 2012-10-17 18:03:50 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 18:03:50 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 18:03:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 18:03:50 - SRCCONF=/dev/null TB --- 2012-10-17 18:03:50 - TARGET=amd64 TB --- 2012-10-17 18:03:50 - TARGET_ARCH=amd64 TB --- 2012-10-17 18:03:50 - TZ=UTC TB --- 2012-10-17 18:03:50 - __MAKE_CONF=/dev/null TB --- 2012-10-17 18:03:50 - cd /src TB --- 2012-10-17 18:03:50 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 18:03:55 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Wed Oct 17 21:02:55 UTC 2012 TB --- 2012-10-17 21:02:55 - generating LINT kernel config TB --- 2012-10-17 21:02:55 - cd /src/sys/amd64/conf TB --- 2012-10-17 21:02:55 - /usr/bin/make -B LINT TB --- 2012-10-17 21:02:55 - cd /src/sys/amd64/conf TB --- 2012-10-17 21:02:55 - /usr/sbin/config -m LINT TB --- 2012-10-17 21:02:56 - building LINT kernel TB --- 2012-10-17 21:02:56 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 21:02:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 21:02:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 21:02:56 - SRCCONF=/dev/null TB --- 2012-10-17 21:02:56 - TARGET=amd64 TB --- 2012-10-17 21:02:56 - TARGET_ARCH=amd64 TB --- 2012-10-17 21:02:56 - TZ=UTC TB --- 2012-10-17 21:02:56 - __MAKE_CONF=/dev/null TB --- 2012-10-17 21:02:56 - cd /src TB --- 2012-10-17 21:02:56 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Wed Oct 17 21:02:56 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT completed on Wed Oct 17 21:35:17 UTC 2012 TB --- 2012-10-17 21:35:17 - cd /src/sys/amd64/conf TB --- 2012-10-17 21:35:17 - /usr/sbin/config -m LINT-NOINET TB --- 2012-10-17 21:35:17 - building LINT-NOINET kernel TB --- 2012-10-17 21:35:17 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 21:35:17 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 21:35:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 21:35:17 - SRCCONF=/dev/null TB --- 2012-10-17 21:35:17 - TARGET=amd64 TB --- 2012-10-17 21:35:17 - TARGET_ARCH=amd64 TB --- 2012-10-17 21:35:17 - TZ=UTC TB --- 2012-10-17 21:35:17 - __MAKE_CONF=/dev/null TB --- 2012-10-17 21:35:17 - cd /src TB --- 2012-10-17 21:35:17 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET >>> Kernel build for LINT-NOINET started on Wed Oct 17 21:35:17 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET completed on Wed Oct 17 22:04:44 UTC 2012 TB --- 2012-10-17 22:04:44 - cd /src/sys/amd64/conf TB --- 2012-10-17 22:04:44 - /usr/sbin/config -m LINT-NOINET6 TB --- 2012-10-17 22:04:44 - building LINT-NOINET6 kernel TB --- 2012-10-17 22:04:44 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 22:04:44 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 22:04:44 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 22:04:44 - SRCCONF=/dev/null TB --- 2012-10-17 22:04:44 - TARGET=amd64 TB --- 2012-10-17 22:04:44 - TARGET_ARCH=amd64 TB --- 2012-10-17 22:04:44 - TZ=UTC TB --- 2012-10-17 22:04:44 - __MAKE_CONF=/dev/null TB --- 2012-10-17 22:04:44 - cd /src TB --- 2012-10-17 22:04:44 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOINET6 >>> Kernel build for LINT-NOINET6 started on Wed Oct 17 22:04:44 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOINET6 completed on Wed Oct 17 22:33:39 UTC 2012 TB --- 2012-10-17 22:33:39 - cd /src/sys/amd64/conf TB --- 2012-10-17 22:33:39 - /usr/sbin/config -m LINT-NOIP TB --- 2012-10-17 22:33:39 - building LINT-NOIP kernel TB --- 2012-10-17 22:33:39 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 22:33:39 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 22:33:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 22:33:39 - SRCCONF=/dev/null TB --- 2012-10-17 22:33:39 - TARGET=amd64 TB --- 2012-10-17 22:33:39 - TARGET_ARCH=amd64 TB --- 2012-10-17 22:33:39 - TZ=UTC TB --- 2012-10-17 22:33:39 - __MAKE_CONF=/dev/null TB --- 2012-10-17 22:33:39 - cd /src TB --- 2012-10-17 22:33:39 - /usr/bin/make -B buildkernel KERNCONF=LINT-NOIP >>> Kernel build for LINT-NOIP started on Wed Oct 17 22:33:39 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for LINT-NOIP completed on Wed Oct 17 23:00:08 UTC 2012 TB --- 2012-10-17 23:00:08 - cd /src/sys/amd64/conf TB --- 2012-10-17 23:00:08 - /usr/sbin/config -m LINT-VIMAGE TB --- 2012-10-17 23:00:08 - building LINT-VIMAGE kernel TB --- 2012-10-17 23:00:08 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 23:00:08 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 23:00:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 23:00:08 - SRCCONF=/dev/null TB --- 2012-10-17 23:00:08 - TARGET=amd64 TB --- 2012-10-17 23:00:08 - TARGET_ARCH=amd64 TB --- 2012-10-17 23:00:08 - TZ=UTC TB --- 2012-10-17 23:00:08 - __MAKE_CONF=/dev/null TB --- 2012-10-17 23:00:08 - cd /src TB --- 2012-10-17 23:00:08 - /usr/bin/make -B buildkernel KERNCONF=LINT-VIMAGE >>> Kernel build for LINT-VIMAGE started on Wed Oct 17 23:00:08 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/ieee8023ad_lacp.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_arcsubr.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_atmsubr.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_bridge.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/net/if_clone.c /src/sys/net/if_clone.c: In function 'if_clone_destroy': /src/sys/net/if_clone.c:275: error: 'struct if_clone' has no member named 'type' *** [if_clone.o] Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT-VIMAGE. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 23:12:38 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 23:12:38 - ERROR: failed to build LINT-VIMAGE kernel TB --- 2012-10-17 23:12:38 - 14356.77 user 2096.47 system 19358.65 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 23:44:36 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE70BB52; Wed, 17 Oct 2012 23:44:36 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 74CF78FC12; Wed, 17 Oct 2012 23:44:36 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9HNiULm070809; Wed, 17 Oct 2012 19:44:30 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9HNiUcv070802; Wed, 17 Oct 2012 23:44:30 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 23:44:30 GMT Message-Id: <201210172344.q9HNiUcv070802@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 23:44:37 -0000 TB --- 2012-10-17 22:44:34 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 22:44:34 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 22:44:34 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-10-17 22:44:34 - cleaning the object tree TB --- 2012-10-17 22:44:34 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 22:44:34 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2012-10-17 22:44:34 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 22:45:01 - /usr/local/bin/svn update /src TB --- 2012-10-17 22:45:07 - At svn revision 241655 TB --- 2012-10-17 22:45:08 - building world TB --- 2012-10-17 22:45:08 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 22:45:08 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 22:45:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 22:45:08 - SRCCONF=/dev/null TB --- 2012-10-17 22:45:08 - TARGET=sparc64 TB --- 2012-10-17 22:45:08 - TARGET_ARCH=sparc64 TB --- 2012-10-17 22:45:08 - TZ=UTC TB --- 2012-10-17 22:45:08 - __MAKE_CONF=/dev/null TB --- 2012-10-17 22:45:08 - cd /src TB --- 2012-10-17 22:45:08 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 22:45:13 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] In file included from /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_route.c:33: /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/lib/support.h:78:1: error: this is the location of the previous definition In file included from /obj/sparc64.sparc64/src/tmp/usr/include/stdint.h:35, from /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.h:39, from /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_route.c:41: /obj/sparc64.sparc64/src/tmp/usr/include/machine/_stdint.h:74:1: error: "UINT32_MAX" redefined In file included from /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_route.c:33: /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/lib/support.h:81:1: error: this is the location of the previous definition *** [mibII_route.So] Error code 1 Stop in /src/usr.sbin/bsnmpd/modules/snmp_mibII. *** [all] Error code 1 Stop in /src/usr.sbin/bsnmpd/modules. *** [all] Error code 1 Stop in /src/usr.sbin/bsnmpd. *** [all] Error code 1 Stop in /src/usr.sbin. *** [usr.sbin.all__D] Error code 1 Stop in /src. *** [everything] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 23:44:30 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 23:44:30 - ERROR: failed to build world TB --- 2012-10-17 23:44:30 - 2826.42 user 501.99 system 3596.05 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Wed Oct 17 23:51:12 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B48BAD97; Wed, 17 Oct 2012 23:51:12 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 7703E8FC08; Wed, 17 Oct 2012 23:51:12 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9HNpAiT003617; Wed, 17 Oct 2012 19:51:10 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9HNpAiY003616; Wed, 17 Oct 2012 23:51:10 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 17 Oct 2012 23:51:10 GMT Message-Id: <201210172351.q9HNpAiY003616@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Oct 2012 23:51:12 -0000 TB --- 2012-10-17 21:36:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 21:36:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 21:36:00 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2012-10-17 21:36:00 - cleaning the object tree TB --- 2012-10-17 21:36:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 21:36:00 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2012-10-17 21:36:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 21:36:54 - /usr/local/bin/svn update /src TB --- 2012-10-17 21:37:01 - At svn revision 241652 TB --- 2012-10-17 21:37:02 - building world TB --- 2012-10-17 21:37:02 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 21:37:02 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 21:37:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 21:37:02 - SRCCONF=/dev/null TB --- 2012-10-17 21:37:02 - TARGET=powerpc TB --- 2012-10-17 21:37:02 - TARGET_ARCH=powerpc TB --- 2012-10-17 21:37:02 - TZ=UTC TB --- 2012-10-17 21:37:02 - __MAKE_CONF=/dev/null TB --- 2012-10-17 21:37:02 - cd /src TB --- 2012-10-17 21:37:02 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 21:37:07 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] building shared library snmp_hostres.so.6 sed -e 's%@MODPATH@%/usr/lib/%g' -e 's%@DEFPATH@%/usr/share/snmp/defs/%g' -e 's%@MIBSPATH@%/usr/share/snmp/mibs/%g' < /src/usr.sbin/bsnmpd/modules/snmp_hostres/snmp_hostres.3 | gzip -cn > snmp_hostres.3.gz ===> usr.sbin/bsnmpd/modules/snmp_mibII (all) cc -fpic -DPIC -O2 -pipe -I/src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/lib -I/src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmpd -DHAVE_ERR_H -DHAVE_GETADDRINFO -DHAVE_STRLCPY -DHAVE_SYS_TREE_H -I. -std=gnu99 -fstack-protector -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -c /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c -o mibII.So /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c: In function 'mibif_reset_hc_timer': /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c:388: error: 'uintmax_t' undeclared (first use in this function) /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c:388: error: (Each undeclared identifier is reported only once /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.c:388: error: for each function it appears in.) *** [mibII.So] Error code 1 Stop in /src/usr.sbin/bsnmpd/modules/snmp_mibII. *** [all] Error code 1 Stop in /src/usr.sbin/bsnmpd/modules. *** [all] Error code 1 Stop in /src/usr.sbin/bsnmpd. *** [all] Error code 1 Stop in /src/usr.sbin. *** [usr.sbin.all__D] Error code 1 Stop in /src. *** [everything] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-17 23:51:10 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-17 23:51:10 - ERROR: failed to build world TB --- 2012-10-17 23:51:10 - 6688.22 user 844.65 system 8109.75 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 00:00:33 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0BFA9D8 for ; Thu, 18 Oct 2012 00:00:33 +0000 (UTC) (envelope-from jim.harris@gmail.com) Received: from mail-vb0-f54.google.com (mail-vb0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id A73598FC0C for ; Thu, 18 Oct 2012 00:00:32 +0000 (UTC) Received: by mail-vb0-f54.google.com with SMTP id v11so10212996vbm.13 for ; Wed, 17 Oct 2012 17:00:31 -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=H2lIHrpa8h9F1HrTEdfzgqJRHxKFQMN3WQ/zHQEdMkY=; b=mga/jJXND7ZgoIhfba9G1f9BV5cvS3KrpSp90lF7qY8vk6gTfdvhzNpdXXEX625qD+ Nj3Oh5ozqtTSYa6QmOxccPRKp1JEyGj4A2Ik1SByYIgbb8OCLpQoSQ3uZkClCtoMZXOu aqbu++FzJjM0n6JOidYW/nZMDUOWXHgy8FKEFBYbvcs/gjVCq3jZ062SCSJ/8bBhdgJL Yypbe3iDwWJVfvlVEzcE/hDLBsK2CTDT2UizGmCQ0/s9vEaOmd8OtNpVqdMGjv12UZet H3iYvI/RssTisEYRbPDIwmbq506rChU9Jw5+6vk8Elg1njUshidrJIyHvCf9B4M5Ts30 cCPQ== MIME-Version: 1.0 Received: by 10.52.35.82 with SMTP id f18mr9747966vdj.99.1350518431443; Wed, 17 Oct 2012 17:00:31 -0700 (PDT) Received: by 10.58.225.2 with HTTP; Wed, 17 Oct 2012 17:00:31 -0700 (PDT) In-Reply-To: References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> Date: Wed, 17 Oct 2012 17:00:31 -0700 Message-ID: Subject: Re: [CFT]hwpmc update for sandybridge-e From: Jim Harris To: hiren panchasara Content-Type: text/plain; charset=ISO-8859-1 Cc: Davide Italiano , freebsd-current , Fabien Thomas X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 00:00:33 -0000 On Wed, Oct 17, 2012 at 3:57 PM, hiren panchasara wrote: > > > > Thanks for the pointers Jim! > > It seems that everything works now with: > > http://www.strugglingcoder.info/patches/hwpmc_sbx_3.txt > http://www.strugglingcoder.info/patches/pmccontrol_3.txt > http://www.strugglingcoder.info/patches/pmctestpy_3.txt > > As it can be seen, I do not see any errors with the test script. > I've also tried to take care of the sorting issues Fabien mentioned. > > Can you please give this a whirl? Looks good! Version 3 passes pmctest.py on my system. > > > I have a few questions regarding this. For my testing I am using hwpmc as a > module. > Problem is that any change to pmc_events.h is not reflected when I do: > 1) rebuild /sys/modules/hwpmc - unload/load new module > 2) rebuild /lib/libpmc/ > 3) rebuild /usr.sbin/pmccontrol and pmcstat > > I have to do buildworld for changes in pmc_events.h to take effect. (which > kind of explains my delayed responses :D ) > I know I am missing something here and there should be a better way to do > this. Any other changes (other than pmc_events.h) > can be tested with above 3 steps. You forgot to mention sys/pmc.h, but that was a simple change so you probably haven't had to touch it since your initial patch. The quick and dirty way is to just copy sys/dev/hwpmc/pmc_events.h to /usr/include/dev/hwpmc. Also sys/sys/pmc.h to /usr/include/sys. Thanks, -Jim >> >> Thanks for working on this! > > Entirely my pleasure :-) > > Thanks, > Hiren > From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 00:12:33 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ABF414F1 for ; Thu, 18 Oct 2012 00:12:33 +0000 (UTC) (envelope-from hiren.panchasara@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 2A29C8FC0C for ; Thu, 18 Oct 2012 00:12:32 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so3719542bkc.13 for ; Wed, 17 Oct 2012 17:12:31 -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=s/3FKKm13d6k24jSpKqes5LhP5WiRyOGocSf/nzbgWE=; b=WzK24JKROLcENbWc7SoihczepeQEJlKw9B56+RMqEKtL8QPLfwolMPaLoXG6FnkEes OBywQ22kDSvTr4SvA3AtsG3FT/9mqdhwPLolftLW7J5mPlzdX8sBf2dRDB37P8G81rhT g3h1lgsIdfIRWwUnuW3/3CiyVUHTZJfDbwxfp9r6GLwyfg2z+tsL1OKiW09u+uQ/Afou 1YPwtxcD9XkeIMJVo5Z7Fowe0pUo9KwswP+wM357+Fu3lGKQfaHsShgVwWXp3H5dzVE+ qOVEGUD8ChJ+YT6vAsiBvnIG0g+fR1drupgZlxPul1pPwmbR3E9AElZG92ck4ERJ3QL6 ieSA== MIME-Version: 1.0 Received: by 10.204.128.201 with SMTP id l9mr5612203bks.66.1350519151496; Wed, 17 Oct 2012 17:12:31 -0700 (PDT) Received: by 10.205.36.136 with HTTP; Wed, 17 Oct 2012 17:12:31 -0700 (PDT) In-Reply-To: References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> Date: Wed, 17 Oct 2012 17:12:31 -0700 Message-ID: Subject: Re: [CFT]hwpmc update for sandybridge-e From: hiren panchasara To: Jim Harris Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Davide Italiano , freebsd-current , Fabien Thomas X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 00:12:33 -0000 On Wed, Oct 17, 2012 at 5:00 PM, Jim Harris wrote: > On Wed, Oct 17, 2012 at 3:57 PM, hiren panchasara > wrote: > > > > > > > > > Thanks for the pointers Jim! > > > > It seems that everything works now with: > > > > http://www.strugglingcoder.info/patches/hwpmc_sbx_3.txt > > http://www.strugglingcoder.info/patches/pmccontrol_3.txt > > http://www.strugglingcoder.info/patches/pmctestpy_3.txt > > > > As it can be seen, I do not see any errors with the test script. > > I've also tried to take care of the sorting issues Fabien mentioned. > > > > Can you please give this a whirl? > > Looks good! Version 3 passes pmctest.py on my system. > Great! Thanks a lot for testing. > > > > > > > > > I have a few questions regarding this. For my testing I am using hwpmc > as a > > module. > > Problem is that any change to pmc_events.h is not reflected when I do: > > 1) rebuild /sys/modules/hwpmc - unload/load new module > > 2) rebuild /lib/libpmc/ > > 3) rebuild /usr.sbin/pmccontrol and pmcstat > > > > I have to do buildworld for changes in pmc_events.h to take effect. > (which > > kind of explains my delayed responses :D ) > > I know I am missing something here and there should be a better way to do > > this. Any other changes (other than pmc_events.h) > > can be tested with above 3 steps. > > You forgot to mention sys/pmc.h, but that was a simple change so you > probably haven't had to touch it since your initial patch. > > The quick and dirty way is to just copy sys/dev/hwpmc/pmc_events.h to > /usr/include/dev/hwpmc. Also sys/sys/pmc.h to /usr/include/sys. > Nice...! Appreciate your help, Hiren > > Thanks, > > -Jim > > >> > >> Thanks for working on this! > > > > Entirely my pleasure :-) > > > > Thanks, > > Hiren > > > From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 00:15:52 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A69F61F; Thu, 18 Oct 2012 00:15:52 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id EEA708FC08; Thu, 18 Oct 2012 00:15:51 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9I0Fp5m031529; Wed, 17 Oct 2012 20:15:51 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9I0FpC7031528; Thu, 18 Oct 2012 00:15:51 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 00:15:51 GMT Message-Id: <201210180015.q9I0FpC7031528@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc64/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 00:15:52 -0000 TB --- 2012-10-17 22:02:43 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-17 22:02:43 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-17 22:02:43 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2012-10-17 22:02:43 - cleaning the object tree TB --- 2012-10-17 22:02:43 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-17 22:02:43 - cd /tinderbox/HEAD/powerpc64/powerpc TB --- 2012-10-17 22:02:43 - /usr/local/bin/svn cleanup /src TB --- 2012-10-17 22:03:30 - /usr/local/bin/svn update /src TB --- 2012-10-17 22:03:37 - At svn revision 241654 TB --- 2012-10-17 22:03:38 - building world TB --- 2012-10-17 22:03:38 - CROSS_BUILD_TESTING=YES TB --- 2012-10-17 22:03:38 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-17 22:03:38 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-17 22:03:38 - SRCCONF=/dev/null TB --- 2012-10-17 22:03:38 - TARGET=powerpc TB --- 2012-10-17 22:03:38 - TARGET_ARCH=powerpc64 TB --- 2012-10-17 22:03:38 - TZ=UTC TB --- 2012-10-17 22:03:38 - __MAKE_CONF=/dev/null TB --- 2012-10-17 22:03:38 - cd /src TB --- 2012-10-17 22:03:38 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Oct 17 22:03:43 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] In file included from /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_route.c:33: /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/lib/support.h:78:1: error: this is the location of the previous definition In file included from /obj/powerpc.powerpc64/src/tmp/usr/include/stdint.h:35, from /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII.h:39, from /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_route.c:41: /obj/powerpc.powerpc64/src/tmp/usr/include/machine/_stdint.h:95:1: error: "UINT32_MAX" redefined In file included from /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/snmp_mibII/mibII_route.c:33: /src/usr.sbin/bsnmpd/modules/snmp_mibII/../../../../contrib/bsnmp/lib/support.h:81:1: error: this is the location of the previous definition *** [mibII_route.So] Error code 1 Stop in /src/usr.sbin/bsnmpd/modules/snmp_mibII. *** [all] Error code 1 Stop in /src/usr.sbin/bsnmpd/modules. *** [all] Error code 1 Stop in /src/usr.sbin/bsnmpd. *** [all] Error code 1 Stop in /src/usr.sbin. *** [usr.sbin.all__D] Error code 1 Stop in /src. *** [everything] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 00:15:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 00:15:51 - ERROR: failed to build world TB --- 2012-10-18 00:15:51 - 6798.37 user 825.61 system 7988.16 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 00:55:06 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A652A9CC for ; Thu, 18 Oct 2012 00:55:06 +0000 (UTC) (envelope-from hiren.panchasara@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 26E4F8FC14 for ; Thu, 18 Oct 2012 00:55:05 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so3728155bkc.13 for ; Wed, 17 Oct 2012 17:55:05 -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=GhcbtP457VhP/0xkU5bKd1mfiqWqyldj+s6BZFUL2O4=; b=CG8LqSZWbsgn6i2znhcyciZrgFC/54/xOmClMx98Gyu00TenEq0rcKjBjuYlxfxqfx mn4Hh806wgo+LA+SsDLC/MrujrR5jmqf6BuxaSXd8Ap5iCxY0BB0vcb3kvZLXhaWk3tN bPrmkcmKAbvyea4eB0FtSBfwdjBw9TOnCMylR/Zn13ssaJXa/ivWoGlnzH7uVY650hFL wMVHOqf/ecgdgrMkXtoDRSt1OY4WnamwNx5Sgfot0epu8RP14D7Z5XS2SHnvZda48/3l IsTEjAlbDrq6sRDj5sLabae3Unijqa6OKc7Qakmhzlufw9OzvAiMXhCYTMiDlRrQ1qkb VQbA== MIME-Version: 1.0 Received: by 10.204.131.75 with SMTP id w11mr5905838bks.111.1350521705165; Wed, 17 Oct 2012 17:55:05 -0700 (PDT) Received: by 10.205.36.136 with HTTP; Wed, 17 Oct 2012 17:55:05 -0700 (PDT) In-Reply-To: References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> Date: Wed, 17 Oct 2012 17:55:05 -0700 Message-ID: Subject: Re: [CFT]hwpmc update for sandybridge-e From: hiren panchasara To: Jim Harris Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Davide Italiano , freebsd-current , Fabien Thomas X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 00:55:06 -0000 On Wed, Oct 17, 2012 at 5:12 PM, hiren panchasara < hiren.panchasara@gmail.com> wrote: > > > On Wed, Oct 17, 2012 at 5:00 PM, Jim Harris wrote: > >> On Wed, Oct 17, 2012 at 3:57 PM, hiren panchasara >> wrote: >> > >> >> > >> > >> > Thanks for the pointers Jim! >> > >> > It seems that everything works now with: >> > >> > http://www.strugglingcoder.info/patches/hwpmc_sbx_3.txt >> > I've also made following change in existing sandybridge (not xeon :-) ) mappings. Let me know if that looks reasonable. @@ -2772,7 +2777,7 @@ __PMC_EV_ALIAS("MEM_LOAD_UOPS_LLC_HIT_RETIRED.XSNP_NONE", IAP_EVENT_D2H_08H) \ __PMC_EV_ALIAS("MEM_LOAD_UOPS_LLC_HIT_RETIRED.LLC_MISS", IAP_EVENT_D4H_02H) \ __PMC_EV_ALIAS("L2_TRANS.DEMAND_DATA_RD", IAP_EVENT_F0H_01H) \ -__PMC_EV_ALIAS("L2_TRANS.RF0", IAP_EVENT_F0H_02H) \ +__PMC_EV_ALIAS("L2_TRANS.RFO", IAP_EVENT_F0H_02H) \ __PMC_EV_ALIAS("L2_TRANS.CODE_RD", IAP_EVENT_F0H_04H) \ __PMC_EV_ALIAS("L2_TRANS.ALL_PF", IAP_EVENT_F0H_08H) \ __PMC_EV_ALIAS("L2_TRANS.L1D_WB", IAP_EVENT_F0H_10H) \ Thanks, Hiren From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 01:01:17 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D99DAB54 for ; Thu, 18 Oct 2012 01:01:17 +0000 (UTC) (envelope-from jim.harris@gmail.com) Received: from mail-vb0-f54.google.com (mail-vb0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 818008FC0C for ; Thu, 18 Oct 2012 01:01:17 +0000 (UTC) Received: by mail-vb0-f54.google.com with SMTP id v11so10268876vbm.13 for ; Wed, 17 Oct 2012 18:01:16 -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=2MmKVwf9sR1vvn9d+UZyjO/myqRQ/ccExjXgVB9j8vE=; b=lASbRuqfbz7FnFpjLb8E+Vz0G99z1X0tkACIqg+5PacpAoCDx9iPGGowadb8G8w3zP Vs4d72p3g4Xd8GPD6xjcla6CWioEB6sebStc1s7Ldkf23rKKp2lz7Mz1LTE9EPHJd5CK rDueJaP0iUJXWyQZvCCZ7r2KP00LchyjMElamaAsE8Is+OyMMmnaO7WReC/6jElCaMW+ AGU15VTT82uOMYPplm9v3tKwqELJbkVEc/9OhHR3AhBHOKMP6V2I16ipESnSRVwylyKp UKXKSDcRBiFs5BEKxubsk0ruMn/fAxv2w06Qsw3TYj1FO8BpGA05yNizmy2+VNuzi/L0 XDcg== MIME-Version: 1.0 Received: by 10.220.154.2 with SMTP id m2mr2774400vcw.18.1350522076378; Wed, 17 Oct 2012 18:01:16 -0700 (PDT) Received: by 10.58.225.2 with HTTP; Wed, 17 Oct 2012 18:01:16 -0700 (PDT) In-Reply-To: References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> Date: Wed, 17 Oct 2012 18:01:16 -0700 Message-ID: Subject: Re: [CFT]hwpmc update for sandybridge-e From: Jim Harris To: hiren panchasara Content-Type: text/plain; charset=ISO-8859-1 Cc: Davide Italiano , freebsd-current , Fabien Thomas X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 01:01:18 -0000 On Wed, Oct 17, 2012 at 5:55 PM, hiren panchasara wrote: > > > On Wed, Oct 17, 2012 at 5:12 PM, hiren panchasara > wrote: >> >> >> >> On Wed, Oct 17, 2012 at 5:00 PM, Jim Harris wrote: >>> >>> On Wed, Oct 17, 2012 at 3:57 PM, hiren panchasara >>> wrote: >>> > >>> >>> > >>> > >>> > Thanks for the pointers Jim! >>> > >>> > It seems that everything works now with: >>> > >>> > http://www.strugglingcoder.info/patches/hwpmc_sbx_3.txt > > > I've also made following change in existing sandybridge (not xeon :-) ) > mappings. > Let me know if that looks reasonable. > > > @@ -2772,7 +2777,7 @@ > __PMC_EV_ALIAS("MEM_LOAD_UOPS_LLC_HIT_RETIRED.XSNP_NONE", > IAP_EVENT_D2H_08H) \ > __PMC_EV_ALIAS("MEM_LOAD_UOPS_LLC_HIT_RETIRED.LLC_MISS", > IAP_EVENT_D4H_02H) \ > __PMC_EV_ALIAS("L2_TRANS.DEMAND_DATA_RD", IAP_EVENT_F0H_01H) \ > -__PMC_EV_ALIAS("L2_TRANS.RF0", IAP_EVENT_F0H_02H) \ > +__PMC_EV_ALIAS("L2_TRANS.RFO", IAP_EVENT_F0H_02H) \ > __PMC_EV_ALIAS("L2_TRANS.CODE_RD", IAP_EVENT_F0H_04H) \ > __PMC_EV_ALIAS("L2_TRANS.ALL_PF", IAP_EVENT_F0H_08H) \ > __PMC_EV_ALIAS("L2_TRANS.L1D_WB", IAP_EVENT_F0H_10H) \ This is a reasonable change, but it should be part of a separate commit. > Thanks, > Hiren From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 01:07:06 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E9035CB3; Thu, 18 Oct 2012 01:07:06 +0000 (UTC) (envelope-from hiren.panchasara@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 3E9668FC0A; Thu, 18 Oct 2012 01:07:06 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so3730735bkc.13 for ; Wed, 17 Oct 2012 18:07:05 -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=iK9WbHr11BkvtsWbutb+wYgEXC96mZC9TrmeFciO078=; b=dJ1ptCUCWihCIGxpaD+5gbmygo//Q3763EDWUQW6SB4IDW8+fePjK1p1Dt8WOGlF7S XcfO9FH+Zr0H3pd4WbKN3gHvrpkNbkQZCbMU8z8EvIkELYieu4suuEi+75ZdGUyBSgu1 8pOV5E1vLO0EJBKiQ1yG6s/38s8Gfw+kCmS8Y5CO7paMIgNquhvl2eo+kHAdoeJh9bwY YAO2ZwVMZIqeZJNEtaPwPpgEkwTklYFxxPXOnVgSxgQEXvsHScYLeFTWRzyfrGM9DzBX lo20u3pgPnBxVkATapTRBOx5dZofXAodk1+FPlPb5LzQ3ZNwSXiYaKRDPtHWBz7Az0CW kVQQ== MIME-Version: 1.0 Received: by 10.204.130.152 with SMTP id t24mr5662662bks.138.1350522425226; Wed, 17 Oct 2012 18:07:05 -0700 (PDT) Received: by 10.205.36.136 with HTTP; Wed, 17 Oct 2012 18:07:05 -0700 (PDT) In-Reply-To: References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> Date: Wed, 17 Oct 2012 18:07:05 -0700 Message-ID: Subject: Re: [CFT]hwpmc update for sandybridge-e From: hiren panchasara To: Jim Harris Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Davide Italiano , freebsd-current , Fabien Thomas X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 01:07:07 -0000 + Sean - who got dropped from the chain somehow. On Wed, Oct 17, 2012 at 6:01 PM, Jim Harris wrote: > On Wed, Oct 17, 2012 at 5:55 PM, hiren panchasara > wrote: > > > > > > On Wed, Oct 17, 2012 at 5:12 PM, hiren panchasara > > wrote: > >> > >> > >> > >> On Wed, Oct 17, 2012 at 5:00 PM, Jim Harris > wrote: > >>> > >>> On Wed, Oct 17, 2012 at 3:57 PM, hiren panchasara > >>> wrote: > >>> > > >>> > >>> > > >>> > > >>> > Thanks for the pointers Jim! > >>> > > >>> > It seems that everything works now with: > >>> > > >>> > http://www.strugglingcoder.info/patches/hwpmc_sbx_3.txt > > > > > > I've also made following change in existing sandybridge (not xeon :-) ) > > mappings. > > Let me know if that looks reasonable. > > > > > > @@ -2772,7 +2777,7 @@ > > __PMC_EV_ALIAS("MEM_LOAD_UOPS_LLC_HIT_RETIRED.XSNP_NONE", > > IAP_EVENT_D2H_08H) \ > > __PMC_EV_ALIAS("MEM_LOAD_UOPS_LLC_HIT_RETIRED.LLC_MISS", > > IAP_EVENT_D4H_02H) \ > > __PMC_EV_ALIAS("L2_TRANS.DEMAND_DATA_RD", IAP_EVENT_F0H_01H) > \ > > -__PMC_EV_ALIAS("L2_TRANS.RF0", IAP_EVENT_F0H_02H) > \ > > +__PMC_EV_ALIAS("L2_TRANS.RFO", IAP_EVENT_F0H_02H) > \ > > __PMC_EV_ALIAS("L2_TRANS.CODE_RD", IAP_EVENT_F0H_04H) > \ > > __PMC_EV_ALIAS("L2_TRANS.ALL_PF", IAP_EVENT_F0H_08H) > \ > > __PMC_EV_ALIAS("L2_TRANS.L1D_WB", IAP_EVENT_F0H_10H) > \ > > This is a reasonable change, but it should be part of a separate commit. > Sure, I will separate it out. If there are no further comments, can I ask Sean to commit on my behalf? Thanks, Hiren From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 01:52:23 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 953BC2E8; Thu, 18 Oct 2012 01:52:23 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 4EAE68FC0A; Thu, 18 Oct 2012 01:52:22 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9I1qLsk018092; Wed, 17 Oct 2012 21:52:21 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9I1qL6v018091; Thu, 18 Oct 2012 01:52:21 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 01:52:21 GMT Message-Id: <201210180152.q9I1qL6v018091@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on arm/arm Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 01:52:23 -0000 TB --- 2012-10-18 00:20:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 00:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 00:20:00 - starting HEAD tinderbox run for arm/arm TB --- 2012-10-18 00:20:00 - cleaning the object tree TB --- 2012-10-18 00:20:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 00:20:00 - cd /tinderbox/HEAD/arm/arm TB --- 2012-10-18 00:20:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 00:22:19 - /usr/local/bin/svn update /src TB --- 2012-10-18 00:22:29 - At svn revision 241656 TB --- 2012-10-18 00:22:30 - building world TB --- 2012-10-18 00:22:30 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 00:22:30 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 00:22:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 00:22:30 - SRCCONF=/dev/null TB --- 2012-10-18 00:22:30 - TARGET=arm TB --- 2012-10-18 00:22:30 - TARGET_ARCH=arm TB --- 2012-10-18 00:22:30 - TZ=UTC TB --- 2012-10-18 00:22:30 - __MAKE_CONF=/dev/null TB --- 2012-10-18 00:22:30 - cd /src TB --- 2012-10-18 00:22:30 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 00:22:35 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Oct 18 01:22:35 UTC 2012 TB --- 2012-10-18 01:22:35 - cd /src/sys/arm/conf TB --- 2012-10-18 01:22:35 - /usr/sbin/config -m AC100 TB --- 2012-10-18 01:22:35 - skipping AC100 kernel TB --- 2012-10-18 01:22:35 - cd /src/sys/arm/conf TB --- 2012-10-18 01:22:35 - /usr/sbin/config -m ARMADAXP TB --- 2012-10-18 01:22:35 - skipping ARMADAXP kernel TB --- 2012-10-18 01:22:35 - cd /src/sys/arm/conf TB --- 2012-10-18 01:22:35 - /usr/sbin/config -m ATMEL TB --- 2012-10-18 01:22:35 - building ATMEL kernel TB --- 2012-10-18 01:22:35 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 01:22:35 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 01:22:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 01:22:35 - SRCCONF=/dev/null TB --- 2012-10-18 01:22:35 - TARGET=arm TB --- 2012-10-18 01:22:35 - TARGET_ARCH=arm TB --- 2012-10-18 01:22:35 - TZ=UTC TB --- 2012-10-18 01:22:35 - __MAKE_CONF=/dev/null TB --- 2012-10-18 01:22:35 - cd /src TB --- 2012-10-18 01:22:35 - /usr/bin/make -B buildkernel KERNCONF=ATMEL >>> Kernel build for ATMEL started on Thu Oct 18 01:22:35 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for ATMEL completed on Thu Oct 18 01:26:08 UTC 2012 TB --- 2012-10-18 01:26:08 - cd /src/sys/arm/conf TB --- 2012-10-18 01:26:08 - /usr/sbin/config -m AVILA TB --- 2012-10-18 01:26:08 - skipping AVILA kernel TB --- 2012-10-18 01:26:08 - cd /src/sys/arm/conf TB --- 2012-10-18 01:26:08 - /usr/sbin/config -m BEAGLEBONE TB --- 2012-10-18 01:26:09 - skipping BEAGLEBONE kernel TB --- 2012-10-18 01:26:09 - cd /src/sys/arm/conf TB --- 2012-10-18 01:26:09 - /usr/sbin/config -m BWCT TB --- 2012-10-18 01:26:09 - building BWCT kernel TB --- 2012-10-18 01:26:09 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 01:26:09 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 01:26:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 01:26:09 - SRCCONF=/dev/null TB --- 2012-10-18 01:26:09 - TARGET=arm TB --- 2012-10-18 01:26:09 - TARGET_ARCH=arm TB --- 2012-10-18 01:26:09 - TZ=UTC TB --- 2012-10-18 01:26:09 - __MAKE_CONF=/dev/null TB --- 2012-10-18 01:26:09 - cd /src TB --- 2012-10-18 01:26:09 - /usr/bin/make -B buildkernel KERNCONF=BWCT >>> Kernel build for BWCT started on Thu Oct 18 01:26:09 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for BWCT completed on Thu Oct 18 01:28:18 UTC 2012 TB --- 2012-10-18 01:28:18 - cd /src/sys/arm/conf TB --- 2012-10-18 01:28:18 - /usr/sbin/config -m CAMBRIA TB --- 2012-10-18 01:28:18 - skipping CAMBRIA kernel TB --- 2012-10-18 01:28:18 - cd /src/sys/arm/conf TB --- 2012-10-18 01:28:18 - /usr/sbin/config -m CNS11XXNAS TB --- 2012-10-18 01:28:18 - building CNS11XXNAS kernel TB --- 2012-10-18 01:28:18 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 01:28:18 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 01:28:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 01:28:18 - SRCCONF=/dev/null TB --- 2012-10-18 01:28:18 - TARGET=arm TB --- 2012-10-18 01:28:18 - TARGET_ARCH=arm TB --- 2012-10-18 01:28:18 - TZ=UTC TB --- 2012-10-18 01:28:18 - __MAKE_CONF=/dev/null TB --- 2012-10-18 01:28:18 - cd /src TB --- 2012-10-18 01:28:18 - /usr/bin/make -B buildkernel KERNCONF=CNS11XXNAS >>> Kernel build for CNS11XXNAS started on Thu Oct 18 01:28:18 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for CNS11XXNAS completed on Thu Oct 18 01:30:45 UTC 2012 TB --- 2012-10-18 01:30:45 - cd /src/sys/arm/conf TB --- 2012-10-18 01:30:45 - /usr/sbin/config -m CRB TB --- 2012-10-18 01:30:45 - skipping CRB kernel TB --- 2012-10-18 01:30:45 - cd /src/sys/arm/conf TB --- 2012-10-18 01:30:45 - /usr/sbin/config -m DB-78XXX TB --- 2012-10-18 01:30:46 - building DB-78XXX kernel TB --- 2012-10-18 01:30:46 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 01:30:46 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 01:30:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 01:30:46 - SRCCONF=/dev/null TB --- 2012-10-18 01:30:46 - TARGET=arm TB --- 2012-10-18 01:30:46 - TARGET_ARCH=arm TB --- 2012-10-18 01:30:46 - TZ=UTC TB --- 2012-10-18 01:30:46 - __MAKE_CONF=/dev/null TB --- 2012-10-18 01:30:46 - cd /src TB --- 2012-10-18 01:30:46 - /usr/bin/make -B buildkernel KERNCONF=DB-78XXX >>> Kernel build for DB-78XXX started on Thu Oct 18 01:30:46 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-78XXX completed on Thu Oct 18 01:33:30 UTC 2012 TB --- 2012-10-18 01:33:30 - cd /src/sys/arm/conf TB --- 2012-10-18 01:33:30 - /usr/sbin/config -m DB-88F5XXX TB --- 2012-10-18 01:33:31 - building DB-88F5XXX kernel TB --- 2012-10-18 01:33:31 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 01:33:31 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 01:33:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 01:33:31 - SRCCONF=/dev/null TB --- 2012-10-18 01:33:31 - TARGET=arm TB --- 2012-10-18 01:33:31 - TARGET_ARCH=arm TB --- 2012-10-18 01:33:31 - TZ=UTC TB --- 2012-10-18 01:33:31 - __MAKE_CONF=/dev/null TB --- 2012-10-18 01:33:31 - cd /src TB --- 2012-10-18 01:33:31 - /usr/bin/make -B buildkernel KERNCONF=DB-88F5XXX >>> Kernel build for DB-88F5XXX started on Thu Oct 18 01:33:31 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F5XXX completed on Thu Oct 18 01:36:09 UTC 2012 TB --- 2012-10-18 01:36:09 - cd /src/sys/arm/conf TB --- 2012-10-18 01:36:09 - /usr/sbin/config -m DB-88F6XXX TB --- 2012-10-18 01:36:09 - building DB-88F6XXX kernel TB --- 2012-10-18 01:36:09 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 01:36:09 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 01:36:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 01:36:09 - SRCCONF=/dev/null TB --- 2012-10-18 01:36:09 - TARGET=arm TB --- 2012-10-18 01:36:09 - TARGET_ARCH=arm TB --- 2012-10-18 01:36:09 - TZ=UTC TB --- 2012-10-18 01:36:09 - __MAKE_CONF=/dev/null TB --- 2012-10-18 01:36:09 - cd /src TB --- 2012-10-18 01:36:09 - /usr/bin/make -B buildkernel KERNCONF=DB-88F6XXX >>> Kernel build for DB-88F6XXX started on Thu Oct 18 01:36:10 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F6XXX completed on Thu Oct 18 01:38:59 UTC 2012 TB --- 2012-10-18 01:38:59 - cd /src/sys/arm/conf TB --- 2012-10-18 01:38:59 - /usr/sbin/config -m DOCKSTAR TB --- 2012-10-18 01:38:59 - building DOCKSTAR kernel TB --- 2012-10-18 01:38:59 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 01:38:59 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 01:38:59 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 01:38:59 - SRCCONF=/dev/null TB --- 2012-10-18 01:38:59 - TARGET=arm TB --- 2012-10-18 01:38:59 - TARGET_ARCH=arm TB --- 2012-10-18 01:38:59 - TZ=UTC TB --- 2012-10-18 01:38:59 - __MAKE_CONF=/dev/null TB --- 2012-10-18 01:38:59 - cd /src TB --- 2012-10-18 01:38:59 - /usr/bin/make -B buildkernel KERNCONF=DOCKSTAR >>> Kernel build for DOCKSTAR started on Thu Oct 18 01:38:59 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DOCKSTAR completed on Thu Oct 18 01:41:33 UTC 2012 TB --- 2012-10-18 01:41:33 - cd /src/sys/arm/conf TB --- 2012-10-18 01:41:33 - /usr/sbin/config -m EA3250 TB --- 2012-10-18 01:41:33 - building EA3250 kernel TB --- 2012-10-18 01:41:33 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 01:41:33 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 01:41:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 01:41:33 - SRCCONF=/dev/null TB --- 2012-10-18 01:41:33 - TARGET=arm TB --- 2012-10-18 01:41:33 - TARGET_ARCH=arm TB --- 2012-10-18 01:41:33 - TZ=UTC TB --- 2012-10-18 01:41:33 - __MAKE_CONF=/dev/null TB --- 2012-10-18 01:41:33 - cd /src TB --- 2012-10-18 01:41:33 - /usr/bin/make -B buildkernel KERNCONF=EA3250 >>> Kernel build for EA3250 started on Thu Oct 18 01:41:33 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EA3250 completed on Thu Oct 18 01:44:11 UTC 2012 TB --- 2012-10-18 01:44:11 - cd /src/sys/arm/conf TB --- 2012-10-18 01:44:11 - /usr/sbin/config -m EB9200 TB --- 2012-10-18 01:44:11 - building EB9200 kernel TB --- 2012-10-18 01:44:11 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 01:44:11 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 01:44:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 01:44:11 - SRCCONF=/dev/null TB --- 2012-10-18 01:44:11 - TARGET=arm TB --- 2012-10-18 01:44:11 - TARGET_ARCH=arm TB --- 2012-10-18 01:44:11 - TZ=UTC TB --- 2012-10-18 01:44:11 - __MAKE_CONF=/dev/null TB --- 2012-10-18 01:44:11 - cd /src TB --- 2012-10-18 01:44:11 - /usr/bin/make -B buildkernel KERNCONF=EB9200 >>> Kernel build for EB9200 started on Thu Oct 18 01:44:11 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EB9200 completed on Thu Oct 18 01:46:42 UTC 2012 TB --- 2012-10-18 01:46:42 - cd /src/sys/arm/conf TB --- 2012-10-18 01:46:42 - /usr/sbin/config -m EP80219 TB --- 2012-10-18 01:46:42 - skipping EP80219 kernel TB --- 2012-10-18 01:46:42 - cd /src/sys/arm/conf TB --- 2012-10-18 01:46:42 - /usr/sbin/config -m ETHERNUT5 TB --- 2012-10-18 01:46:42 - building ETHERNUT5 kernel TB --- 2012-10-18 01:46:42 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 01:46:42 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 01:46:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 01:46:42 - SRCCONF=/dev/null TB --- 2012-10-18 01:46:42 - TARGET=arm TB --- 2012-10-18 01:46:42 - TARGET_ARCH=arm TB --- 2012-10-18 01:46:42 - TZ=UTC TB --- 2012-10-18 01:46:42 - __MAKE_CONF=/dev/null TB --- 2012-10-18 01:46:42 - cd /src TB --- 2012-10-18 01:46:42 - /usr/bin/make -B buildkernel KERNCONF=ETHERNUT5 >>> Kernel build for ETHERNUT5 started on Thu Oct 18 01:46:42 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] ld -Bshareable -d -warn-common -o if_ef.ko if_ef.kld objcopy --strip-debug if_ef.ko ===> if_epair (all) cc -O -pipe -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /obj/arm.arm/src/sys/ETHERNUT5/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -I/obj/arm.arm/src/sys/ETHERNUT5 -mcpu=arm9 -ffreestanding -std=iso9899:1999 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -c /src/sys/modules/if_epair/../../net/if_epair.c cc1: warnings being treated as errors /src/sys/modules/if_epair/../../net/if_epair.c: In function 'epair_clone_create': /src/sys/modules/if_epair/../../net/if_epair.c:826: warning: large integer implicitly truncated to unsigned type [-Woverflow] /src/sys/modules/if_epair/../../net/if_epair.c:852: warning: large integer implicitly truncated to unsigned type [-Woverflow] *** [if_epair.o] Error code 1 Stop in /src/sys/modules/if_epair. *** [all] Error code 1 Stop in /src/sys/modules. *** [modules-all] Error code 1 Stop in /obj/arm.arm/src/sys/ETHERNUT5. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 01:52:21 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 01:52:21 - ERROR: failed to build ETHERNUT5 kernel TB --- 2012-10-18 01:52:21 - 3913.73 user 795.30 system 5540.72 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 02:53:03 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A73B2E22; Thu, 18 Oct 2012 02:53:03 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 564CA8FC08; Thu, 18 Oct 2012 02:53:03 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9I2r2CH008101; Wed, 17 Oct 2012 22:53:02 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9I2r2XZ008095; Thu, 18 Oct 2012 02:53:02 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 02:53:02 GMT Message-Id: <201210180253.q9I2r2XZ008095@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/pc98 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 02:53:04 -0000 TB --- 2012-10-18 00:20:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 00:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 00:20:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2012-10-18 00:20:00 - cleaning the object tree TB --- 2012-10-18 00:20:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 00:20:00 - cd /tinderbox/HEAD/i386/pc98 TB --- 2012-10-18 00:20:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 00:22:17 - /usr/local/bin/svn update /src TB --- 2012-10-18 00:22:26 - At svn revision 241656 TB --- 2012-10-18 00:22:27 - building world TB --- 2012-10-18 00:22:27 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 00:22:27 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 00:22:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 00:22:27 - SRCCONF=/dev/null TB --- 2012-10-18 00:22:27 - TARGET=pc98 TB --- 2012-10-18 00:22:27 - TARGET_ARCH=i386 TB --- 2012-10-18 00:22:27 - TZ=UTC TB --- 2012-10-18 00:22:27 - __MAKE_CONF=/dev/null TB --- 2012-10-18 00:22:27 - cd /src TB --- 2012-10-18 00:22:27 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 00:22:33 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Oct 18 02:46:39 UTC 2012 TB --- 2012-10-18 02:46:39 - generating LINT kernel config TB --- 2012-10-18 02:46:39 - cd /src/sys/pc98/conf TB --- 2012-10-18 02:46:39 - /usr/bin/make -B LINT TB --- 2012-10-18 02:46:39 - cd /src/sys/pc98/conf TB --- 2012-10-18 02:46:39 - /usr/sbin/config -m LINT TB --- 2012-10-18 02:46:39 - building LINT kernel TB --- 2012-10-18 02:46:39 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 02:46:39 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 02:46:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 02:46:39 - SRCCONF=/dev/null TB --- 2012-10-18 02:46:39 - TARGET=pc98 TB --- 2012-10-18 02:46:39 - TARGET_ARCH=i386 TB --- 2012-10-18 02:46:39 - TZ=UTC TB --- 2012-10-18 02:46:39 - __MAKE_CONF=/dev/null TB --- 2012-10-18 02:46:39 - cd /src TB --- 2012-10-18 02:46:39 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Oct 18 02:46:39 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/bwiphy.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/bwirf.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/if_bwi.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/if_bwi_pci.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bxe/if_bxe.c cc1: warnings being treated as errors /src/sys/dev/bxe/if_bxe.c: In function 'bxe_attach': /src/sys/dev/bxe/if_bxe.c:2143: warning: large integer implicitly truncated to unsigned type [-Woverflow] *** [if_bxe.o] Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 02:53:02 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 02:53:02 - ERROR: failed to build LINT kernel TB --- 2012-10-18 02:53:02 - 6936.77 user 967.78 system 9181.73 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 03:06:10 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8B567278; Thu, 18 Oct 2012 03:06:10 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 4715F8FC12; Thu, 18 Oct 2012 03:06:10 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9I369nK092270; Wed, 17 Oct 2012 23:06:09 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9I369NI092263; Thu, 18 Oct 2012 03:06:09 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 03:06:09 GMT Message-Id: <201210180306.q9I369NI092263@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 03:06:10 -0000 TB --- 2012-10-18 00:20:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 00:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 00:20:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-18 00:20:00 - cleaning the object tree TB --- 2012-10-18 00:29:09 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 00:29:09 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-18 00:29:09 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 00:30:00 - /usr/local/bin/svn update /src TB --- 2012-10-18 00:30:07 - At svn revision 241656 TB --- 2012-10-18 00:30:08 - building world TB --- 2012-10-18 00:30:08 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 00:30:08 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 00:30:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 00:30:08 - SRCCONF=/dev/null TB --- 2012-10-18 00:30:08 - TARGET=i386 TB --- 2012-10-18 00:30:08 - TARGET_ARCH=i386 TB --- 2012-10-18 00:30:08 - TZ=UTC TB --- 2012-10-18 00:30:08 - __MAKE_CONF=/dev/null TB --- 2012-10-18 00:30:08 - cd /src TB --- 2012-10-18 00:30:08 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 00:30:17 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Oct 18 02:57:34 UTC 2012 TB --- 2012-10-18 02:57:34 - generating LINT kernel config TB --- 2012-10-18 02:57:34 - cd /src/sys/i386/conf TB --- 2012-10-18 02:57:34 - /usr/bin/make -B LINT TB --- 2012-10-18 02:57:34 - cd /src/sys/i386/conf TB --- 2012-10-18 02:57:34 - /usr/sbin/config -m LINT TB --- 2012-10-18 02:57:34 - building LINT kernel TB --- 2012-10-18 02:57:34 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 02:57:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 02:57:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 02:57:34 - SRCCONF=/dev/null TB --- 2012-10-18 02:57:34 - TARGET=i386 TB --- 2012-10-18 02:57:34 - TARGET_ARCH=i386 TB --- 2012-10-18 02:57:34 - TZ=UTC TB --- 2012-10-18 02:57:34 - __MAKE_CONF=/dev/null TB --- 2012-10-18 02:57:34 - cd /src TB --- 2012-10-18 02:57:34 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Oct 18 02:57:35 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/bwiphy.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/bwirf.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/if_bwi.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/if_bwi_pci.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bxe/if_bxe.c cc1: warnings being treated as errors /src/sys/dev/bxe/if_bxe.c: In function 'bxe_attach': /src/sys/dev/bxe/if_bxe.c:2143: warning: large integer implicitly truncated to unsigned type [-Woverflow] *** [if_bxe.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 03:06:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 03:06:09 - ERROR: failed to build LINT kernel TB --- 2012-10-18 03:06:09 - 7045.35 user 1011.38 system 9968.83 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 04:38:11 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 91146215; Thu, 18 Oct 2012 04:38:11 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 99FF78FC0A; Thu, 18 Oct 2012 04:38:10 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id b5so6906749lbd.13 for ; Wed, 17 Oct 2012 21:38:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=uM/J385GrOBgcsZJ+Z/kRu9sW66fiRsZTLGHsQvT0y8=; b=kFDnwkACw65FGGyd3TvPNeH2pghByGwQY9/Z7VDIb2U1CI/GUnPFeJ2YGkDO/lja+M 5cfvptZw5Q0OIvk1/I6p5G06rk0tmaE3vFhLvovO9rTX/TuLmH8UTZR3qtjMr15xS3qT Ue4SjMl5Q7Kd6vAaiwkg4Q501GAu93OhXS4IWlPb2Mk8M8CGxzts520S0XskTl3pHgix 8z8laElNSq4K9rSQ0gpk0Jrc/fwLznDY6YtTr9nmBiQV00PSTJBLYT/7nAkwfyp7qd5b pjsmDqJ+v8YB1U3rA874Vw7kjz2bKDNqgbL9ObuRR7lht5KsX9N4L1rhmpZKpy8IXwEo ZDhw== Received: by 10.152.110.229 with SMTP id id5mr17420813lab.36.1350535088971; Wed, 17 Oct 2012 21:38:08 -0700 (PDT) Received: from ?IPv6:2001:470:28:4ba:bd0d:c674:d614:f7e2? (altair.xvoid.org. [2001:470:28:4ba:bd0d:c674:d614:f7e2]) by mx.google.com with ESMTPS id m6sm5443806lbh.10.2012.10.17.21.38.05 (version=SSLv3 cipher=OTHER); Wed, 17 Oct 2012 21:38:08 -0700 (PDT) Message-ID: <507F87AF.10600@gmail.com> Date: Thu, 18 Oct 2012 08:38:07 +0400 From: Yuri Pankov User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: Andriy Gapon Subject: Re: Regression with ZFS on recent current References: <507EE9C1.7060800@madpilot.net> <507F1D9E.3010803@FreeBSD.org> <507F26F7.8090302@FreeBSD.org> In-Reply-To: <507F26F7.8090302@FreeBSD.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: "current@FreeBSD.org" , Guido Falsi , Martin Matuska X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 04:38:11 -0000 On Thu, 18 Oct 2012 00:45:27 +0300, Andriy Gapon wrote: > on 18/10/2012 00:05 Andriy Gapon said the following: >> on 17/10/2012 20:24 Guido Falsi said the following: >>> Hi! >>> >>> While testing portshaker I found a regression in latest current. >>> >>> portshaker depends on ZFS(when enabling ZFS support) remounting >>> filesystems on the fly when changing the mountpoint property. This is >>> working as expected on 9.x while on 10-current is not working. Problem >>> has appeared sometime before October 3rd. >> >> Can you clarify what you mean but this date? >> That the problem didn't exist in head until recently? Can you name a date when >> the problem didn't exists in head then? > > Oh, hmm, not sure if it is a bug that we imported from upstream or a porting > mistake. Before r238391 do_prefix variable in zfs_prop_set (in > cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c) was always initialized. > Now it is either explicitly set to B_FALSE or left alone uninitialized. > > http://svnweb.freebsd.org/base/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c?r1=237119&r2=238391&pathrev=238391 Not sure if it's helpful, but I can't reproduce the issue with pretty recent illumos-gate (at r13853): sirius:root:~# zfs create -o mountpoint=/test rpool/test sirius:root:~# touch /test/baz sirius:root:~# zfs set mountpoint=/foo rpool/test sirius:root:~# ls -ld /foo/ drwxr-xr-x 2 root root 3 Oct 18 08:36 /foo/ sirius:root:~# ls -l /foo/ total 1 -rw-r--r-- 1 root root 0 Oct 18 08:36 baz sirius:root:~# zfs list rpool/test NAME USED AVAIL REFER MOUNTPOINT rpool/test 31K 737G 31K /foo >>> Here is some sample output from a9.x machine and a 10-current one: >>> >>> root@micro:~ [0]# uname -a >>> FreeBSD micro.madpilot.net 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 >>> r239180: Sat Aug 11 00:14:47 CEST 2012 >>> root@micro.madpilot.net:/usr/obj/usr/src/sys/MICRO amd64 >>> root@micro:~ [0]# zfs create tank/test >>> root@micro:~ [0]# touch /test/baz >>> root@micro:~ [0]# zfs set mountpoint=/foo tank/test >>> root@micro:~ [0]# ls -ld /foo >>> drwxr-xr-x 2 root wheel 3 Oct 17 19:18 /foo >>> root@micro:~ [0]# ls -l /foo/ >>> total 1 >>> -rw-r--r-- 1 root wheel 0 Oct 17 19:18 baz >>> root@micro:~ [0]# zfs list tank/test >>> NAME USED AVAIL REFER MOUNTPOINT >>> tank/test 144K 826G 144K /foo >>> >>> >>> root@marvin:~ [0]# uname -a >>> FreeBSD marvin.madpilot.net 10.0-CURRENT FreeBSD 10.0-CURRENT #7 >>> r241638: Wed Oct 17 14:33:18 CEST 2012 >>> root@marvin.madpilot.net:/usr/obj/usr/src/sys/MARVIN amd64 >>> root@marvin:~ [0]# zfs create tank/test >>> root@marvin:~ [0]# touch /test/baz >>> root@marvin:~ [0]# zfs set mountpoint=/foo tank/test >>> root@marvin:~ [0]# ls -ld /foo >>> ls: /foo: No such file or directory >>> root@marvin:~ [1]# ls -l /foo/ >>> ls: /foo/: No such file or directory >>> root@marvin:~ [1]# ls -ld /test >>> drwxr-xr-x 2 root wheel 3 Oct 17 19:19 /test >>> root@marvin:~ [0]# zfs list tank/test >>> NAME USED AVAIL REFER MOUNTPOINT >>> tank/test 31K 240G 31K /foo >>> >>> >>> Is this known? is the new behavior expected? >>> >>> Am I doing something stupid? >>> >>> Thanks in advance >>> >> >> > > From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 05:36:39 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EEF49A5E; Thu, 18 Oct 2012 05:36:39 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id BBF628FC08; Thu, 18 Oct 2012 05:36:39 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9I5acqY092887; Thu, 18 Oct 2012 01:36:38 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9I5acEC092880; Thu, 18 Oct 2012 05:36:38 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 05:36:38 GMT Message-Id: <201210180536.q9I5acEC092880@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 05:36:40 -0000 TB --- 2012-10-18 03:06:09 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 03:06:09 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 03:06:09 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2012-10-18 03:06:09 - cleaning the object tree TB --- 2012-10-18 03:07:24 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 03:07:24 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2012-10-18 03:07:24 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 03:08:19 - /usr/local/bin/svn update /src TB --- 2012-10-18 03:08:25 - At svn revision 241671 TB --- 2012-10-18 03:08:26 - building world TB --- 2012-10-18 03:08:26 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 03:08:26 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 03:08:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 03:08:26 - SRCCONF=/dev/null TB --- 2012-10-18 03:08:26 - TARGET=powerpc TB --- 2012-10-18 03:08:26 - TARGET_ARCH=powerpc TB --- 2012-10-18 03:08:26 - TZ=UTC TB --- 2012-10-18 03:08:26 - __MAKE_CONF=/dev/null TB --- 2012-10-18 03:08:26 - cd /src TB --- 2012-10-18 03:08:26 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 03:08:31 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Oct 18 05:32:21 UTC 2012 TB --- 2012-10-18 05:32:21 - generating LINT kernel config TB --- 2012-10-18 05:32:21 - cd /src/sys/powerpc/conf TB --- 2012-10-18 05:32:21 - /usr/bin/make -B LINT TB --- 2012-10-18 05:32:21 - cd /src/sys/powerpc/conf TB --- 2012-10-18 05:32:21 - /usr/sbin/config -m LINT TB --- 2012-10-18 05:32:21 - building LINT kernel TB --- 2012-10-18 05:32:21 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 05:32:21 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 05:32:21 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 05:32:21 - SRCCONF=/dev/null TB --- 2012-10-18 05:32:21 - TARGET=powerpc TB --- 2012-10-18 05:32:21 - TARGET_ARCH=powerpc TB --- 2012-10-18 05:32:21 - TZ=UTC TB --- 2012-10-18 05:32:21 - __MAKE_CONF=/dev/null TB --- 2012-10-18 05:32:21 - cd /src TB --- 2012-10-18 05:32:21 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Oct 18 05:32:21 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/dev/bwi/bwiphy.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/dev/bwi/bwirf.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/dev/bwi/if_bwi.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/dev/bwi/if_bwi_pci.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/dev/bxe/if_bxe.c cc1: warnings being treated as errors /src/sys/dev/bxe/if_bxe.c: In function 'bxe_attach': /src/sys/dev/bxe/if_bxe.c:2143: warning: large integer implicitly truncated to unsigned type [-Woverflow] *** [if_bxe.o] Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 05:36:38 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 05:36:38 - ERROR: failed to build LINT kernel TB --- 2012-10-18 05:36:38 - 7087.26 user 942.34 system 9028.69 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 05:39:38 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3BC5DBB5; Thu, 18 Oct 2012 05:39:38 +0000 (UTC) (envelope-from yuri.pankov@gmail.com) Received: from mail-la0-f54.google.com (mail-la0-f54.google.com [209.85.215.54]) by mx1.freebsd.org (Postfix) with ESMTP id 484D08FC0A; Thu, 18 Oct 2012 05:39:36 +0000 (UTC) Received: by mail-la0-f54.google.com with SMTP id e12so6824672lag.13 for ; Wed, 17 Oct 2012 22:39:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=0sKi1hbi5/kWAyukdQy50L6CSM9EGtkAPg1xRV8Cocc=; b=S8cW/ts6exnl/nkx6sVWO7MciGZRj/ng6jYockYNRE98iESEmU2Uc5GXzEMqfTAxL8 KOwgWKW7ixJ7NkEVl3ulNHOfWe5ph8SC9NpA77Esd/Py7w2/GIxdtMWppjz6w6dcgXsV 9WHaTrZxxcB65/c1LDhgoL6zKcDA2Nl1YTtFFFj/QL+XdnaoHa29GyseJ+xAcrtGuGcn ZpmejxzRlRct30R+zuPuWOtGwS6mgEI8d5xH0pZAkw6OuNT8Jc8hyeGlt1GwP7Uax9rG 3K6Xe6tiCMrtozsSIqKO1QCxX3fyPiNEPiQ2mQk6bkzukWouNrOX+ZJMtQ5PVYLYep4k DkiQ== Received: by 10.152.105.44 with SMTP id gj12mr12789269lab.19.1350538775660; Wed, 17 Oct 2012 22:39:35 -0700 (PDT) Received: from ?IPv6:2001:470:28:4ba:bd0d:c674:d614:f7e2? (altair.xvoid.org. [2001:470:28:4ba:bd0d:c674:d614:f7e2]) by mx.google.com with ESMTPS id y5sm7209868lbf.16.2012.10.17.22.39.31 (version=SSLv3 cipher=OTHER); Wed, 17 Oct 2012 22:39:34 -0700 (PDT) Message-ID: <507F9616.8040000@gmail.com> Date: Thu, 18 Oct 2012 09:39:34 +0400 From: Yuri Pankov User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: Andriy Gapon Subject: Re: Regression with ZFS on recent current References: <507EE9C1.7060800@madpilot.net> <507F1D9E.3010803@FreeBSD.org> <507F26F7.8090302@FreeBSD.org> <507F87AF.10600@gmail.com> In-Reply-To: <507F87AF.10600@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: Martin Matuska , "current@FreeBSD.org" , Guido Falsi X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 05:39:38 -0000 On Thu, 18 Oct 2012 08:38:07 +0400, Yuri Pankov wrote: > On Thu, 18 Oct 2012 00:45:27 +0300, Andriy Gapon wrote: >> on 18/10/2012 00:05 Andriy Gapon said the following: >>> on 17/10/2012 20:24 Guido Falsi said the following: >>>> Hi! >>>> >>>> While testing portshaker I found a regression in latest current. >>>> >>>> portshaker depends on ZFS(when enabling ZFS support) remounting >>>> filesystems on the fly when changing the mountpoint property. This is >>>> working as expected on 9.x while on 10-current is not working. Problem >>>> has appeared sometime before October 3rd. >>> >>> Can you clarify what you mean but this date? >>> That the problem didn't exist in head until recently? Can you name a >>> date when >>> the problem didn't exists in head then? >> >> Oh, hmm, not sure if it is a bug that we imported from upstream or a >> porting >> mistake. Before r238391 do_prefix variable in zfs_prop_set (in >> cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c) was >> always initialized. >> Now it is either explicitly set to B_FALSE or left alone uninitialized. >> >> http://svnweb.freebsd.org/base/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c?r1=237119&r2=238391&pathrev=238391 >> > > Not sure if it's helpful, but I can't reproduce the issue with pretty > recent illumos-gate (at r13853): > > sirius:root:~# zfs create -o mountpoint=/test rpool/test > sirius:root:~# touch /test/baz > sirius:root:~# zfs set mountpoint=/foo rpool/test > sirius:root:~# ls -ld /foo/ > drwxr-xr-x 2 root root 3 Oct 18 08:36 /foo/ > sirius:root:~# ls -l /foo/ > total 1 > -rw-r--r-- 1 root root 0 Oct 18 08:36 baz > sirius:root:~# zfs list rpool/test > NAME USED AVAIL REFER MOUNTPOINT > rpool/test 31K 737G 31K /foo I see that it's already resolved, sorry for the noise. >>>> Here is some sample output from a9.x machine and a 10-current one: >>>> >>>> root@micro:~ [0]# uname -a >>>> FreeBSD micro.madpilot.net 9.1-PRERELEASE FreeBSD 9.1-PRERELEASE #0 >>>> r239180: Sat Aug 11 00:14:47 CEST 2012 >>>> root@micro.madpilot.net:/usr/obj/usr/src/sys/MICRO amd64 >>>> root@micro:~ [0]# zfs create tank/test >>>> root@micro:~ [0]# touch /test/baz >>>> root@micro:~ [0]# zfs set mountpoint=/foo tank/test >>>> root@micro:~ [0]# ls -ld /foo >>>> drwxr-xr-x 2 root wheel 3 Oct 17 19:18 /foo >>>> root@micro:~ [0]# ls -l /foo/ >>>> total 1 >>>> -rw-r--r-- 1 root wheel 0 Oct 17 19:18 baz >>>> root@micro:~ [0]# zfs list tank/test >>>> NAME USED AVAIL REFER MOUNTPOINT >>>> tank/test 144K 826G 144K /foo >>>> >>>> >>>> root@marvin:~ [0]# uname -a >>>> FreeBSD marvin.madpilot.net 10.0-CURRENT FreeBSD 10.0-CURRENT #7 >>>> r241638: Wed Oct 17 14:33:18 CEST 2012 >>>> root@marvin.madpilot.net:/usr/obj/usr/src/sys/MARVIN amd64 >>>> root@marvin:~ [0]# zfs create tank/test >>>> root@marvin:~ [0]# touch /test/baz >>>> root@marvin:~ [0]# zfs set mountpoint=/foo tank/test >>>> root@marvin:~ [0]# ls -ld /foo >>>> ls: /foo: No such file or directory >>>> root@marvin:~ [1]# ls -l /foo/ >>>> ls: /foo/: No such file or directory >>>> root@marvin:~ [1]# ls -ld /test >>>> drwxr-xr-x 2 root wheel 3 Oct 17 19:19 /test >>>> root@marvin:~ [0]# zfs list tank/test >>>> NAME USED AVAIL REFER MOUNTPOINT >>>> tank/test 31K 240G 31K /foo >>>> >>>> >>>> Is this known? is the new behavior expected? >>>> >>>> Am I doing something stupid? >>>> >>>> Thanks in advance >>>> >>> >>> >> >> > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 06:00:04 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 62B93128; Thu, 18 Oct 2012 06:00:04 +0000 (UTC) (envelope-from mad@madpilot.net) Received: from micro.madpilot.net (micro.madpilot.net [88.149.173.206]) by mx1.freebsd.org (Postfix) with ESMTP id EF53A8FC08; Thu, 18 Oct 2012 06:00:03 +0000 (UTC) Received: from micro.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP id 3Xj0364lmnz32Q; Thu, 18 Oct 2012 08:00:02 +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=1350540000; x=1352354401; bh=hOrZ8kagDxapmOYOsI9JLYgwKJiMnU0eL/Os9Hm4b3I=; b= sBUYZgHuPQcfN9XHiVn+p+9wtIuSR4wn+dWL4JdZ22HvNC7YDUvjernYXa24UHo1 tGEILDwVdfwauMMm5vM8Xg5vmvkk9L4zSOw0Pi1qnV7m7T7ia2TBV1rm/vPX/9ht VCsOldnrBdFLY+XkWoI8TB9OFU5E6gfy9ctBnwnWm3E= X-Virus-Scanned: amavisd-new at madpilot.net Received: from micro.madpilot.net ([127.0.0.1]) by micro.madpilot.net (micro.madpilot.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WUlAD9y2N9Az; Thu, 18 Oct 2012 08:00:00 +0200 (CEST) Received: from marvin.madpilot.net (localhost [127.0.0.1]) by micro.madpilot.net (Postfix) with ESMTP; Thu, 18 Oct 2012 08:00:00 +0200 (CEST) Message-ID: <507F9AE0.7060500@madpilot.net> Date: Thu, 18 Oct 2012 08:00:00 +0200 From: Guido Falsi User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 To: Andriy Gapon Subject: Re: Regression with ZFS on recent current [solved] References: <507EE9C1.7060800@madpilot.net> <507F1D9E.3010803@FreeBSD.org> <507F26F7.8090302@FreeBSD.org> <507F308F.90203@madpilot.net> <507F3124.6060806@madpilot.net> In-Reply-To: <507F3124.6060806@madpilot.net> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: Martin Matuska , "current@FreeBSD.org" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 06:00:04 -0000 On 10/18/12 00:28, Guido Falsi wrote: > On 10/18/12 00:26, Guido Falsi wrote: > >>> Oh, hmm, not sure if it is a bug that we imported from upstream or a porting >>> mistake. Before r238391 do_prefix variable in zfs_prop_set (in >>> cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c) was always initialized. >>> Now it is either explicitly set to B_FALSE or left alone uninitialized. >>> >>> http://svnweb.freebsd.org/base/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c?r1=237119&r2=238391&pathrev=238391 >>> >> >> I can try reverting this diff and see if it solves the problem. Thanks >> for pointing out this commit. I'll report back as soon as I have tested >> this. >> > > I see a fix has already been committed. I'm updating my sources and > trying again. Thank you a lot! > Just a quick reply to note that after updating the problem is now solved. Thanks again! -- Guido Falsi From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 07:35:58 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6AAAC20E for ; Thu, 18 Oct 2012 07:35:58 +0000 (UTC) (envelope-from yerenkow@gmail.com) Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) by mx1.freebsd.org (Postfix) with ESMTP id 2A1688FC16 for ; Thu, 18 Oct 2012 07:35:57 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id k10so17309784iea.13 for ; Thu, 18 Oct 2012 00:35:57 -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=7vgu2ueygbbZ7RXzk6EdrmQGMfw+QGeHTsYAu8VW04s=; b=WaqaURgHFFUOcEw6api513r7Edm4Bdw4FWrpwSTKH/d7uT7QPwxKzxxXp6Z2VA9pCA b6/sorC894bWfpXDmG9VxwZZ8uKH0g9YqlgHj1JtpnFjlH2t2RHnKj4fTG7GBrtVni/c mVYbWE9L7h1jcwCRn/yO2o8FFS1W+Pys7g582EiP/haMOwG+OSpT1QJiUx1R0LPg2jhn kTJAgXsqUykCxNU6IqqP3iG35CZ/7rmIIEbNGTxx3vTyJlielcC71I4mcC1xM8x9vfxW GhYvkMnXrtNmcmDw6lae1T+258Qi9BaGganStC/uWWDPZQvfbVmT/kYc6vPExyDHmTZM ZwaA== MIME-Version: 1.0 Received: by 10.50.42.197 with SMTP id q5mr3945235igl.21.1350545757467; Thu, 18 Oct 2012 00:35:57 -0700 (PDT) Received: by 10.64.32.10 with HTTP; Thu, 18 Oct 2012 00:35:57 -0700 (PDT) Date: Thu, 18 Oct 2012 10:35:57 +0300 Message-ID: Subject: A little question about safe mode From: Alexander Yerenkow To: freebsd-current Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 07:35:58 -0000 Hello there. I have problem here, and don't know if it's bug or "feature" :) If I prerare boot media (hdd, sd card,usb, etc) with FreeBSD, and NOT create there fstab, I see such behavior: 1. I need enter manually where from mount root (e.g. ufs:ada0s1a or ufs:ada0s1a rw) 2. If I enter ufs:ada0s1a rw - I have / mounted in read-only anyway. <== Is this bug?... 3. If I try to make it rw, with commands mount -o rw -u /dev/ada0s1a / there is no errors, but root is still RO. 4. I can't umount / remount some elsewhere this disk, just to create fstab (it's already mounted and can't be updated). So, is this as-by-design, that you need "any other" media to boot, just to create fstab, or there is "rw" mode broken, or I just missed something? It's very disappointing to be able boot interactively into system, but have no way to "fix" fstab to make it non-interactively bootable :) Thanks. -- Regards, Alexander Yerenkow From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 07:59:09 2012 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10638B58 for ; Thu, 18 Oct 2012 07:59:09 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 54BA08FC14 for ; Thu, 18 Oct 2012 07:59:07 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id KAA14482; Thu, 18 Oct 2012 10:59:05 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1TOl0T-0003lb-7t; Thu, 18 Oct 2012 10:59:05 +0300 Message-ID: <507FB6C7.50402@FreeBSD.org> Date: Thu, 18 Oct 2012 10:59:03 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 To: Alexander Yerenkow Subject: Re: A little question about safe mode References: In-Reply-To: X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 07:59:09 -0000 First, I see "safe mode" mentioned in the subject, but nowhere in the body of the message? So, what's up with the safe mode? :-) on 18/10/2012 10:35 Alexander Yerenkow said the following: > Hello there. > I have problem here, and don't know if it's bug or "feature" :) > If I prerare boot media (hdd, sd card,usb, etc) with FreeBSD, and NOT > create there fstab, I see such behavior: > > 1. I need enter manually where from mount root (e.g. ufs:ada0s1a or > ufs:ada0s1a rw) This is a feature. You might want consider using options ROOTDEVNAME in your kernel. > 2. If I enter ufs:ada0s1a rw - I have / mounted in read-only anyway. <== Is > this bug?... It looks like a feature. The low-level mountroot code always mounts / as r/o. It's supposed to be later remounted as r/w by rc.d/root script. > 3. If I try to make it rw, with commands > mount -o rw -u /dev/ada0s1a / > there is no errors, but root is still RO. This sounds like a bug. Is there anything on the system console? > 4. I can't umount / remount some elsewhere this disk, just to create fstab > (it's already mounted and can't be updated). > > So, is this as-by-design, that you need "any other" media to boot, just to > create fstab, or there is "rw" mode broken, or I just missed something? > > It's very disappointing to be able boot interactively into system, but have > no way to "fix" fstab to make it non-interactively bootable :) You can try to create an md-based filesystem, mount it under /mnt and then unionfs-mount it over /etc. -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 09:11:34 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF10BF89; Thu, 18 Oct 2012 09:11:34 +0000 (UTC) (envelope-from yerenkow@gmail.com) Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) by mx1.freebsd.org (Postfix) with ESMTP id 817368FC0C; Thu, 18 Oct 2012 09:11:34 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id k10so17459538iea.13 for ; Thu, 18 Oct 2012 02:11:33 -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=oImP3+Tdr7ath0FHhTMlROB0WxTe1W+PsQELRC7B70k=; b=owLsrDrdTpedIExep8HtOoYFpFJw40TBdyuph+WBAIgG7HTH0VRbKMH06CgcZYs3Ko 4azmT05+FP7gfTmbTrzZoHN00bvoNrSNVPNAHayV5mXqA5+jjhaRhN2/aiS3hE8g1P4+ KPYEobppvc0ZSo/lURp6woL3bXGFZ35eFeXSJuHJtL6txDpLWDVqdDKObaWgY8JG93sA jmP27PhfSad7/iLBexbhUzLqWih/aIvgw0jQ9qU3MC7UlQQNeEVCEl8KawPSCSjyJflW sPzXZj7/8F8QcpY5fpyqYlQn2t7MB74KbkxAdZnE2HneoDRBBoZH1POoInjbSg/3yHAh qvFg== MIME-Version: 1.0 Received: by 10.42.52.5 with SMTP id h5mr2887653icg.50.1350551493738; Thu, 18 Oct 2012 02:11:33 -0700 (PDT) Received: by 10.64.32.10 with HTTP; Thu, 18 Oct 2012 02:11:33 -0700 (PDT) In-Reply-To: <507FB6C7.50402@FreeBSD.org> References: <507FB6C7.50402@FreeBSD.org> Date: Thu, 18 Oct 2012 12:11:33 +0300 Message-ID: Subject: Re: A little question about safe mode From: Alexander Yerenkow To: Andriy Gapon Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 09:11:35 -0000 2012/10/18 Andriy Gapon > > First, I see "safe mode" mentioned in the subject, but nowhere in the body > of > the message? So, what's up with the safe mode? :-) > The single mode of course, which is forced :) Mistype, sorry. > on 18/10/2012 10:35 Alexander Yerenkow said the following: > > Hello there. > > I have problem here, and don't know if it's bug or "feature" :) > > If I prerare boot media (hdd, sd card,usb, etc) with FreeBSD, and NOT > > create there fstab, I see such behavior: > > > > 1. I need enter manually where from mount root (e.g. ufs:ada0s1a or > > ufs:ada0s1a rw) > > This is a feature. > You might want consider using options ROOTDEVNAME in your kernel. > Okay, then why little help there mentioning "rw" as an option? It's of bug in help there, or in parsing mount options (rw is ignored). If I'm not fully clear - I can provide some screenshots. > > > 2. If I enter ufs:ada0s1a rw - I have / mounted in read-only anyway. <== > Is > > this bug?... > > It looks like a feature. The low-level mountroot code always mounts / as > r/o. It's supposed to be later remounted as r/w by rc.d/root script. > Yes, it's feature when it mounting with default parameters (e.g. with none). But what about rw? > > > 3. If I try to make it rw, with commands > > mount -o rw -u /dev/ada0s1a / > > there is no errors, but root is still RO. > > This sounds like a bug. > Is there anything on the system console? > Nope, I'm already on console in single mode. > > 4. I can't umount / remount some elsewhere this disk, just to create > fstab > > (it's already mounted and can't be updated). > > > > So, is this as-by-design, that you need "any other" media to boot, just > to > > create fstab, or there is "rw" mode broken, or I just missed something? > > > > It's very disappointing to be able boot interactively into system, but > have > > no way to "fix" fstab to make it non-interactively bootable :) > > You can try to create an md-based filesystem, mount it under /mnt and then > unionfs-mount it over /etc. > That's not solve problem that on my rootfs no fstab exists, so next boot will bring me to same situation. If someone willing to help/debug with this thing - get any bootable media (like live FreeBSD), and just rename/move/delete fstab file, and simply boot. > > -- > Andriy Gapon > -- Regards, Alexander Yerenkow From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 09:17:34 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F027D28A; Thu, 18 Oct 2012 09:17:34 +0000 (UTC) (envelope-from fabien.thomas@netasq.com) Received: from work.netasq.com (gwlille.netasq.com [91.212.116.1]) by mx1.freebsd.org (Postfix) with ESMTP id 79BE38FC17; Thu, 18 Oct 2012 09:17:33 +0000 (UTC) Received: from [10.2.1.1] (unknown [10.2.1.1]) by work.netasq.com (Postfix) with ESMTPSA id 7F4DD2705545; Thu, 18 Oct 2012 11:17:27 +0200 (CEST) Subject: Re: [CFT]hwpmc update for sandybridge-e Mime-Version: 1.0 (Apple Message framework v1283) From: Fabien Thomas In-Reply-To: Date: Thu, 18 Oct 2012 11:17:27 +0200 Message-Id: <1894C6A5-2479-4D1B-9A68-1DC6818759F0@netasq.com> References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> To: hiren panchasara X-Mailer: Apple Mail (2.1283) Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Davide Italiano , freebsd-current , Jim Harris X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 09:17:35 -0000 Le 18 oct. 2012 =E0 03:07, hiren panchasara a =E9crit : > + Sean - who got dropped from the chain somehow.=20 >=20 > On Wed, Oct 17, 2012 at 6:01 PM, Jim Harris = wrote: > On Wed, Oct 17, 2012 at 5:55 PM, hiren panchasara > wrote: > > > > > > On Wed, Oct 17, 2012 at 5:12 PM, hiren panchasara > > wrote: > >> > >> > >> > >> On Wed, Oct 17, 2012 at 5:00 PM, Jim Harris = wrote: > >>> > >>> On Wed, Oct 17, 2012 at 3:57 PM, hiren panchasara > >>> wrote: > >>> > > >>> > >>> > > >>> > > >>> > Thanks for the pointers Jim! > >>> > > >>> > It seems that everything works now with: > >>> > > >>> > http://www.strugglingcoder.info/patches/hwpmc_sbx_3.txt > > > > > > I've also made following change in existing sandybridge (not xeon = :-) ) > > mappings. > > Let me know if that looks reasonable. > > > > > > @@ -2772,7 +2777,7 @@ > > __PMC_EV_ALIAS("MEM_LOAD_UOPS_LLC_HIT_RETIRED.XSNP_NONE", > > IAP_EVENT_D2H_08H) \ > > __PMC_EV_ALIAS("MEM_LOAD_UOPS_LLC_HIT_RETIRED.LLC_MISS", > > IAP_EVENT_D4H_02H) \ > > __PMC_EV_ALIAS("L2_TRANS.DEMAND_DATA_RD", IAP_EVENT_F0H_01H) = \ > > -__PMC_EV_ALIAS("L2_TRANS.RF0", IAP_EVENT_F0H_02H) = \ > > +__PMC_EV_ALIAS("L2_TRANS.RFO", IAP_EVENT_F0H_02H) = \ > > __PMC_EV_ALIAS("L2_TRANS.CODE_RD", IAP_EVENT_F0H_04H) = \ > > __PMC_EV_ALIAS("L2_TRANS.ALL_PF", IAP_EVENT_F0H_08H) = \ > > __PMC_EV_ALIAS("L2_TRANS.L1D_WB", IAP_EVENT_F0H_10H) = \ >=20 > This is a reasonable change, but it should be part of a separate = commit. >=20 > Sure, I will separate it out. >=20 > If there are no further comments, can I ask Sean to commit on my = behalf? Can you do the man page to include both in the commit? Except that point seems good to me. Thanks! Fabien >=20 > Thanks, > Hiren=20 From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 09:25:54 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35D49456 for ; Thu, 18 Oct 2012 09:25:54 +0000 (UTC) (envelope-from mueller23@insightbb.com) Received: from mail.insightbb.com (smtp1.insight.synacor.com [208.47.185.23]) by mx1.freebsd.org (Postfix) with ESMTP id EAD8F8FC18 for ; Thu, 18 Oct 2012 09:25:53 +0000 (UTC) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=2.0 cv=ZYCfx7pA c=1 sm=0 a=Dm9TOXL4taQ+Gy1KovpL+A==:17 a=8WOtGVI2NMsA:10 a=jLN7EqiLvroA:10 a=9YQ-1ebCAAAA:8 a=O7lrEePju-kA:10 a=7FMKqd2x0ZHJREQOobQA:9 a=Dm9TOXL4taQ+Gy1KovpL+A==:117 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp02.insight.synacor.com header.from=mueller23@insightbb.com; sender-id=softfail Authentication-Results: smtp02.insight.synacor.com smtp.mail=mueller23@insightbb.com; spf=softfail; sender-id=softfail Received-SPF: softfail (smtp02.insight.synacor.com: transitional domain insightbb.com does not designate 74.130.198.7 as permitted sender) Received: from [74.130.198.7] ([74.130.198.7:48859] helo=localhost) by mail.insightbb.com (envelope-from ) (ecelerity 2.2.3.49 r(42060/42061)) with ESMTP id C0/7D-23131-B1BCF705; Thu, 18 Oct 2012 05:25:47 -0400 Date: Thu, 18 Oct 2012 05:25:47 -0400 Message-ID: From: "Thomas Mueller" To: freebsd-current@freebsd.org Subject: Re: A little question about safe mode Cc: Alexander Yerenkow X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 09:25:54 -0000 > Hello there. > I have problem here, and don't know if it's bug or "feature" :) > If I prerare boot media (hdd, sd card,usb, etc) with FreeBSD, and NOT > create there fstab, I see such behavior: > 1. I need enter manually where from mount root (e.g. ufs:ada0s1a or > ufs:ada0s1a rw) > 2. If I enter ufs:ada0s1a rw - I have / mounted in read-only anyway. <== Is > this bug?... > 3. If I try to make it rw, with commands > mount -o rw -u /dev/ada0s1a / > there is no errors, but root is still RO. > 4. I can't umount / remount some elsewhere this disk, just to create fstab > (it's already mounted and can't be updated). > So, is this as-by-design, that you need "any other" media to boot, just to > create fstab, or there is "rw" mode broken, or I just missed something? > It's very disappointing to be able boot interactively into system, but have > no way to "fix" fstab to make it non-interactively bootable :) > Thanks. > -- > Regards, > Alexander Yerenkow I think you would need to mount -uw / u being for update. It looks like your post describes single-user mode rather than safe mode. When there is no /etc/fstab or the fstab is unworkable, you are put into single-user mode with a prompt to enter full path to shell or Enter for /bin/sh Maybe you could create your boot media with /etc/fstab pointing to the correct partition? Tom From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 09:38:00 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD82C884; Thu, 18 Oct 2012 09:38:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 9704B8FC0C; Thu, 18 Oct 2012 09:38:00 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9I9bx54007829; Thu, 18 Oct 2012 05:37:59 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9I9bxI5007828; Thu, 18 Oct 2012 09:37:59 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 09:37:59 GMT Message-Id: <201210180937.q9I9bxI5007828@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on arm/arm Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 09:38:00 -0000 TB --- 2012-10-18 08:00:01 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 08:00:01 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 08:00:01 - starting HEAD tinderbox run for arm/arm TB --- 2012-10-18 08:00:01 - cleaning the object tree TB --- 2012-10-18 08:05:01 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 08:05:01 - cd /tinderbox/HEAD/arm/arm TB --- 2012-10-18 08:05:01 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 08:06:59 - /usr/local/bin/svn update /src TB --- 2012-10-18 08:07:08 - At svn revision 241673 TB --- 2012-10-18 08:07:09 - building world TB --- 2012-10-18 08:07:09 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 08:07:09 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 08:07:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 08:07:09 - SRCCONF=/dev/null TB --- 2012-10-18 08:07:09 - TARGET=arm TB --- 2012-10-18 08:07:09 - TARGET_ARCH=arm TB --- 2012-10-18 08:07:09 - TZ=UTC TB --- 2012-10-18 08:07:09 - __MAKE_CONF=/dev/null TB --- 2012-10-18 08:07:09 - cd /src TB --- 2012-10-18 08:07:09 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 08:07:19 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Oct 18 09:08:22 UTC 2012 TB --- 2012-10-18 09:08:22 - cd /src/sys/arm/conf TB --- 2012-10-18 09:08:22 - /usr/sbin/config -m AC100 TB --- 2012-10-18 09:08:22 - skipping AC100 kernel TB --- 2012-10-18 09:08:22 - cd /src/sys/arm/conf TB --- 2012-10-18 09:08:22 - /usr/sbin/config -m ARMADAXP TB --- 2012-10-18 09:08:22 - skipping ARMADAXP kernel TB --- 2012-10-18 09:08:22 - cd /src/sys/arm/conf TB --- 2012-10-18 09:08:22 - /usr/sbin/config -m ATMEL TB --- 2012-10-18 09:08:22 - building ATMEL kernel TB --- 2012-10-18 09:08:22 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 09:08:22 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 09:08:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 09:08:22 - SRCCONF=/dev/null TB --- 2012-10-18 09:08:22 - TARGET=arm TB --- 2012-10-18 09:08:22 - TARGET_ARCH=arm TB --- 2012-10-18 09:08:22 - TZ=UTC TB --- 2012-10-18 09:08:22 - __MAKE_CONF=/dev/null TB --- 2012-10-18 09:08:22 - cd /src TB --- 2012-10-18 09:08:22 - /usr/bin/make -B buildkernel KERNCONF=ATMEL >>> Kernel build for ATMEL started on Thu Oct 18 09:08:22 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for ATMEL completed on Thu Oct 18 09:11:50 UTC 2012 TB --- 2012-10-18 09:11:50 - cd /src/sys/arm/conf TB --- 2012-10-18 09:11:50 - /usr/sbin/config -m AVILA TB --- 2012-10-18 09:11:50 - skipping AVILA kernel TB --- 2012-10-18 09:11:50 - cd /src/sys/arm/conf TB --- 2012-10-18 09:11:50 - /usr/sbin/config -m BEAGLEBONE TB --- 2012-10-18 09:11:50 - skipping BEAGLEBONE kernel TB --- 2012-10-18 09:11:50 - cd /src/sys/arm/conf TB --- 2012-10-18 09:11:50 - /usr/sbin/config -m BWCT TB --- 2012-10-18 09:11:50 - building BWCT kernel TB --- 2012-10-18 09:11:50 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 09:11:50 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 09:11:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 09:11:50 - SRCCONF=/dev/null TB --- 2012-10-18 09:11:50 - TARGET=arm TB --- 2012-10-18 09:11:50 - TARGET_ARCH=arm TB --- 2012-10-18 09:11:50 - TZ=UTC TB --- 2012-10-18 09:11:50 - __MAKE_CONF=/dev/null TB --- 2012-10-18 09:11:50 - cd /src TB --- 2012-10-18 09:11:50 - /usr/bin/make -B buildkernel KERNCONF=BWCT >>> Kernel build for BWCT started on Thu Oct 18 09:11:50 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for BWCT completed on Thu Oct 18 09:13:56 UTC 2012 TB --- 2012-10-18 09:13:56 - cd /src/sys/arm/conf TB --- 2012-10-18 09:13:56 - /usr/sbin/config -m CAMBRIA TB --- 2012-10-18 09:13:56 - skipping CAMBRIA kernel TB --- 2012-10-18 09:13:56 - cd /src/sys/arm/conf TB --- 2012-10-18 09:13:56 - /usr/sbin/config -m CNS11XXNAS TB --- 2012-10-18 09:13:56 - building CNS11XXNAS kernel TB --- 2012-10-18 09:13:56 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 09:13:56 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 09:13:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 09:13:56 - SRCCONF=/dev/null TB --- 2012-10-18 09:13:56 - TARGET=arm TB --- 2012-10-18 09:13:56 - TARGET_ARCH=arm TB --- 2012-10-18 09:13:56 - TZ=UTC TB --- 2012-10-18 09:13:56 - __MAKE_CONF=/dev/null TB --- 2012-10-18 09:13:56 - cd /src TB --- 2012-10-18 09:13:56 - /usr/bin/make -B buildkernel KERNCONF=CNS11XXNAS >>> Kernel build for CNS11XXNAS started on Thu Oct 18 09:13:56 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for CNS11XXNAS completed on Thu Oct 18 09:16:24 UTC 2012 TB --- 2012-10-18 09:16:24 - cd /src/sys/arm/conf TB --- 2012-10-18 09:16:24 - /usr/sbin/config -m CRB TB --- 2012-10-18 09:16:24 - skipping CRB kernel TB --- 2012-10-18 09:16:24 - cd /src/sys/arm/conf TB --- 2012-10-18 09:16:24 - /usr/sbin/config -m DB-78XXX TB --- 2012-10-18 09:16:24 - building DB-78XXX kernel TB --- 2012-10-18 09:16:24 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 09:16:24 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 09:16:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 09:16:24 - SRCCONF=/dev/null TB --- 2012-10-18 09:16:24 - TARGET=arm TB --- 2012-10-18 09:16:24 - TARGET_ARCH=arm TB --- 2012-10-18 09:16:24 - TZ=UTC TB --- 2012-10-18 09:16:24 - __MAKE_CONF=/dev/null TB --- 2012-10-18 09:16:24 - cd /src TB --- 2012-10-18 09:16:24 - /usr/bin/make -B buildkernel KERNCONF=DB-78XXX >>> Kernel build for DB-78XXX started on Thu Oct 18 09:16:24 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-78XXX completed on Thu Oct 18 09:19:10 UTC 2012 TB --- 2012-10-18 09:19:10 - cd /src/sys/arm/conf TB --- 2012-10-18 09:19:10 - /usr/sbin/config -m DB-88F5XXX TB --- 2012-10-18 09:19:10 - building DB-88F5XXX kernel TB --- 2012-10-18 09:19:10 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 09:19:10 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 09:19:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 09:19:10 - SRCCONF=/dev/null TB --- 2012-10-18 09:19:10 - TARGET=arm TB --- 2012-10-18 09:19:10 - TARGET_ARCH=arm TB --- 2012-10-18 09:19:10 - TZ=UTC TB --- 2012-10-18 09:19:10 - __MAKE_CONF=/dev/null TB --- 2012-10-18 09:19:10 - cd /src TB --- 2012-10-18 09:19:10 - /usr/bin/make -B buildkernel KERNCONF=DB-88F5XXX >>> Kernel build for DB-88F5XXX started on Thu Oct 18 09:19:10 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F5XXX completed on Thu Oct 18 09:21:51 UTC 2012 TB --- 2012-10-18 09:21:51 - cd /src/sys/arm/conf TB --- 2012-10-18 09:21:51 - /usr/sbin/config -m DB-88F6XXX TB --- 2012-10-18 09:21:51 - building DB-88F6XXX kernel TB --- 2012-10-18 09:21:51 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 09:21:51 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 09:21:51 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 09:21:51 - SRCCONF=/dev/null TB --- 2012-10-18 09:21:51 - TARGET=arm TB --- 2012-10-18 09:21:51 - TARGET_ARCH=arm TB --- 2012-10-18 09:21:51 - TZ=UTC TB --- 2012-10-18 09:21:51 - __MAKE_CONF=/dev/null TB --- 2012-10-18 09:21:51 - cd /src TB --- 2012-10-18 09:21:51 - /usr/bin/make -B buildkernel KERNCONF=DB-88F6XXX >>> Kernel build for DB-88F6XXX started on Thu Oct 18 09:21:51 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F6XXX completed on Thu Oct 18 09:24:44 UTC 2012 TB --- 2012-10-18 09:24:44 - cd /src/sys/arm/conf TB --- 2012-10-18 09:24:44 - /usr/sbin/config -m DOCKSTAR TB --- 2012-10-18 09:24:44 - building DOCKSTAR kernel TB --- 2012-10-18 09:24:44 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 09:24:44 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 09:24:44 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 09:24:44 - SRCCONF=/dev/null TB --- 2012-10-18 09:24:44 - TARGET=arm TB --- 2012-10-18 09:24:44 - TARGET_ARCH=arm TB --- 2012-10-18 09:24:44 - TZ=UTC TB --- 2012-10-18 09:24:44 - __MAKE_CONF=/dev/null TB --- 2012-10-18 09:24:44 - cd /src TB --- 2012-10-18 09:24:44 - /usr/bin/make -B buildkernel KERNCONF=DOCKSTAR >>> Kernel build for DOCKSTAR started on Thu Oct 18 09:24:44 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DOCKSTAR completed on Thu Oct 18 09:27:16 UTC 2012 TB --- 2012-10-18 09:27:16 - cd /src/sys/arm/conf TB --- 2012-10-18 09:27:16 - /usr/sbin/config -m EA3250 TB --- 2012-10-18 09:27:16 - building EA3250 kernel TB --- 2012-10-18 09:27:16 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 09:27:16 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 09:27:16 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 09:27:16 - SRCCONF=/dev/null TB --- 2012-10-18 09:27:16 - TARGET=arm TB --- 2012-10-18 09:27:16 - TARGET_ARCH=arm TB --- 2012-10-18 09:27:16 - TZ=UTC TB --- 2012-10-18 09:27:16 - __MAKE_CONF=/dev/null TB --- 2012-10-18 09:27:16 - cd /src TB --- 2012-10-18 09:27:16 - /usr/bin/make -B buildkernel KERNCONF=EA3250 >>> Kernel build for EA3250 started on Thu Oct 18 09:27:16 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EA3250 completed on Thu Oct 18 09:29:54 UTC 2012 TB --- 2012-10-18 09:29:54 - cd /src/sys/arm/conf TB --- 2012-10-18 09:29:54 - /usr/sbin/config -m EB9200 TB --- 2012-10-18 09:29:54 - building EB9200 kernel TB --- 2012-10-18 09:29:54 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 09:29:54 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 09:29:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 09:29:54 - SRCCONF=/dev/null TB --- 2012-10-18 09:29:54 - TARGET=arm TB --- 2012-10-18 09:29:54 - TARGET_ARCH=arm TB --- 2012-10-18 09:29:54 - TZ=UTC TB --- 2012-10-18 09:29:54 - __MAKE_CONF=/dev/null TB --- 2012-10-18 09:29:54 - cd /src TB --- 2012-10-18 09:29:54 - /usr/bin/make -B buildkernel KERNCONF=EB9200 >>> Kernel build for EB9200 started on Thu Oct 18 09:29:54 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EB9200 completed on Thu Oct 18 09:32:25 UTC 2012 TB --- 2012-10-18 09:32:25 - cd /src/sys/arm/conf TB --- 2012-10-18 09:32:25 - /usr/sbin/config -m EP80219 TB --- 2012-10-18 09:32:25 - skipping EP80219 kernel TB --- 2012-10-18 09:32:25 - cd /src/sys/arm/conf TB --- 2012-10-18 09:32:25 - /usr/sbin/config -m ETHERNUT5 TB --- 2012-10-18 09:32:25 - building ETHERNUT5 kernel TB --- 2012-10-18 09:32:25 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 09:32:25 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 09:32:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 09:32:25 - SRCCONF=/dev/null TB --- 2012-10-18 09:32:25 - TARGET=arm TB --- 2012-10-18 09:32:25 - TARGET_ARCH=arm TB --- 2012-10-18 09:32:25 - TZ=UTC TB --- 2012-10-18 09:32:25 - __MAKE_CONF=/dev/null TB --- 2012-10-18 09:32:25 - cd /src TB --- 2012-10-18 09:32:25 - /usr/bin/make -B buildkernel KERNCONF=ETHERNUT5 >>> Kernel build for ETHERNUT5 started on Thu Oct 18 09:32:26 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] ld -Bshareable -d -warn-common -o if_ef.ko if_ef.kld objcopy --strip-debug if_ef.ko ===> if_epair (all) cc -O -pipe -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /obj/arm.arm/src/sys/ETHERNUT5/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -I/obj/arm.arm/src/sys/ETHERNUT5 -mcpu=arm9 -ffreestanding -std=iso9899:1999 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -c /src/sys/modules/if_epair/../../net/if_epair.c cc1: warnings being treated as errors /src/sys/modules/if_epair/../../net/if_epair.c: In function 'epair_clone_create': /src/sys/modules/if_epair/../../net/if_epair.c:826: warning: large integer implicitly truncated to unsigned type [-Woverflow] /src/sys/modules/if_epair/../../net/if_epair.c:852: warning: large integer implicitly truncated to unsigned type [-Woverflow] *** [if_epair.o] Error code 1 Stop in /src/sys/modules/if_epair. *** [all] Error code 1 Stop in /src/sys/modules. *** [modules-all] Error code 1 Stop in /obj/arm.arm/src/sys/ETHERNUT5. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 09:37:59 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 09:37:59 - ERROR: failed to build ETHERNUT5 kernel TB --- 2012-10-18 09:37:59 - 3926.30 user 790.46 system 5878.62 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 10:34:34 2012 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C611CA9 for ; Thu, 18 Oct 2012 10:34:34 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 38C078FC0A for ; Thu, 18 Oct 2012 10:34:32 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id NAA16849; Thu, 18 Oct 2012 13:34:29 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1TOnQr-0003wY-2p; Thu, 18 Oct 2012 13:34:29 +0300 Message-ID: <507FDB33.10900@FreeBSD.org> Date: Thu, 18 Oct 2012 13:34:27 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 To: Alexander Yerenkow Subject: Re: A little question about safe mode References: <507FB6C7.50402@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 10:34:34 -0000 on 18/10/2012 12:11 Alexander Yerenkow said the following: > > > 2012/10/18 Andriy Gapon > > > > First, I see "safe mode" mentioned in the subject, but nowhere in the body of > the message? So, what's up with the safe mode? :-) > > > The single mode of course, which is forced :) Mistype, sorry. > > > on 18/10/2012 10:35 Alexander Yerenkow said the following: > > Hello there. > > I have problem here, and don't know if it's bug or "feature" :) > > If I prerare boot media (hdd, sd card,usb, etc) with FreeBSD, and NOT > > create there fstab, I see such behavior: > > > > 1. I need enter manually where from mount root (e.g. ufs:ada0s1a or > > ufs:ada0s1a rw) > > This is a feature. > You might want consider using options ROOTDEVNAME in your kernel. > > > Okay, then why little help there mentioning "rw" as an option? It's of bug in > help there, or in parsing mount options (rw is ignored). Again, it's a feature, "rw" is simply ignored. The help message is just trying to confuse you. > If I'm not fully clear - I can provide some screenshots. > > > > > 2. If I enter ufs:ada0s1a rw - I have / mounted in read-only anyway. <== Is > > this bug?... > > It looks like a feature. The low-level mountroot code always mounts / as r/o. > > It's supposed to be later remounted as r/w by rc.d/root script. > > > Yes, it's feature when it mounting with default parameters (e.g. with none). But > what about rw? This should be answered above. > > 3. If I try to make it rw, with commands > > mount -o rw -u /dev/ada0s1a / > > there is no errors, but root is still RO. > > This sounds like a bug. > Is there anything on the system console? > > > Nope, I'm already on console in single mode. > > > > 4. I can't umount / remount some elsewhere this disk, just to create fstab > > (it's already mounted and can't be updated). > > > > So, is this as-by-design, that you need "any other" media to boot, just to > > create fstab, or there is "rw" mode broken, or I just missed something? > > > > It's very disappointing to be able boot interactively into system, but have > > no way to "fix" fstab to make it non-interactively bootable :) > > You can try to create an md-based filesystem, mount it under /mnt and then > unionfs-mount it over /etc. > > > That's not solve problem that on my rootfs no fstab exists, so next boot will > bring me to same situation. You may try to edit /etc/fstab on top of unionfs and then see if you can remount the real root r/w. > If someone willing to help/debug with this thing - get any bootable media (like > live FreeBSD), and just rename/move/delete fstab file, and simply boot. There indeed appears to be a bug. Unfortunately, ENOTIME to dig into this. -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 10:42:26 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C1A2F14D; Thu, 18 Oct 2012 10:42:26 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 7DC2B8FC0C; Thu, 18 Oct 2012 10:42:26 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9IAgPjM051748; Thu, 18 Oct 2012 06:42:25 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9IAgP1D051744; Thu, 18 Oct 2012 10:42:25 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 10:42:25 GMT Message-Id: <201210181042.q9IAgP1D051744@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/pc98 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 10:42:26 -0000 TB --- 2012-10-18 08:00:01 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 08:00:01 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 08:00:01 - starting HEAD tinderbox run for i386/pc98 TB --- 2012-10-18 08:00:01 - cleaning the object tree TB --- 2012-10-18 08:04:10 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 08:04:10 - cd /tinderbox/HEAD/i386/pc98 TB --- 2012-10-18 08:04:10 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 08:06:06 - /usr/local/bin/svn update /src TB --- 2012-10-18 08:06:13 - At svn revision 241673 TB --- 2012-10-18 08:06:14 - building world TB --- 2012-10-18 08:06:14 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 08:06:14 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 08:06:14 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 08:06:14 - SRCCONF=/dev/null TB --- 2012-10-18 08:06:14 - TARGET=pc98 TB --- 2012-10-18 08:06:14 - TARGET_ARCH=i386 TB --- 2012-10-18 08:06:14 - TZ=UTC TB --- 2012-10-18 08:06:14 - __MAKE_CONF=/dev/null TB --- 2012-10-18 08:06:14 - cd /src TB --- 2012-10-18 08:06:14 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 08:06:24 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Oct 18 10:36:03 UTC 2012 TB --- 2012-10-18 10:36:03 - generating LINT kernel config TB --- 2012-10-18 10:36:03 - cd /src/sys/pc98/conf TB --- 2012-10-18 10:36:03 - /usr/bin/make -B LINT TB --- 2012-10-18 10:36:03 - cd /src/sys/pc98/conf TB --- 2012-10-18 10:36:03 - /usr/sbin/config -m LINT TB --- 2012-10-18 10:36:03 - building LINT kernel TB --- 2012-10-18 10:36:03 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 10:36:03 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 10:36:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 10:36:03 - SRCCONF=/dev/null TB --- 2012-10-18 10:36:03 - TARGET=pc98 TB --- 2012-10-18 10:36:03 - TARGET_ARCH=i386 TB --- 2012-10-18 10:36:03 - TZ=UTC TB --- 2012-10-18 10:36:03 - __MAKE_CONF=/dev/null TB --- 2012-10-18 10:36:03 - cd /src TB --- 2012-10-18 10:36:03 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Oct 18 10:36:03 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/bwiphy.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/bwirf.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/if_bwi.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/if_bwi_pci.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bxe/if_bxe.c cc1: warnings being treated as errors /src/sys/dev/bxe/if_bxe.c: In function 'bxe_attach': /src/sys/dev/bxe/if_bxe.c:2143: warning: large integer implicitly truncated to unsigned type [-Woverflow] *** [if_bxe.o] Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 10:42:25 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 10:42:25 - ERROR: failed to build LINT kernel TB --- 2012-10-18 10:42:25 - 6959.32 user 992.60 system 9744.20 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 10:44:28 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAE5B2B2; Thu, 18 Oct 2012 10:44:28 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id A6B188FC12; Thu, 18 Oct 2012 10:44:28 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9IAiSeV059924; Thu, 18 Oct 2012 06:44:28 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9IAiSx5059918; Thu, 18 Oct 2012 10:44:28 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 10:44:28 GMT Message-Id: <201210181044.q9IAiSx5059918@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 10:44:29 -0000 TB --- 2012-10-18 08:00:01 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 08:00:01 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 08:00:01 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-18 08:00:01 - cleaning the object tree TB --- 2012-10-18 08:04:16 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 08:04:16 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-18 08:04:16 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 08:06:21 - /usr/local/bin/svn update /src TB --- 2012-10-18 08:06:36 - At svn revision 241673 TB --- 2012-10-18 08:06:37 - building world TB --- 2012-10-18 08:06:37 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 08:06:37 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 08:06:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 08:06:37 - SRCCONF=/dev/null TB --- 2012-10-18 08:06:37 - TARGET=i386 TB --- 2012-10-18 08:06:37 - TARGET_ARCH=i386 TB --- 2012-10-18 08:06:37 - TZ=UTC TB --- 2012-10-18 08:06:37 - __MAKE_CONF=/dev/null TB --- 2012-10-18 08:06:37 - cd /src TB --- 2012-10-18 08:06:37 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 08:06:44 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Oct 18 10:37:03 UTC 2012 TB --- 2012-10-18 10:37:03 - generating LINT kernel config TB --- 2012-10-18 10:37:03 - cd /src/sys/i386/conf TB --- 2012-10-18 10:37:03 - /usr/bin/make -B LINT TB --- 2012-10-18 10:37:04 - cd /src/sys/i386/conf TB --- 2012-10-18 10:37:04 - /usr/sbin/config -m LINT TB --- 2012-10-18 10:37:04 - building LINT kernel TB --- 2012-10-18 10:37:04 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 10:37:04 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 10:37:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 10:37:04 - SRCCONF=/dev/null TB --- 2012-10-18 10:37:04 - TARGET=i386 TB --- 2012-10-18 10:37:04 - TARGET_ARCH=i386 TB --- 2012-10-18 10:37:04 - TZ=UTC TB --- 2012-10-18 10:37:04 - __MAKE_CONF=/dev/null TB --- 2012-10-18 10:37:04 - cd /src TB --- 2012-10-18 10:37:04 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Oct 18 10:37:04 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/bwiphy.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/bwirf.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/if_bwi.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bwi/if_bwi_pci.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/bxe/if_bxe.c cc1: warnings being treated as errors /src/sys/dev/bxe/if_bxe.c: In function 'bxe_attach': /src/sys/dev/bxe/if_bxe.c:2143: warning: large integer implicitly truncated to unsigned type [-Woverflow] *** [if_bxe.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 10:44:28 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 10:44:28 - ERROR: failed to build LINT kernel TB --- 2012-10-18 10:44:28 - 7054.73 user 1009.67 system 9867.08 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 10:48:55 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4AD9C5AF for ; Thu, 18 Oct 2012 10:48:55 +0000 (UTC) (envelope-from freebsd-current@m.gmane.org) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) by mx1.freebsd.org (Postfix) with ESMTP id 0077C8FC12 for ; Thu, 18 Oct 2012 10:48:54 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TOnet-0004qh-LT for freebsd-current@freebsd.org; Thu, 18 Oct 2012 12:48:59 +0200 Received: from l.saper.info ([91.121.203.103]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 18 Oct 2012 12:48:59 +0200 Received: from saper by l.saper.info with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 18 Oct 2012 12:48:59 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-current@freebsd.org From: Marcin Cieslak Subject: Regression: panic in camq_remove when plugging in Huawei IDEOS phone Date: Thu, 18 Oct 2012 10:48:43 +0000 (UTC) Organization: http://saper.info Lines: 49 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: l.saper.info X-Face: "MPx|KfVwz7Gg!ayb)rH,hKiCBJXvLY7t+%r1s0Uiw; (%xWn-C-H38.2Oa4JL|4Cx}a"V ~a pL4%i"s20r0%z0yZew?2><1ZfOFF27cPqcAKp?wG+-c&%BgXeJVm[lylYKH?j User-Agent: slrn/0.9.9p1 (FreeBSD) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 10:48:55 -0000 Hello, I got this crash in -CURRENT (r241671) when plugging in Huawei IDEOS Android mobile phone via USB. #10 0xffffffff802ab7a7 in heap_down (queue_array=0xfffffe0002f29878, index=Variable "index" is not available. ) at /usr/src/sys/cam/cam_queue.c:357 #11 0xffffffff802ab86e in camq_remove (queue=0xfffffe0002e9f880, index=49453168) at /usr/src/sys/cam/cam_queue.c:185 #12 0xffffffff802b0bf3 in xpt_run_dev_sendq (bus=0xfffffe0002e98d00) at cam_queue.h:210 ---Type to continue, or q to quit--- #13 0xffffffff802b150f in camisr_runqueue (V_queue=Variable "V_queue" is not available. ) at /usr/src/sys/cam/cam_xpt.c:5117 #14 0xffffffff802b171a in camisr (dummy=Variable "dummy" is not available. ) at /usr/src/sys/cam/cam_xpt.c:5017 #15 0xffffffff80767fab in intr_event_execute_handlers (p=Variable "p" is not available. ) at /usr/src/sys/kern/kern_intr.c:1272 #16 0xffffffff8076967f in ithread_loop (arg=0xfffffe00024b48c0) at /usr/src/sys/kern/kern_intr.c:1285 Some randomly collected data from the dump file: #11 0xffffffff802ab86e in camq_remove (queue=0xfffffe0002e9f880, index=49453168) at /usr/src/sys/cam/cam_queue.c:185 185 heap_down(queue->queue_array, index, queue->entries - 1); (kgdb) print queue $3 = (struct camq *) 0xfffffe0002e9f880 (kgdb) print *queue $4 = {queue_array = 0xfffffe0002f29878, array_size = 5, entries = 1, generation = 28, qfrozen_cnt = {0, 0, 0, 0, 0}} (kgdb) print *queue->queue_array $5 = (cam_pinfo *) 0x0 (kgdb) print queue->queue_array $6 = (cam_pinfo **) 0xfffffe0002f29878 (kgdb) print queue->queue_array[0] $7 = (cam_pinfo *) 0x0 (kgdb) print queue->queue_array[1] $8 = (cam_pinfo *) 0xfffffe0002d24800 I have a full core dump so I can poke around more. It did work when the machine was running a ca. 1 year old 9-something system. //Marcin From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 11:27:42 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CAF3BE94; Thu, 18 Oct 2012 11:27:42 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 8F3908FC16; Thu, 18 Oct 2012 11:27:42 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9IBRfdT037130; Thu, 18 Oct 2012 07:27:41 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9IBRfCB037129; Thu, 18 Oct 2012 11:27:41 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 11:27:41 GMT Message-Id: <201210181127.q9IBRfCB037129@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 11:27:42 -0000 TB --- 2012-10-18 08:00:01 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 08:00:01 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 08:00:01 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-10-18 08:00:01 - cleaning the object tree TB --- 2012-10-18 08:00:01 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 08:00:01 - cd /tinderbox/HEAD/amd64/amd64 TB --- 2012-10-18 08:00:01 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 08:01:04 - /usr/local/bin/svn update /src TB --- 2012-10-18 08:01:14 - At svn revision 241673 TB --- 2012-10-18 08:01:15 - building world TB --- 2012-10-18 08:01:15 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 08:01:15 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 08:01:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 08:01:15 - SRCCONF=/dev/null TB --- 2012-10-18 08:01:15 - TARGET=amd64 TB --- 2012-10-18 08:01:15 - TARGET_ARCH=amd64 TB --- 2012-10-18 08:01:15 - TZ=UTC TB --- 2012-10-18 08:01:15 - __MAKE_CONF=/dev/null TB --- 2012-10-18 08:01:15 - cd /src TB --- 2012-10-18 08:01:15 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 08:01:21 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Thu Oct 18 11:09:18 UTC 2012 TB --- 2012-10-18 11:09:18 - generating LINT kernel config TB --- 2012-10-18 11:09:18 - cd /src/sys/amd64/conf TB --- 2012-10-18 11:09:18 - /usr/bin/make -B LINT TB --- 2012-10-18 11:09:18 - cd /src/sys/amd64/conf TB --- 2012-10-18 11:09:18 - /usr/sbin/config -m LINT TB --- 2012-10-18 11:09:18 - building LINT kernel TB --- 2012-10-18 11:09:18 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 11:09:18 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 11:09:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 11:09:18 - SRCCONF=/dev/null TB --- 2012-10-18 11:09:18 - TARGET=amd64 TB --- 2012-10-18 11:09:18 - TARGET_ARCH=amd64 TB --- 2012-10-18 11:09:18 - TZ=UTC TB --- 2012-10-18 11:09:18 - __MAKE_CONF=/dev/null TB --- 2012-10-18 11:09:18 - cd /src TB --- 2012-10-18 11:09:18 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Oct 18 11:09:18 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/nvme/nvme.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/nvme/nvme_ctrlr.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/nvme/nvme_ctrlr_cmd.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/nvme/nvme_ns.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/nvme/nvme_ns_cmd.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/nvme/nvme_qpair.c /src/sys/dev/nvme/nvme_qpair.c: In function 'nvme_qpair_process_completions': /src/sys/dev/nvme/nvme_qpair.c:127: error: 'struct nvme_tracker' has no member named 'cmd' *** [nvme_qpair.o] Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 11:27:41 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 11:27:41 - ERROR: failed to build LINT kernel TB --- 2012-10-18 11:27:41 - 9038.30 user 1355.93 system 12460.62 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 11:45:42 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C0767724; Thu, 18 Oct 2012 11:45:42 +0000 (UTC) (envelope-from yerenkow@gmail.com) Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) by mx1.freebsd.org (Postfix) with ESMTP id 7641A8FC0C; Thu, 18 Oct 2012 11:45:41 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id k10so17729109iea.13 for ; Thu, 18 Oct 2012 04:45:41 -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=yK9is28JmckS4/2si+JEJc0p73Tf+SSDJ+cUmemcmfk=; b=dDKPZM/bsdOSqrmc3b3296s77oOnKa/aXspJ1m/Z8hoJUgSrCqFbmW+HsFe+qz44At MSUZo0pksh2yvexTKjy4CHmJUeEg/4jvkVRNIHWzxWaZxIFRBNaV97PqTVZgYBPTXfsY hGjuZ3nXs3ZLeAKfy1k2y4dHp1pveGceq1QgxqPbjaLB/lHywASYCSSJZ+umyrggT6cD 4ztvxdpDga0snZYUS5y6panNoA2KyzLVn8YaKrhLSmCOh01ujY2XMYSySn+xFDR0oohx l6H/w4whUX7oVWRRn5ZDogMLgU2dNh9nqbqyIrm4rOq4JQyJQVd19hnPpTngKXu4XPhY UKnA== MIME-Version: 1.0 Received: by 10.50.12.231 with SMTP id b7mr326308igc.7.1350560741588; Thu, 18 Oct 2012 04:45:41 -0700 (PDT) Received: by 10.64.32.10 with HTTP; Thu, 18 Oct 2012 04:45:41 -0700 (PDT) In-Reply-To: <507FDB33.10900@FreeBSD.org> References: <507FB6C7.50402@FreeBSD.org> <507FDB33.10900@FreeBSD.org> Date: Thu, 18 Oct 2012 14:45:41 +0300 Message-ID: Subject: Re: A little question about safe mode From: Alexander Yerenkow To: Andriy Gapon Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 11:45:42 -0000 Okay, anyway there's something wrong here, so I created misc/172849 -- Regards, Alexander Yerenkow From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 11:48:20 2012 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2F62F87B for ; Thu, 18 Oct 2012 11:48:20 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 763AF8FC14 for ; Thu, 18 Oct 2012 11:48:19 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id OAA17829; Thu, 18 Oct 2012 14:48:16 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1TOoaG-00043O-AE; Thu, 18 Oct 2012 14:48:16 +0300 Message-ID: <507FEC7F.4030306@FreeBSD.org> Date: Thu, 18 Oct 2012 14:48:15 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 To: Alexander Yerenkow Subject: Re: A little question about safe mode References: <507FB6C7.50402@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 11:48:20 -0000 on 18/10/2012 12:11 Alexander Yerenkow said the following: > 2012/10/18 Andriy Gapon > > > > First, I see "safe mode" mentioned in the subject, but nowhere in the body of > the message? So, what's up with the safe mode? :-) > > > The single mode of course, which is forced :) Mistype, sorry. I missed this part - what do you mean by "forced"? You can send the screenshots (as links). -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 13:14:00 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC215C40; Thu, 18 Oct 2012 13:14:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 5966D8FC08; Thu, 18 Oct 2012 13:14:00 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9IDDwr0012835; Thu, 18 Oct 2012 09:13:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9IDDvmY012822; Thu, 18 Oct 2012 13:13:57 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 13:13:57 GMT Message-Id: <201210181313.q9IDDvmY012822@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 13:14:01 -0000 TB --- 2012-10-18 10:44:28 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 10:44:28 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 10:44:28 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2012-10-18 10:44:28 - cleaning the object tree TB --- 2012-10-18 10:45:55 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 10:45:55 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2012-10-18 10:45:55 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 10:46:38 - /usr/local/bin/svn update /src TB --- 2012-10-18 10:46:45 - At svn revision 241679 TB --- 2012-10-18 10:46:46 - building world TB --- 2012-10-18 10:46:46 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 10:46:46 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 10:46:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 10:46:46 - SRCCONF=/dev/null TB --- 2012-10-18 10:46:46 - TARGET=powerpc TB --- 2012-10-18 10:46:46 - TARGET_ARCH=powerpc TB --- 2012-10-18 10:46:46 - TZ=UTC TB --- 2012-10-18 10:46:46 - __MAKE_CONF=/dev/null TB --- 2012-10-18 10:46:46 - cd /src TB --- 2012-10-18 10:46:46 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 10:46:51 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Oct 18 13:08:46 UTC 2012 TB --- 2012-10-18 13:08:46 - generating LINT kernel config TB --- 2012-10-18 13:08:46 - cd /src/sys/powerpc/conf TB --- 2012-10-18 13:08:46 - /usr/bin/make -B LINT TB --- 2012-10-18 13:08:46 - cd /src/sys/powerpc/conf TB --- 2012-10-18 13:08:46 - /usr/sbin/config -m LINT TB --- 2012-10-18 13:08:46 - building LINT kernel TB --- 2012-10-18 13:08:46 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 13:08:46 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 13:08:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 13:08:46 - SRCCONF=/dev/null TB --- 2012-10-18 13:08:46 - TARGET=powerpc TB --- 2012-10-18 13:08:46 - TARGET_ARCH=powerpc TB --- 2012-10-18 13:08:46 - TZ=UTC TB --- 2012-10-18 13:08:46 - __MAKE_CONF=/dev/null TB --- 2012-10-18 13:08:46 - cd /src TB --- 2012-10-18 13:08:46 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Oct 18 13:08:46 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] uudecode -o mwlboot.fw /src/sys/contrib/dev/mwl/mwlboot.fw.uu ld -b binary --no-warn-mismatch -d -warn-common -r -o mwlboot.fwo mwlboot.fw cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -ffreestanding -fstack-protector -Werror /src/sys/dev/mxge/if_mxge.c cc1: warnings being treated as errors /src/sys/dev/mxge/if_mxge.c: In function 'mxge_intr': /src/sys/dev/mxge/if_mxge.c:3020: warning: large integer implicitly truncated to unsigned type [-Woverflow] /src/sys/dev/mxge/if_mxge.c: In function 'mxge_attach': /src/sys/dev/mxge/if_mxge.c:4776: warning: large integer implicitly truncated to unsigned type [-Woverflow] *** [if_mxge.o] Error code 1 Stop in /obj/powerpc.powerpc/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 13:13:57 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 13:13:57 - ERROR: failed to build LINT kernel TB --- 2012-10-18 13:13:57 - 7155.37 user 941.96 system 8969.52 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 13:36:18 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 34DE042F; Thu, 18 Oct 2012 13:36:18 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from albert.catwhisker.org (m209-73.dsl.rawbw.com [198.144.209.73]) by mx1.freebsd.org (Postfix) with ESMTP id 04A108FC18; Thu, 18 Oct 2012 13:36:17 +0000 (UTC) Received: from albert.catwhisker.org (localhost [127.0.0.1]) by albert.catwhisker.org (8.14.5/8.14.5) with ESMTP id q9IDaG2w015507; Thu, 18 Oct 2012 06:36:16 -0700 (PDT) (envelope-from david@albert.catwhisker.org) Received: (from david@localhost) by albert.catwhisker.org (8.14.5/8.14.5/Submit) id q9IDaGi4015506; Thu, 18 Oct 2012 06:36:16 -0700 (PDT) (envelope-from david) Date: Thu, 18 Oct 2012 06:36:16 -0700 From: David Wolfskill To: current@freebsd.org Subject: buildkernel fails for i386 @r241679 -- suspect r241646 Message-ID: <20121018133616.GX1817@albert.catwhisker.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ByM1h5nouWwd3kz8" Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Cc: emax@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 13:36:18 -0000 --ByM1h5nouWwd3kz8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Presently running: FreeBSD g1-227.catwhisker.org 10.0-CURRENT FreeBSD 10.0-CURRENT #708 241627= M: Wed Oct 17 06:05:26 PDT 2012 root@g1-227.catwhisker.org:/usr/obj/usr= /src/sys/CANARY i386 buildkernel proceeds: =2E.. >>> stage 3.2: building everything =2E.. =3D=3D=3D> mxge (all) =3D=3D=3D> mxge/mxge (all) clang -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdi= nc -DHAVE_KERNEL_OPTION_HEADERS -include /common/S4/obj/usr/src/sys/CANAR= Y/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/common/S4/obj/usr= /src/sys/CANARY -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreesta= nding -fstack-protector -std=3Diso9899:1999 -Qunused-arguments -fstack-prot= ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi= ng-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-si= gn -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -= Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parenthese= s-equality -c /usr/src/sys/modules/mxge/mxge/../../../dev/mxge/mxge_lro.c clang -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdi= nc -DHAVE_KERNEL_OPTION_HEADERS -include /common/S4/obj/usr/src/sys/CANAR= Y/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/common/S4/obj/usr= /src/sys/CANARY -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreesta= nding -fstack-protector -std=3Diso9899:1999 -Qunused-arguments -fstack-prot= ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissi= ng-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-si= gn -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -= Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parenthese= s-equality -c /usr/src/sys/modules/mxge/mxge/../../../dev/mxge/if_mxge.c ctfconvert -L VERSION -g mxge_lro.o /usr/src/sys/modules/mxge/mxge/../../../dev/mxge/if_mxge.c:3020:29: error: = implicit conversion from 'unsigned long long' to 'u_long' (aka 'unsigned lo= ng') changes value from 10000000000 to 1410065408 [-Werror,-Wconstant-conve= rsion] sc->ifp->if_baudrate =3D IF_Gbps(10UL); ~ ^~~~~~~~~~~~~ @/net/if.h:184:21: note: expanded from macro 'IF_Gbps' #define IF_Gbps(x) (IF_Mbps((x) * 1000)) /* gigabits/sec. */ ^ @/net/if.h:183:21: note: expanded from macro 'IF_Mbps' #define IF_Mbps(x) (IF_Kbps((x) * 1000)) /* megabits/sec. */ ^ @/net/if.h:182:36: note: expanded from macro 'IF_Kbps' #define IF_Kbps(x) ((uintmax_t)(x) * 1000) /* kilobits/sec. */ ~~~~~~~~~~~~~~~^~~~~~ /usr/src/sys/modules/mxge/mxge/../../../dev/mxge/if_mxge.c:4776:21: error: = implicit conversion from 'unsigned long long' to 'u_long' (aka 'unsigned lo= ng') changes value from 10000000000 to 1410065408 [-Werror,-Wconstant-conve= rsion] ifp->if_baudrate =3D IF_Gbps(10UL); ~ ^~~~~~~~~~~~~ @/net/if.h:184:21: note: expanded from macro 'IF_Gbps' #define IF_Gbps(x) (IF_Mbps((x) * 1000)) /* gigabits/sec. */ ^ @/net/if.h:183:21: note: expanded from macro 'IF_Mbps' #define IF_Mbps(x) (IF_Kbps((x) * 1000)) /* megabits/sec. */ ^ @/net/if.h:182:36: note: expanded from macro 'IF_Kbps' #define IF_Kbps(x) ((uintmax_t)(x) * 1000) /* kilobits/sec. */ ~~~~~~~~~~~~~~~^~~~~~ 2 errors generated. *** [if_mxge.o] Error code 1 1 error *** [all] Error code 2 1 error *** [all] Error code 2 1 error *** [modules-all] Error code 2 1 error *** [buildkernel] Error code 2 Peace, david --=20 David H. Wolfskill david@catwhisker.org Taliban: Evil men with guns afraid of truth from a 14-year old girl. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --ByM1h5nouWwd3kz8 Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlCABc8ACgkQmprOCmdXAD00TgCcCYyIR2jzGxpM3y2p3b76tS3J JD0An380iyw75ipNe/igHJ9C5y93yBrm =36wM -----END PGP SIGNATURE----- --ByM1h5nouWwd3kz8-- From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 13:50:31 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D9FE7C24; Thu, 18 Oct 2012 13:50:30 +0000 (UTC) (envelope-from yerenkow@gmail.com) Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) by mx1.freebsd.org (Postfix) with ESMTP id 8ACB18FC08; Thu, 18 Oct 2012 13:50:30 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id k10so18004482iea.13 for ; Thu, 18 Oct 2012 06:50:29 -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=GMH8EtqbigmaYYntufeNZLKI0QPrOAXtWC7tsT+SUS4=; b=hu9U40EK11VsHskPoXcTpyyDsV/8sM5Su5lO+IF+Vlu40wXbGhDeZqgm1OVf/kQs0j 8ov9pQWycYvucFtKOWgCsjk1yxdUl92Hus0EBSUJnqOyYuGxAJeNCGwRI6xs207K8+HM 3Sdq6t2WOiNwOPFbq/LC2xR+apGvDS8NqVMnd97xL4tYRyEzezO91eAswxv6spUqqqtQ 9KjOi2niLGK5Wb/kozXCkfLigwpwOxWDafokL/CqiVrZfE+OUjmL/1BF2baU6vSpiyPv 7DfvSu4YoiHD3Ch0UnFZRXZs6XjSH+bqdQJlb5LdvR4SC1iVe6qb6OmDhdYSeavDlgtA p06w== MIME-Version: 1.0 Received: by 10.50.42.197 with SMTP id q5mr4809649igl.21.1350568229323; Thu, 18 Oct 2012 06:50:29 -0700 (PDT) Received: by 10.64.32.10 with HTTP; Thu, 18 Oct 2012 06:50:29 -0700 (PDT) In-Reply-To: <507FEC7F.4030306@FreeBSD.org> References: <507FB6C7.50402@FreeBSD.org> <507FEC7F.4030306@FreeBSD.org> Date: Thu, 18 Oct 2012 16:50:29 +0300 Message-ID: Subject: Re: A little question about safe mode From: Alexander Yerenkow To: Andriy Gapon Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 13:50:31 -0000 2012/10/18 Andriy Gapon > on 18/10/2012 12:11 Alexander Yerenkow said the following: > > 2012/10/18 Andriy Gapon > > > > > > > First, I see "safe mode" mentioned in the subject, but nowhere in > the body of > > the message? So, what's up with the safe mode? :-) > > > > > > The single mode of course, which is forced :) Mistype, sorry. > > I missed this part - what do you mean by "forced"? > You can send the screenshots (as links). > Here are screenshots, step-by step. http://imageshack.us/photo/my-images/407/sc1y.png/ http://imageshack.us/photo/my-images/90/sc2xs.png/ http://imageshack.us/photo/my-images/713/sc3y.png/ http://imageshack.us/photo/my-images/213/sc4h.png/ > > -- > Andriy Gapon > -- Regards, Alexander Yerenkow From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 15:20:23 2012 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 892C5CA8; Thu, 18 Oct 2012 15:20:23 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 999848FC14; Thu, 18 Oct 2012 15:20:22 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id SAA20157; Thu, 18 Oct 2012 18:20:19 +0300 (EEST) (envelope-from avg@FreeBSD.org) Message-ID: <50801E32.80309@FreeBSD.org> Date: Thu, 18 Oct 2012 18:20:18 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: Alexander Yerenkow Subject: Re: A little question about safe mode References: <507FB6C7.50402@FreeBSD.org> <507FEC7F.4030306@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 15:20:23 -0000 on 18/10/2012 16:50 Alexander Yerenkow said the following: > > > 2012/10/18 Andriy Gapon > > > on 18/10/2012 12:11 Alexander Yerenkow said the following: > > 2012/10/18 Andriy Gapon > >> > > > > > > First, I see "safe mode" mentioned in the subject, but nowhere in the > body of > > the message? So, what's up with the safe mode? :-) > > > > > > The single mode of course, which is forced :) Mistype, sorry. > > I missed this part - what do you mean by "forced"? > You can send the screenshots (as links). > > > Here are screenshots, step-by step. > http://imageshack.us/photo/my-images/407/sc1y.png/ > http://imageshack.us/photo/my-images/90/sc2xs.png/ > http://imageshack.us/photo/my-images/713/sc3y.png/ > http://imageshack.us/photo/my-images/213/sc4h.png/ I am curious would happen if you tried "mount -uw /" again... Note how mount(8) with no options first reported ada0s1a on / (...) and later /dev/ada0s1a on / (...) I think that the above information also explains why rc.d/root failed with the following diagnostic: mount: ada0s1a: No such file or directory Mounting root filesystem rw failed, startup aborted Here is a simple explanation without going into details. When the kernel is about to mount a root filesystem, it first mounts devfs at / and also creates /dev symlink to /. Because of this, both device names with /dev/ "prefix" and device names without it can be correctly resolved without any additional magic. E.g., at mountroot prompt you can specify either ufs:ada0s1a or ufs:/dev/ada0s1a and both should work. The problem, is that the device name will get recorded in the mount structures verbatim. Later, after the kernel has mounted the real root filesystem it also moves devfs to its proper /dev place. So only full paths correctly work from that point on. I am not sure if mount(8) is supposed to prepend "/dev/" if I use a command line like this: mount ada5s3e /some/path But it definitely does not do any prepending if "ada0s1a" is already recorded in f_mntfromname. My guess is that the easiest way to avoid this ambiguity and the confusion that it causes (like the problem you described above) is to prepend "/dev/", if it's missing, right in vfs_mountroot.c before calling kernel_mount(). In any case, this issue should be very rare in practice. -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 15:33:17 2012 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 317844F7; Thu, 18 Oct 2012 15:33:17 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 4D7E98FC17; Thu, 18 Oct 2012 15:33:15 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id SAA20262; Thu, 18 Oct 2012 18:33:13 +0300 (EEST) (envelope-from avg@FreeBSD.org) Message-ID: <50802138.8020604@FreeBSD.org> Date: Thu, 18 Oct 2012 18:33:12 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: Alexander Yerenkow Subject: Re: A little question about safe mode References: <507FB6C7.50402@FreeBSD.org> <507FEC7F.4030306@FreeBSD.org> <50801E32.80309@FreeBSD.org> In-Reply-To: <50801E32.80309@FreeBSD.org> X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: freebsd-current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 15:33:17 -0000 on 18/10/2012 18:20 Andriy Gapon said the following: > My guess is that the easiest way to avoid this ambiguity and the confusion that it > causes (like the problem you described above) is to prepend "/dev/", if it's > missing, right in vfs_mountroot.c before calling kernel_mount(). A patch (not tested): --- a/sys/kern/vfs_mountroot.c +++ b/sys/kern/vfs_mountroot.c @@ -676,6 +676,7 @@ static int parse_mount(char **conf) { char errmsg[255]; + char devbuf[MNAMELEN]; struct mntarg *ma; char *dev, *fs, *opts, *tok; int delay, error, timeout; @@ -693,6 +694,11 @@ parse_mount(char **conf) parse_advance(&tok); dev = tok; + if (dev[0] != '\0' && strncmp(dev, "/dev/", 5) != 0) { + snprintf(devbuf, sizeof(devbuf), "/dev/%s", dev); + dev = devbuf; + } + if (root_mount_mddev != -1) { /* Handle substitution for the md unit number. */ tok = strstr(dev, "md#"); -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 17:06:09 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3586BC4E; Thu, 18 Oct 2012 17:06:09 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id CD32B8FC0A; Thu, 18 Oct 2012 17:06:08 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9IGdOBR029060; Thu, 18 Oct 2012 12:39:24 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9IGdOYP029056; Thu, 18 Oct 2012 16:39:24 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 16:39:24 GMT Message-Id: <201210181639.q9IGdOYP029056@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on arm/arm Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 17:06:09 -0000 TB --- 2012-10-18 15:00:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 15:00:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 15:00:00 - starting HEAD tinderbox run for arm/arm TB --- 2012-10-18 15:00:00 - cleaning the object tree TB --- 2012-10-18 15:06:48 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 15:06:48 - cd /tinderbox/HEAD/arm/arm TB --- 2012-10-18 15:06:48 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 15:09:24 - /usr/local/bin/svn update /src TB --- 2012-10-18 15:09:42 - At svn revision 241690 TB --- 2012-10-18 15:09:43 - building world TB --- 2012-10-18 15:09:43 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 15:09:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 15:09:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 15:09:43 - SRCCONF=/dev/null TB --- 2012-10-18 15:09:43 - TARGET=arm TB --- 2012-10-18 15:09:43 - TARGET_ARCH=arm TB --- 2012-10-18 15:09:43 - TZ=UTC TB --- 2012-10-18 15:09:43 - __MAKE_CONF=/dev/null TB --- 2012-10-18 15:09:43 - cd /src TB --- 2012-10-18 15:09:43 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 15:09:48 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Oct 18 16:07:54 UTC 2012 TB --- 2012-10-18 16:07:54 - cd /src/sys/arm/conf TB --- 2012-10-18 16:07:54 - /usr/sbin/config -m AC100 TB --- 2012-10-18 16:07:54 - skipping AC100 kernel TB --- 2012-10-18 16:07:54 - cd /src/sys/arm/conf TB --- 2012-10-18 16:07:54 - /usr/sbin/config -m ARMADAXP TB --- 2012-10-18 16:07:54 - skipping ARMADAXP kernel TB --- 2012-10-18 16:07:54 - cd /src/sys/arm/conf TB --- 2012-10-18 16:07:54 - /usr/sbin/config -m ATMEL TB --- 2012-10-18 16:07:54 - building ATMEL kernel TB --- 2012-10-18 16:07:54 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 16:07:54 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 16:07:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 16:07:54 - SRCCONF=/dev/null TB --- 2012-10-18 16:07:54 - TARGET=arm TB --- 2012-10-18 16:07:54 - TARGET_ARCH=arm TB --- 2012-10-18 16:07:54 - TZ=UTC TB --- 2012-10-18 16:07:54 - __MAKE_CONF=/dev/null TB --- 2012-10-18 16:07:54 - cd /src TB --- 2012-10-18 16:07:54 - /usr/bin/make -B buildkernel KERNCONF=ATMEL >>> Kernel build for ATMEL started on Thu Oct 18 16:07:54 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for ATMEL completed on Thu Oct 18 16:11:27 UTC 2012 TB --- 2012-10-18 16:11:27 - cd /src/sys/arm/conf TB --- 2012-10-18 16:11:27 - /usr/sbin/config -m AVILA TB --- 2012-10-18 16:11:27 - skipping AVILA kernel TB --- 2012-10-18 16:11:27 - cd /src/sys/arm/conf TB --- 2012-10-18 16:11:27 - /usr/sbin/config -m BEAGLEBONE TB --- 2012-10-18 16:11:27 - skipping BEAGLEBONE kernel TB --- 2012-10-18 16:11:27 - cd /src/sys/arm/conf TB --- 2012-10-18 16:11:27 - /usr/sbin/config -m BWCT TB --- 2012-10-18 16:11:27 - building BWCT kernel TB --- 2012-10-18 16:11:27 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 16:11:27 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 16:11:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 16:11:27 - SRCCONF=/dev/null TB --- 2012-10-18 16:11:27 - TARGET=arm TB --- 2012-10-18 16:11:27 - TARGET_ARCH=arm TB --- 2012-10-18 16:11:27 - TZ=UTC TB --- 2012-10-18 16:11:27 - __MAKE_CONF=/dev/null TB --- 2012-10-18 16:11:27 - cd /src TB --- 2012-10-18 16:11:27 - /usr/bin/make -B buildkernel KERNCONF=BWCT >>> Kernel build for BWCT started on Thu Oct 18 16:11:27 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for BWCT completed on Thu Oct 18 16:13:36 UTC 2012 TB --- 2012-10-18 16:13:36 - cd /src/sys/arm/conf TB --- 2012-10-18 16:13:36 - /usr/sbin/config -m CAMBRIA TB --- 2012-10-18 16:13:36 - skipping CAMBRIA kernel TB --- 2012-10-18 16:13:36 - cd /src/sys/arm/conf TB --- 2012-10-18 16:13:36 - /usr/sbin/config -m CNS11XXNAS TB --- 2012-10-18 16:13:36 - building CNS11XXNAS kernel TB --- 2012-10-18 16:13:36 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 16:13:36 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 16:13:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 16:13:36 - SRCCONF=/dev/null TB --- 2012-10-18 16:13:36 - TARGET=arm TB --- 2012-10-18 16:13:36 - TARGET_ARCH=arm TB --- 2012-10-18 16:13:36 - TZ=UTC TB --- 2012-10-18 16:13:36 - __MAKE_CONF=/dev/null TB --- 2012-10-18 16:13:36 - cd /src TB --- 2012-10-18 16:13:36 - /usr/bin/make -B buildkernel KERNCONF=CNS11XXNAS >>> Kernel build for CNS11XXNAS started on Thu Oct 18 16:13:36 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for CNS11XXNAS completed on Thu Oct 18 16:16:02 UTC 2012 TB --- 2012-10-18 16:16:02 - cd /src/sys/arm/conf TB --- 2012-10-18 16:16:02 - /usr/sbin/config -m CRB TB --- 2012-10-18 16:16:02 - skipping CRB kernel TB --- 2012-10-18 16:16:02 - cd /src/sys/arm/conf TB --- 2012-10-18 16:16:02 - /usr/sbin/config -m DB-78XXX TB --- 2012-10-18 16:16:02 - building DB-78XXX kernel TB --- 2012-10-18 16:16:02 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 16:16:02 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 16:16:02 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 16:16:02 - SRCCONF=/dev/null TB --- 2012-10-18 16:16:02 - TARGET=arm TB --- 2012-10-18 16:16:02 - TARGET_ARCH=arm TB --- 2012-10-18 16:16:02 - TZ=UTC TB --- 2012-10-18 16:16:02 - __MAKE_CONF=/dev/null TB --- 2012-10-18 16:16:02 - cd /src TB --- 2012-10-18 16:16:02 - /usr/bin/make -B buildkernel KERNCONF=DB-78XXX >>> Kernel build for DB-78XXX started on Thu Oct 18 16:16:02 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-78XXX completed on Thu Oct 18 16:18:45 UTC 2012 TB --- 2012-10-18 16:18:45 - cd /src/sys/arm/conf TB --- 2012-10-18 16:18:45 - /usr/sbin/config -m DB-88F5XXX TB --- 2012-10-18 16:18:45 - building DB-88F5XXX kernel TB --- 2012-10-18 16:18:45 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 16:18:45 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 16:18:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 16:18:45 - SRCCONF=/dev/null TB --- 2012-10-18 16:18:45 - TARGET=arm TB --- 2012-10-18 16:18:45 - TARGET_ARCH=arm TB --- 2012-10-18 16:18:45 - TZ=UTC TB --- 2012-10-18 16:18:45 - __MAKE_CONF=/dev/null TB --- 2012-10-18 16:18:45 - cd /src TB --- 2012-10-18 16:18:45 - /usr/bin/make -B buildkernel KERNCONF=DB-88F5XXX >>> Kernel build for DB-88F5XXX started on Thu Oct 18 16:18:45 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F5XXX completed on Thu Oct 18 16:21:23 UTC 2012 TB --- 2012-10-18 16:21:23 - cd /src/sys/arm/conf TB --- 2012-10-18 16:21:23 - /usr/sbin/config -m DB-88F6XXX TB --- 2012-10-18 16:21:23 - building DB-88F6XXX kernel TB --- 2012-10-18 16:21:23 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 16:21:23 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 16:21:23 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 16:21:23 - SRCCONF=/dev/null TB --- 2012-10-18 16:21:23 - TARGET=arm TB --- 2012-10-18 16:21:23 - TARGET_ARCH=arm TB --- 2012-10-18 16:21:23 - TZ=UTC TB --- 2012-10-18 16:21:23 - __MAKE_CONF=/dev/null TB --- 2012-10-18 16:21:23 - cd /src TB --- 2012-10-18 16:21:23 - /usr/bin/make -B buildkernel KERNCONF=DB-88F6XXX >>> Kernel build for DB-88F6XXX started on Thu Oct 18 16:21:23 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DB-88F6XXX completed on Thu Oct 18 16:24:15 UTC 2012 TB --- 2012-10-18 16:24:15 - cd /src/sys/arm/conf TB --- 2012-10-18 16:24:15 - /usr/sbin/config -m DOCKSTAR TB --- 2012-10-18 16:24:15 - building DOCKSTAR kernel TB --- 2012-10-18 16:24:15 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 16:24:15 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 16:24:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 16:24:15 - SRCCONF=/dev/null TB --- 2012-10-18 16:24:15 - TARGET=arm TB --- 2012-10-18 16:24:15 - TARGET_ARCH=arm TB --- 2012-10-18 16:24:15 - TZ=UTC TB --- 2012-10-18 16:24:15 - __MAKE_CONF=/dev/null TB --- 2012-10-18 16:24:15 - cd /src TB --- 2012-10-18 16:24:15 - /usr/bin/make -B buildkernel KERNCONF=DOCKSTAR >>> Kernel build for DOCKSTAR started on Thu Oct 18 16:24:15 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for DOCKSTAR completed on Thu Oct 18 16:26:49 UTC 2012 TB --- 2012-10-18 16:26:49 - cd /src/sys/arm/conf TB --- 2012-10-18 16:26:49 - /usr/sbin/config -m EA3250 TB --- 2012-10-18 16:26:49 - building EA3250 kernel TB --- 2012-10-18 16:26:49 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 16:26:49 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 16:26:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 16:26:49 - SRCCONF=/dev/null TB --- 2012-10-18 16:26:49 - TARGET=arm TB --- 2012-10-18 16:26:49 - TARGET_ARCH=arm TB --- 2012-10-18 16:26:49 - TZ=UTC TB --- 2012-10-18 16:26:49 - __MAKE_CONF=/dev/null TB --- 2012-10-18 16:26:49 - cd /src TB --- 2012-10-18 16:26:49 - /usr/bin/make -B buildkernel KERNCONF=EA3250 >>> Kernel build for EA3250 started on Thu Oct 18 16:26:49 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EA3250 completed on Thu Oct 18 16:29:26 UTC 2012 TB --- 2012-10-18 16:29:26 - cd /src/sys/arm/conf TB --- 2012-10-18 16:29:26 - /usr/sbin/config -m EB9200 TB --- 2012-10-18 16:29:26 - building EB9200 kernel TB --- 2012-10-18 16:29:26 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 16:29:26 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 16:29:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 16:29:26 - SRCCONF=/dev/null TB --- 2012-10-18 16:29:26 - TARGET=arm TB --- 2012-10-18 16:29:26 - TARGET_ARCH=arm TB --- 2012-10-18 16:29:26 - TZ=UTC TB --- 2012-10-18 16:29:26 - __MAKE_CONF=/dev/null TB --- 2012-10-18 16:29:26 - cd /src TB --- 2012-10-18 16:29:26 - /usr/bin/make -B buildkernel KERNCONF=EB9200 >>> Kernel build for EB9200 started on Thu Oct 18 16:29:26 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything >>> Kernel build for EB9200 completed on Thu Oct 18 16:31:55 UTC 2012 TB --- 2012-10-18 16:31:55 - cd /src/sys/arm/conf TB --- 2012-10-18 16:31:55 - /usr/sbin/config -m EP80219 TB --- 2012-10-18 16:31:55 - skipping EP80219 kernel TB --- 2012-10-18 16:31:55 - cd /src/sys/arm/conf TB --- 2012-10-18 16:31:55 - /usr/sbin/config -m ETHERNUT5 TB --- 2012-10-18 16:31:55 - building ETHERNUT5 kernel TB --- 2012-10-18 16:31:55 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 16:31:55 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 16:31:55 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 16:31:55 - SRCCONF=/dev/null TB --- 2012-10-18 16:31:55 - TARGET=arm TB --- 2012-10-18 16:31:55 - TARGET_ARCH=arm TB --- 2012-10-18 16:31:55 - TZ=UTC TB --- 2012-10-18 16:31:55 - __MAKE_CONF=/dev/null TB --- 2012-10-18 16:31:55 - cd /src TB --- 2012-10-18 16:31:55 - /usr/bin/make -B buildkernel KERNCONF=ETHERNUT5 >>> Kernel build for ETHERNUT5 started on Thu Oct 18 16:31:55 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] awk -f /src/sys/conf/kmod_syms.awk nullfs.kld export_syms | xargs -J% objcopy % nullfs.kld ld -Bshareable -d -warn-common -o nullfs.ko nullfs.kld objcopy --strip-debug nullfs.ko ===> oce (all) cc -O -pipe -DSMP -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I/src/sys/modules/oce/../../dev/oce -DHAVE_KERNEL_OPTION_HEADERS -include /obj/arm.arm/src/sys/ETHERNUT5/opt_global.h -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -I/obj/arm.arm/src/sys/ETHERNUT5 -mcpu=arm9 -ffreestanding -std=iso9899:1999 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -c /src/sys/modules/oce/../../dev/oce/oce_if.c cc1: warnings being treated as errors /src/sys/modules/oce/../../dev/oce/oce_if.c: In function 'oce_attach_ifp': /src/sys/modules/oce/../../dev/oce/oce_if.c:1655: warning: large integer implicitly truncated to unsigned type [-Woverflow] *** [oce_if.o] Error code 1 Stop in /src/sys/modules/oce. *** [all] Error code 1 Stop in /src/sys/modules. *** [modules-all] Error code 1 Stop in /obj/arm.arm/src/sys/ETHERNUT5. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 16:39:24 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 16:39:24 - ERROR: failed to build ETHERNUT5 kernel TB --- 2012-10-18 16:39:24 - 4009.59 user 805.59 system 5964.18 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 17:07:33 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8259CDA9 for ; Thu, 18 Oct 2012 17:07:33 +0000 (UTC) (envelope-from seanbru@yahoo-inc.com) Received: from mrout1-b.corp.bf1.yahoo.com (mrout1-b.corp.bf1.yahoo.com [98.139.253.104]) by mx1.freebsd.org (Postfix) with ESMTP id 19CD78FC14 for ; Thu, 18 Oct 2012 17:07:32 +0000 (UTC) Received: from [IPv6:::1] (rideseveral.corp.yahoo.com [10.73.160.231]) by mrout1-b.corp.bf1.yahoo.com (8.14.4/8.14.4/y.out) with ESMTP id q9IH76qw006354; Thu, 18 Oct 2012 10:07:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yahoo-inc.com; s=cobra; t=1350580028; bh=Kt3K7GngXdfyHoWixxitL6TDebcfFo3bHufjXAr6Rg0=; h=Subject:From:Reply-To:To:Cc:In-Reply-To:References:Content-Type: Date:Message-ID:Mime-Version:Content-Transfer-Encoding; b=IAoZlvLXTS7Q9+Hf1of2bC4NIBLWqSzwvHUBoecZyIxytn/JCQ99hCX/DZhOM353K IJkMfAkO5ZwpHhcxdTtJh+XR/mZmlEgnTDd4zFD/URhJWXXCwA3WdvEccO9t/FsxUT sJryxrk2mBOMkzCb/lMJo2P3BQ9O96DHPKGGn+GM= Subject: Re: [CFT]hwpmc update for sandybridge-e From: Sean Bruno To: hiren panchasara In-Reply-To: <1894C6A5-2479-4D1B-9A68-1DC6818759F0@netasq.com> References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> <1894C6A5-2479-4D1B-9A68-1DC6818759F0@netasq.com> Content-Type: text/plain; charset="UTF-8" Date: Thu, 18 Oct 2012 10:07:06 -0700 Message-ID: <1350580026.3029.0.camel@powernoodle.corp.yahoo.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Milter-Version: master.31+4-gbc07cd5+ X-CLX-ID: 580026007 Cc: Fabien Thomas , Davide Italiano , freebsd-current , Jim Harris X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Sean Bruno List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 17:07:33 -0000 > > > > Sure, I will separate it out. > > > > If there are no further comments, can I ask Sean to commit on my > > behalf? > > > > > Can you do the man page to include both in the commit? > Except that point seems good to me. > Thanks! > > > Fabien > > > > > Thanks, > > Hiren > > > I shall await your svn diff. :-) sean From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 17:45:37 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E080DA40; Thu, 18 Oct 2012 17:45:37 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 7486F8FC16; Thu, 18 Oct 2012 17:45:37 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9IHjVb4073724; Thu, 18 Oct 2012 13:45:31 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9IHjVDt073714; Thu, 18 Oct 2012 17:45:31 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 17:45:31 GMT Message-Id: <201210181745.q9IHjVDt073714@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/pc98 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 17:45:38 -0000 TB --- 2012-10-18 15:00:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 15:00:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 15:00:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2012-10-18 15:00:00 - cleaning the object tree TB --- 2012-10-18 15:06:02 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 15:06:02 - cd /tinderbox/HEAD/i386/pc98 TB --- 2012-10-18 15:06:02 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 15:08:30 - /usr/local/bin/svn update /src TB --- 2012-10-18 15:09:00 - At svn revision 241690 TB --- 2012-10-18 15:09:01 - building world TB --- 2012-10-18 15:09:01 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 15:09:01 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 15:09:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 15:09:01 - SRCCONF=/dev/null TB --- 2012-10-18 15:09:01 - TARGET=pc98 TB --- 2012-10-18 15:09:01 - TARGET_ARCH=i386 TB --- 2012-10-18 15:09:01 - TZ=UTC TB --- 2012-10-18 15:09:01 - __MAKE_CONF=/dev/null TB --- 2012-10-18 15:09:01 - cd /src TB --- 2012-10-18 15:09:01 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 15:09:08 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Oct 18 17:36:42 UTC 2012 TB --- 2012-10-18 17:36:42 - generating LINT kernel config TB --- 2012-10-18 17:36:42 - cd /src/sys/pc98/conf TB --- 2012-10-18 17:36:42 - /usr/bin/make -B LINT TB --- 2012-10-18 17:36:43 - cd /src/sys/pc98/conf TB --- 2012-10-18 17:36:43 - /usr/sbin/config -m LINT TB --- 2012-10-18 17:36:43 - building LINT kernel TB --- 2012-10-18 17:36:43 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 17:36:43 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 17:36:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 17:36:43 - SRCCONF=/dev/null TB --- 2012-10-18 17:36:43 - TARGET=pc98 TB --- 2012-10-18 17:36:43 - TARGET_ARCH=i386 TB --- 2012-10-18 17:36:43 - TZ=UTC TB --- 2012-10-18 17:36:43 - __MAKE_CONF=/dev/null TB --- 2012-10-18 17:36:43 - cd /src TB --- 2012-10-18 17:36:43 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Oct 18 17:36:43 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/nsp/nsp.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/nsp/nsp_pccard.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/null/null.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/oce/oce_hw.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/oce/oce_if.c cc1: warnings being treated as errors /src/sys/dev/oce/oce_if.c: In function 'oce_attach_ifp': /src/sys/dev/oce/oce_if.c:1655: warning: large integer implicitly truncated to unsigned type [-Woverflow] *** [oce_if.o] Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 17:45:31 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 17:45:31 - ERROR: failed to build LINT kernel TB --- 2012-10-18 17:45:31 - 7057.66 user 1003.58 system 9931.39 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 17:48:12 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8170DB83; Thu, 18 Oct 2012 17:48:12 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 1BF608FC08; Thu, 18 Oct 2012 17:48:11 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9IHmBEX085526; Thu, 18 Oct 2012 13:48:11 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9IHmBZW085522; Thu, 18 Oct 2012 17:48:11 GMT (envelope-from tinderbox@freebsd.org) Date: Thu, 18 Oct 2012 17:48:11 GMT Message-Id: <201210181748.q9IHmBZW085522@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 17:48:12 -0000 TB --- 2012-10-18 15:00:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-18 15:00:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-18 15:00:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-18 15:00:00 - cleaning the object tree TB --- 2012-10-18 15:06:11 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-18 15:06:11 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-18 15:06:11 - /usr/local/bin/svn cleanup /src TB --- 2012-10-18 15:08:50 - /usr/local/bin/svn update /src TB --- 2012-10-18 15:09:21 - At svn revision 241690 TB --- 2012-10-18 15:09:22 - building world TB --- 2012-10-18 15:09:22 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 15:09:22 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 15:09:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 15:09:22 - SRCCONF=/dev/null TB --- 2012-10-18 15:09:22 - TARGET=i386 TB --- 2012-10-18 15:09:22 - TARGET_ARCH=i386 TB --- 2012-10-18 15:09:22 - TZ=UTC TB --- 2012-10-18 15:09:22 - __MAKE_CONF=/dev/null TB --- 2012-10-18 15:09:22 - cd /src TB --- 2012-10-18 15:09:22 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Thu Oct 18 15:09:28 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Thu Oct 18 17:37:36 UTC 2012 TB --- 2012-10-18 17:37:36 - generating LINT kernel config TB --- 2012-10-18 17:37:36 - cd /src/sys/i386/conf TB --- 2012-10-18 17:37:36 - /usr/bin/make -B LINT TB --- 2012-10-18 17:37:36 - cd /src/sys/i386/conf TB --- 2012-10-18 17:37:36 - /usr/sbin/config -m LINT TB --- 2012-10-18 17:37:36 - building LINT kernel TB --- 2012-10-18 17:37:36 - CROSS_BUILD_TESTING=YES TB --- 2012-10-18 17:37:36 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-18 17:37:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-18 17:37:36 - SRCCONF=/dev/null TB --- 2012-10-18 17:37:36 - TARGET=i386 TB --- 2012-10-18 17:37:36 - TARGET_ARCH=i386 TB --- 2012-10-18 17:37:36 - TZ=UTC TB --- 2012-10-18 17:37:36 - __MAKE_CONF=/dev/null TB --- 2012-10-18 17:37:36 - cd /src TB --- 2012-10-18 17:37:36 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Thu Oct 18 17:37:36 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/nsp/nsp.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/nsp/nsp_pccard.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/null/null.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/oce/oce_hw.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/oce/oce_if.c cc1: warnings being treated as errors /src/sys/dev/oce/oce_if.c: In function 'oce_attach_ifp': /src/sys/dev/oce/oce_if.c:1655: warning: large integer implicitly truncated to unsigned type [-Woverflow] *** [oce_if.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-18 17:48:11 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-18 17:48:11 - ERROR: failed to build LINT kernel TB --- 2012-10-18 17:48:11 - 7186.33 user 1019.73 system 10091.03 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 17:52:00 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC132DDA; Thu, 18 Oct 2012 17:52:00 +0000 (UTC) (envelope-from asmrookie@gmail.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id AA2B58FC14; Thu, 18 Oct 2012 17:51:59 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id b5so7517013lbd.13 for ; Thu, 18 Oct 2012 10:51:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:sender:date:x-google-sender-auth:message-id :subject:from:to:content-type; bh=P09jwitRJATSQzHPSMZ3DWrV1HjnKkOGf3YtsmIgmfA=; b=xsrVX4T/Yc4NYObDfTA90FOIlARcTokcb0NPcRUYBHvlTeeY9/FP6JNnzz3S/63n1A MeqzIcq7yxTQikXo92ZEG2Ox/HYcO4lkW47UOSmQ4WepFQaSAmbTUYmf4ZO6oKWrcGgo /YZFQFRiPUjNFWslNufULwqY79rHTdG591ty82fu8h+2ipHr77NBlKTbftBlwFJgCNQ1 BJXUhac8TAsHTAxWovWFerdMLRUcvnOTlkuO72mpisLDl+3zP64pg4MMpTM0zQ7wrrRZ jBHNs267Smf3Olikbs64E3oCljMv/A8x49+GiHFrR4nIEd/1NNI98S2qetdOhEohSZtI 87lg== MIME-Version: 1.0 Received: by 10.152.122.11 with SMTP id lo11mr19298936lab.3.1350582712599; Thu, 18 Oct 2012 10:51:52 -0700 (PDT) Sender: asmrookie@gmail.com Received: by 10.112.30.37 with HTTP; Thu, 18 Oct 2012 10:51:52 -0700 (PDT) Date: Thu, 18 Oct 2012 18:51:52 +0100 X-Google-Sender-Auth: -HUgO22GfUGJnd8HZOGygOxrVa0 Message-ID: Subject: MPSAFE VFS -- update From: Attilio Rao To: freebsd-current@freebsd.org, FreeBSD FS , Konstantin Belousov , Peter Holm Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: attilio@FreeBSD.org List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 17:52:00 -0000 Following the plan reported here: http://wiki.freebsd.org/NONMPSAFE_DEORBIT_VFS We are now at the state where all non-MPSAFE filesystems are disconnected by the three. At this point we can proceed with the import of a revised kib's patch as reported in that page. This will mean effectively remove Giant from the VFS, buffer cache and GEOM layer. We expect to have this included as soon as possibe, maybe before the end of the month. Thanks, Attilio -- Peace can only be achieved by understanding - A. Einstein From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 17:53:06 2012 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 42062F62; Thu, 18 Oct 2012 17:53:06 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 577A28FC0C; Thu, 18 Oct 2012 17:53:04 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id UAA21225; Thu, 18 Oct 2012 20:52:57 +0300 (EEST) (envelope-from avg@FreeBSD.org) Message-ID: <508041F9.9050906@FreeBSD.org> Date: Thu, 18 Oct 2012 20:52:57 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121014 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-current Subject: Re: A little question about safe mode References: <507FB6C7.50402@FreeBSD.org> <507FEC7F.4030306@FreeBSD.org> <50801E32.80309@FreeBSD.org> <50802138.8020604@FreeBSD.org> In-Reply-To: <50802138.8020604@FreeBSD.org> X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: Alexander Yerenkow X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 17:53:06 -0000 on 18/10/2012 18:33 Andriy Gapon said the following: > on 18/10/2012 18:20 Andriy Gapon said the following: >> My guess is that the easiest way to avoid this ambiguity and the confusion that it >> causes (like the problem you described above) is to prepend "/dev/", if it's >> missing, right in vfs_mountroot.c before calling kernel_mount(). > > A patch (not tested): > > --- a/sys/kern/vfs_mountroot.c > +++ b/sys/kern/vfs_mountroot.c > @@ -676,6 +676,7 @@ static int > parse_mount(char **conf) > { > char errmsg[255]; > + char devbuf[MNAMELEN]; > struct mntarg *ma; > char *dev, *fs, *opts, *tok; > int delay, error, timeout; > @@ -693,6 +694,11 @@ parse_mount(char **conf) > parse_advance(&tok); > dev = tok; > > + if (dev[0] != '\0' && strncmp(dev, "/dev/", 5) != 0) { > + snprintf(devbuf, sizeof(devbuf), "/dev/%s", dev); > + dev = devbuf; > + } > + > if (root_mount_mddev != -1) { > /* Handle substitution for the md unit number. */ > tok = strstr(dev, "md#"); > > Oops, the patch incorrectly assumes that all "device names" are device names, which is incorrect e.g. for ZFS. Maybe some other filesystems too. So don't try it :-) -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Thu Oct 18 21:48:33 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C87F5195 for ; Thu, 18 Oct 2012 21:48:33 +0000 (UTC) (envelope-from ambrisko@ambrisko.com) Received: from mail.ambrisko.com (mail.ambrisko.com [70.91.206.90]) by mx1.freebsd.org (Postfix) with ESMTP id 9E26F8FC0A for ; Thu, 18 Oct 2012 21:48:33 +0000 (UTC) X-Ambrisko-Me: Yes Received: from server2.ambrisko.com (HELO internal.ambrisko.com) ([192.168.1.2]) by ironport.ambrisko.com with ESMTP; 18 Oct 2012 14:49:49 -0700 Received: from ambrisko.com (localhost [127.0.0.1]) by internal.ambrisko.com (8.14.4/8.14.4) with ESMTP id q9ILmXI7011844; Thu, 18 Oct 2012 14:48:33 -0700 (PDT) (envelope-from ambrisko@ambrisko.com) Received: (from ambrisko@localhost) by ambrisko.com (8.14.4/8.14.4/Submit) id q9ILmXDT011843; Thu, 18 Oct 2012 14:48:33 -0700 (PDT) (envelope-from ambrisko) Date: Thu, 18 Oct 2012 14:48:33 -0700 From: Doug Ambrisko To: Garrett Cooper Subject: Re: boot2/loader: serial port handling Message-ID: <20121018214832.GB8009@ambrisko.com> References: <5078A803.7070705@delphij.net> <5078B145.4090501@delphij.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i Cc: freebsd-current@freebsd.org, d@delphij.net X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 21:48:33 -0000 On Fri, Oct 12, 2012 at 05:13:47PM -0700, Garrett Cooper wrote: | On Fri, Oct 12, 2012 at 5:09 PM, Xin Li wrote: | > -----BEGIN PGP SIGNED MESSAGE----- | > Hash: SHA256 | | ... | | > Ah I wish I am not this far behind my email backlog. Yes I think | > these (241300 and 241301) will solve the problem. | | Yeah -- forgot about the other one. There's another enhancement | that would make this even better (apart from maybe having multiple | primary consoles): setting the primary console if present and having | fallbacks in the event that the original primary wasn't set or | configurable; it was a thing that was present in another project I | worked on with sio that was pretty slick (and I think that there would | be some parties who wouldn't mind if the same was done with uart(4)). This concept was objected to when I checked it into sio(4) so I had to back it out. Some liked it. I have ported it to uart(4) since we need that functionality when we moved to a newer FreeBSD. Doug A. From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 06:20:43 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 468B5ABC; Fri, 19 Oct 2012 06:20:43 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 07A3A8FC08; Fri, 19 Oct 2012 06:20:42 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9J6KaJj052925; Fri, 19 Oct 2012 02:20:36 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9J6Ka0M052917; Fri, 19 Oct 2012 06:20:36 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 19 Oct 2012 06:20:36 GMT Message-Id: <201210190620.q9J6Ka0M052917@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 06:20:43 -0000 TB --- 2012-10-19 05:12:29 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-19 05:12:29 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-19 05:12:29 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-10-19 05:12:29 - cleaning the object tree TB --- 2012-10-19 05:12:29 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-19 05:12:29 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2012-10-19 05:12:29 - /usr/local/bin/svn cleanup /src TB --- 2012-10-19 05:13:13 - /usr/local/bin/svn update /src TB --- 2012-10-19 05:13:19 - At svn revision 241719 TB --- 2012-10-19 05:13:20 - building world TB --- 2012-10-19 05:13:20 - CROSS_BUILD_TESTING=YES TB --- 2012-10-19 05:13:20 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-19 05:13:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-19 05:13:20 - SRCCONF=/dev/null TB --- 2012-10-19 05:13:20 - TARGET=sparc64 TB --- 2012-10-19 05:13:20 - TARGET_ARCH=sparc64 TB --- 2012-10-19 05:13:20 - TZ=UTC TB --- 2012-10-19 05:13:20 - __MAKE_CONF=/dev/null TB --- 2012-10-19 05:13:20 - cd /src TB --- 2012-10-19 05:13:20 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Fri Oct 19 05:13:25 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Fri Oct 19 06:14:18 UTC 2012 TB --- 2012-10-19 06:14:18 - generating LINT kernel config TB --- 2012-10-19 06:14:18 - cd /src/sys/sparc64/conf TB --- 2012-10-19 06:14:18 - /usr/bin/make -B LINT TB --- 2012-10-19 06:14:18 - cd /src/sys/sparc64/conf TB --- 2012-10-19 06:14:18 - /usr/sbin/config -m LINT TB --- 2012-10-19 06:14:18 - building LINT kernel TB --- 2012-10-19 06:14:18 - CROSS_BUILD_TESTING=YES TB --- 2012-10-19 06:14:18 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-19 06:14:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-19 06:14:18 - SRCCONF=/dev/null TB --- 2012-10-19 06:14:18 - TARGET=sparc64 TB --- 2012-10-19 06:14:18 - TARGET_ARCH=sparc64 TB --- 2012-10-19 06:14:18 - TZ=UTC TB --- 2012-10-19 06:14:18 - __MAKE_CONF=/dev/null TB --- 2012-10-19 06:14:18 - cd /src TB --- 2012-10-19 06:14:18 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Oct 19 06:14:18 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/mxge/mxge_rss_eth_z8e.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/mxge/mxge_rss_ethp_z8e.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/my/if_my.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -mcmodel=medany -msoft-float -ffreestanding -fstack-protector -Werror /src/sys/dev/netmap/netmap.c cc1: warnings being treated as errors /src/sys/dev/netmap/netmap.c: In function 'netmap_mmap_single': /src/sys/dev/netmap/netmap.c:510: warning: format '%d' expects type 'int', but argument 7 has type 'vm_ooffset_t' [-Wformat] /src/sys/dev/netmap/netmap.c:510: warning: format '%d' expects type 'int', but argument 8 has type 'vm_size_t' [-Wformat] *** [netmap.o] Error code 1 Stop in /obj/sparc64.sparc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-19 06:20:36 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-19 06:20:36 - ERROR: failed to build LINT kernel TB --- 2012-10-19 06:20:36 - 3289.75 user 577.73 system 4086.52 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 07:04:51 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B2581F7; Fri, 19 Oct 2012 07:04:51 +0000 (UTC) (envelope-from hiren.panchasara@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id 634DD8FC12; Fri, 19 Oct 2012 07:04:50 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so43600bkc.13 for ; Fri, 19 Oct 2012 00:04:49 -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=XCJKC3oLMkKKR4bLTQt3+QPhfHiiLJnZ+CvNB1xoIag=; b=e5ZFbBU4cN5Sf6SDNpI479d1wxoS89PwVsHLIZJ8raKsuU8+1EnreAWFv2AkgKOfqw 44espjdwSCrfKkc9z52uAl6DkTpXoZPLS9zUow+OisvKhjfIykZmiNl8FmGDhidETsV1 pmCZ9s9W6Pzsk6xwqsTLlYJ3hEEdHh2jGbyrTV4WD+k2GczC/j8vBDyu8bLwDXq2OIF3 4vkYYBYtnriZdYcjidJ7Ul0UpJ+rFAB1JqXLg+s8cVSZRbHWTMu7uu2syJlaOD1uyZyS gV2mR6rPlEFDAbM24LGDfGTXmsS50UPFfd2Amq1Ca1fa6+JMM9IPq/H2hWc9O6FtMzg+ 13yQ== MIME-Version: 1.0 Received: by 10.204.128.201 with SMTP id l9mr83593bks.66.1350630289199; Fri, 19 Oct 2012 00:04:49 -0700 (PDT) Received: by 10.205.36.136 with HTTP; Fri, 19 Oct 2012 00:04:49 -0700 (PDT) In-Reply-To: <1350580026.3029.0.camel@powernoodle.corp.yahoo.com> References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> <1894C6A5-2479-4D1B-9A68-1DC6818759F0@netasq.com> <1350580026.3029.0.camel@powernoodle.corp.yahoo.com> Date: Fri, 19 Oct 2012 00:04:49 -0700 Message-ID: Subject: Re: [CFT]hwpmc update for sandybridge-e From: hiren panchasara To: Sean Bruno Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Fabien Thomas , Davide Italiano , freebsd-current , Jim Harris X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 07:04:51 -0000 On Thu, Oct 18, 2012 at 10:07 AM, Sean Bruno wrote: > > > > > > > Sure, I will separate it out. > > > > > > If there are no further comments, can I ask Sean to commit on my > > > behalf? > > > > > > > > > Can you do the man page to include both in the commit? > > Except that point seems good to me. > Thanks Fabien! > > Thanks! > > > > > > Fabien > > > > > > > > Thanks, > > > Hiren > > > > > > > > I shall await your svn diff. :-) > Here you go: http://www.strugglingcoder.info/patches/hwpmc_sbx_4.txt New diffs has man page and doesn't have sandybridge typo fix. (will submit separate patch for that). cheers, Hiren From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 07:12:28 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E82D1379; Fri, 19 Oct 2012 07:12:28 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id AD7FD8FC08; Fri, 19 Oct 2012 07:12:28 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9J7CRaC062357; Fri, 19 Oct 2012 03:12:27 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9J7CRpA062356; Fri, 19 Oct 2012 07:12:27 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 19 Oct 2012 07:12:27 GMT Message-Id: <201210190712.q9J7CRpA062356@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc64/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 07:12:29 -0000 TB --- 2012-10-19 04:21:30 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-19 04:21:30 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-19 04:21:30 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2012-10-19 04:21:30 - cleaning the object tree TB --- 2012-10-19 04:21:30 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-19 04:21:30 - cd /tinderbox/HEAD/powerpc64/powerpc TB --- 2012-10-19 04:21:30 - /usr/local/bin/svn cleanup /src TB --- 2012-10-19 04:22:27 - /usr/local/bin/svn update /src TB --- 2012-10-19 04:22:33 - At svn revision 241719 TB --- 2012-10-19 04:22:34 - building world TB --- 2012-10-19 04:22:34 - CROSS_BUILD_TESTING=YES TB --- 2012-10-19 04:22:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-19 04:22:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-19 04:22:34 - SRCCONF=/dev/null TB --- 2012-10-19 04:22:34 - TARGET=powerpc TB --- 2012-10-19 04:22:34 - TARGET_ARCH=powerpc64 TB --- 2012-10-19 04:22:34 - TZ=UTC TB --- 2012-10-19 04:22:34 - __MAKE_CONF=/dev/null TB --- 2012-10-19 04:22:34 - cd /src TB --- 2012-10-19 04:22:34 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Fri Oct 19 04:22:39 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Fri Oct 19 07:07:22 UTC 2012 TB --- 2012-10-19 07:07:22 - generating LINT kernel config TB --- 2012-10-19 07:07:22 - cd /src/sys/powerpc/conf TB --- 2012-10-19 07:07:22 - /usr/bin/make -B LINT TB --- 2012-10-19 07:07:22 - cd /src/sys/powerpc/conf TB --- 2012-10-19 07:07:22 - /usr/sbin/config -m LINT TB --- 2012-10-19 07:07:22 - building LINT kernel TB --- 2012-10-19 07:07:22 - CROSS_BUILD_TESTING=YES TB --- 2012-10-19 07:07:22 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-19 07:07:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-19 07:07:22 - SRCCONF=/dev/null TB --- 2012-10-19 07:07:22 - TARGET=powerpc TB --- 2012-10-19 07:07:22 - TARGET_ARCH=powerpc64 TB --- 2012-10-19 07:07:22 - TZ=UTC TB --- 2012-10-19 07:07:22 - __MAKE_CONF=/dev/null TB --- 2012-10-19 07:07:22 - cd /src TB --- 2012-10-19 07:07:22 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Oct 19 07:07:22 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/mxge/mxge_rss_eth_z8e.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/mxge/mxge_rss_ethp_z8e.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/my/if_my.c cc -c -O -pipe -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -I/src/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -Wa,-many -fno-omit-frame-pointer -msoft-float -mno-altivec -mcall-aixdesc -ffreestanding -fstack-protector -Werror /src/sys/dev/netmap/netmap.c cc1: warnings being treated as errors /src/sys/dev/netmap/netmap.c: In function 'netmap_mmap_single': /src/sys/dev/netmap/netmap.c:510: warning: format '%d' expects type 'int', but argument 7 has type 'vm_ooffset_t' [-Wformat] /src/sys/dev/netmap/netmap.c:510: warning: format '%d' expects type 'int', but argument 8 has type 'vm_size_t' [-Wformat] *** [netmap.o] Error code 1 Stop in /obj/powerpc.powerpc64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-19 07:12:27 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-19 07:12:27 - ERROR: failed to build LINT kernel TB --- 2012-10-19 07:12:27 - 8616.95 user 1147.09 system 10257.59 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 09:03:16 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 16A3BB93; Fri, 19 Oct 2012 09:03:16 +0000 (UTC) (envelope-from yerenkow@gmail.com) Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) by mx1.freebsd.org (Postfix) with ESMTP id BCD138FC0C; Fri, 19 Oct 2012 09:03:15 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id k10so411633iea.13 for ; Fri, 19 Oct 2012 02:03:14 -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=IYf4kUUnTtTFhprZsv2vwAx3AHvM10X80eEO64q43MA=; b=bHHl8Be3fxYdG0pugsgM8+YvNXPaLe27w+o5mrLXflnZUIqTy7FepQrPzCc90EPWOH wBqPueDS8oj1nRRixjBubyr+VBtbQTxbL0O/lxnTfVBqlldwcy1zobNtcaEGq8dk5sVV AA2/6Gyh3FtkTprupXgKeDa5RLi0CRbxYe13uCep3iRx+p25Kn4S1vaXP04UpgfEnj8K erJArKD6rXgtNgo7o+fVKeQ0+jYkpdU4ejabbhP3kyghEIVZxrv0r/DkF9DuzbJGV/iV eaFHbGV45oaF6GXLBIbcGPzW18EsdY3YVvV2zBTLaUUmq4qxllKvx38Tlkw6ULlCXASa JM9A== MIME-Version: 1.0 Received: by 10.42.52.5 with SMTP id h5mr393341icg.50.1350637394844; Fri, 19 Oct 2012 02:03:14 -0700 (PDT) Received: by 10.64.32.10 with HTTP; Fri, 19 Oct 2012 02:03:14 -0700 (PDT) In-Reply-To: <508041F9.9050906@FreeBSD.org> References: <507FB6C7.50402@FreeBSD.org> <507FEC7F.4030306@FreeBSD.org> <50801E32.80309@FreeBSD.org> <50802138.8020604@FreeBSD.org> <508041F9.9050906@FreeBSD.org> Date: Fri, 19 Oct 2012 12:03:14 +0300 Message-ID: Subject: Re: A little question about safe mode From: Alexander Yerenkow To: Andriy Gapon Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 09:03:16 -0000 2012/10/18 Andriy Gapon : > on 18/10/2012 18:33 Andriy Gapon said the following: >> on 18/10/2012 18:20 Andriy Gapon said the following: >>> My guess is that the easiest way to avoid this ambiguity and the confusion that it >>> causes (like the problem you described above) is to prepend "/dev/", if it's >>> missing, right in vfs_mountroot.c before calling kernel_mount(). >> >> A patch (not tested): >> >> --- a/sys/kern/vfs_mountroot.c >> +++ b/sys/kern/vfs_mountroot.c >> @@ -676,6 +676,7 @@ static int >> parse_mount(char **conf) >> { >> char errmsg[255]; >> + char devbuf[MNAMELEN]; >> struct mntarg *ma; >> char *dev, *fs, *opts, *tok; >> int delay, error, timeout; >> @@ -693,6 +694,11 @@ parse_mount(char **conf) >> parse_advance(&tok); >> dev = tok; >> >> + if (dev[0] != '\0' && strncmp(dev, "/dev/", 5) != 0) { >> + snprintf(devbuf, sizeof(devbuf), "/dev/%s", dev); >> + dev = devbuf; >> + } >> + >> if (root_mount_mddev != -1) { >> /* Handle substitution for the md unit number. */ >> tok = strstr(dev, "md#"); >> >> > > Oops, the patch incorrectly assumes that all "device names" are device names, > which is incorrect e.g. for ZFS. Maybe some other filesystems too. > So don't try it :-) I think correct patch should fix path and prepend "/dev/" only for ufs:, for now. Or at least help should mention this moment. > > -- > Andriy Gapon -- Regards, Alexander Yerenkow From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 10:02:49 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9840FCA; Fri, 19 Oct 2012 10:02:49 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 545918FC12; Fri, 19 Oct 2012 10:02:49 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9JA2maV002434; Fri, 19 Oct 2012 06:02:48 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9JA2mJY002421; Fri, 19 Oct 2012 10:02:48 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 19 Oct 2012 10:02:48 GMT Message-Id: <201210191002.q9JA2mJY002421@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/pc98 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 10:02:49 -0000 TB --- 2012-10-19 07:20:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-19 07:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-19 07:20:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2012-10-19 07:20:00 - cleaning the object tree TB --- 2012-10-19 07:20:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-19 07:20:00 - cd /tinderbox/HEAD/i386/pc98 TB --- 2012-10-19 07:20:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-19 07:22:44 - /usr/local/bin/svn update /src TB --- 2012-10-19 07:22:57 - At svn revision 241721 TB --- 2012-10-19 07:22:58 - building world TB --- 2012-10-19 07:22:58 - CROSS_BUILD_TESTING=YES TB --- 2012-10-19 07:22:58 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-19 07:22:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-19 07:22:58 - SRCCONF=/dev/null TB --- 2012-10-19 07:22:58 - TARGET=pc98 TB --- 2012-10-19 07:22:58 - TARGET_ARCH=i386 TB --- 2012-10-19 07:22:58 - TZ=UTC TB --- 2012-10-19 07:22:58 - __MAKE_CONF=/dev/null TB --- 2012-10-19 07:22:58 - cd /src TB --- 2012-10-19 07:22:58 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Fri Oct 19 07:23:04 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Fri Oct 19 09:53:36 UTC 2012 TB --- 2012-10-19 09:53:36 - generating LINT kernel config TB --- 2012-10-19 09:53:36 - cd /src/sys/pc98/conf TB --- 2012-10-19 09:53:36 - /usr/bin/make -B LINT TB --- 2012-10-19 09:53:36 - cd /src/sys/pc98/conf TB --- 2012-10-19 09:53:36 - /usr/sbin/config -m LINT TB --- 2012-10-19 09:53:36 - building LINT kernel TB --- 2012-10-19 09:53:36 - CROSS_BUILD_TESTING=YES TB --- 2012-10-19 09:53:36 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-19 09:53:36 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-19 09:53:36 - SRCCONF=/dev/null TB --- 2012-10-19 09:53:36 - TARGET=pc98 TB --- 2012-10-19 09:53:36 - TARGET_ARCH=i386 TB --- 2012-10-19 09:53:36 - TZ=UTC TB --- 2012-10-19 09:53:36 - __MAKE_CONF=/dev/null TB --- 2012-10-19 09:53:36 - cd /src TB --- 2012-10-19 09:53:36 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Oct 19 09:53:37 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/mxge/mxge_rss_ethp_z8e.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/my/if_my.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ncv/ncr53c500.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ncv/ncr53c500_pccard.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/netmap/netmap.c cc1: warnings being treated as errors /src/sys/dev/netmap/netmap.c: In function 'netmap_mmap_single': /src/sys/dev/netmap/netmap.c:510: warning: format '%d' expects type 'int', but argument 7 has type 'vm_ooffset_t' [-Wformat] *** [netmap.o] Error code 1 Stop in /obj/pc98.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-19 10:02:48 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-19 10:02:48 - ERROR: failed to build LINT kernel TB --- 2012-10-19 10:02:48 - 7058.30 user 998.70 system 9767.70 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 10:05:14 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CBEB340F; Fri, 19 Oct 2012 10:05:14 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 7766D8FC19; Fri, 19 Oct 2012 10:05:14 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9JA5Dm0011898; Fri, 19 Oct 2012 06:05:13 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9JA5Di1011890; Fri, 19 Oct 2012 10:05:13 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 19 Oct 2012 10:05:13 GMT Message-Id: <201210191005.q9JA5Di1011890@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 10:05:14 -0000 TB --- 2012-10-19 07:20:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-19 07:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-19 07:20:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-19 07:20:00 - cleaning the object tree TB --- 2012-10-19 07:20:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-19 07:20:00 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-19 07:20:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-19 07:22:22 - /usr/local/bin/svn update /src TB --- 2012-10-19 07:22:44 - At svn revision 241721 TB --- 2012-10-19 07:22:45 - building world TB --- 2012-10-19 07:22:45 - CROSS_BUILD_TESTING=YES TB --- 2012-10-19 07:22:45 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-19 07:22:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-19 07:22:45 - SRCCONF=/dev/null TB --- 2012-10-19 07:22:45 - TARGET=i386 TB --- 2012-10-19 07:22:45 - TARGET_ARCH=i386 TB --- 2012-10-19 07:22:45 - TZ=UTC TB --- 2012-10-19 07:22:45 - __MAKE_CONF=/dev/null TB --- 2012-10-19 07:22:45 - cd /src TB --- 2012-10-19 07:22:45 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Fri Oct 19 07:22:54 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> World build completed on Fri Oct 19 09:54:37 UTC 2012 TB --- 2012-10-19 09:54:37 - generating LINT kernel config TB --- 2012-10-19 09:54:37 - cd /src/sys/i386/conf TB --- 2012-10-19 09:54:37 - /usr/bin/make -B LINT TB --- 2012-10-19 09:54:37 - cd /src/sys/i386/conf TB --- 2012-10-19 09:54:37 - /usr/sbin/config -m LINT TB --- 2012-10-19 09:54:37 - building LINT kernel TB --- 2012-10-19 09:54:37 - CROSS_BUILD_TESTING=YES TB --- 2012-10-19 09:54:37 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-19 09:54:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-19 09:54:37 - SRCCONF=/dev/null TB --- 2012-10-19 09:54:37 - TARGET=i386 TB --- 2012-10-19 09:54:37 - TARGET_ARCH=i386 TB --- 2012-10-19 09:54:37 - TZ=UTC TB --- 2012-10-19 09:54:37 - __MAKE_CONF=/dev/null TB --- 2012-10-19 09:54:37 - cd /src TB --- 2012-10-19 09:54:37 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Oct 19 09:54:37 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/mxge/mxge_rss_ethp_z8e.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/my/if_my.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ncv/ncr53c500.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ncv/ncr53c500_pccard.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/netmap/netmap.c cc1: warnings being treated as errors /src/sys/dev/netmap/netmap.c: In function 'netmap_mmap_single': /src/sys/dev/netmap/netmap.c:510: warning: format '%d' expects type 'int', but argument 7 has type 'vm_ooffset_t' [-Wformat] *** [netmap.o] Error code 1 Stop in /obj/i386.i386/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-19 10:05:13 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-19 10:05:13 - ERROR: failed to build LINT kernel TB --- 2012-10-19 10:05:13 - 7180.17 user 1019.95 system 9912.88 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 10:40:52 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 83F3E1B2; Fri, 19 Oct 2012 10:40:52 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 47C588FC0C; Fri, 19 Oct 2012 10:40:52 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9JAeprc072771; Fri, 19 Oct 2012 06:40:51 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9JAepOY072770; Fri, 19 Oct 2012 10:40:51 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 19 Oct 2012 10:40:51 GMT Message-Id: <201210191040.q9JAepOY072770@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 10:40:52 -0000 TB --- 2012-10-19 07:20:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-19 07:20:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-19 07:20:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-10-19 07:20:00 - cleaning the object tree TB --- 2012-10-19 07:20:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-19 07:20:00 - cd /tinderbox/HEAD/amd64/amd64 TB --- 2012-10-19 07:20:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-19 07:22:22 - /usr/local/bin/svn update /src TB --- 2012-10-19 07:22:44 - At svn revision 241721 TB --- 2012-10-19 07:22:45 - building world TB --- 2012-10-19 07:22:45 - CROSS_BUILD_TESTING=YES TB --- 2012-10-19 07:22:45 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-19 07:22:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-19 07:22:45 - SRCCONF=/dev/null TB --- 2012-10-19 07:22:45 - TARGET=amd64 TB --- 2012-10-19 07:22:45 - TARGET_ARCH=amd64 TB --- 2012-10-19 07:22:45 - TZ=UTC TB --- 2012-10-19 07:22:45 - __MAKE_CONF=/dev/null TB --- 2012-10-19 07:22:45 - cd /src TB --- 2012-10-19 07:22:45 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Fri Oct 19 07:22:55 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything >>> stage 5.1: building 32 bit shim libraries >>> World build completed on Fri Oct 19 10:30:42 UTC 2012 TB --- 2012-10-19 10:30:42 - generating LINT kernel config TB --- 2012-10-19 10:30:42 - cd /src/sys/amd64/conf TB --- 2012-10-19 10:30:42 - /usr/bin/make -B LINT TB --- 2012-10-19 10:30:42 - cd /src/sys/amd64/conf TB --- 2012-10-19 10:30:42 - /usr/sbin/config -m LINT TB --- 2012-10-19 10:30:42 - building LINT kernel TB --- 2012-10-19 10:30:42 - CROSS_BUILD_TESTING=YES TB --- 2012-10-19 10:30:42 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-19 10:30:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-19 10:30:42 - SRCCONF=/dev/null TB --- 2012-10-19 10:30:42 - TARGET=amd64 TB --- 2012-10-19 10:30:42 - TARGET_ARCH=amd64 TB --- 2012-10-19 10:30:42 - TZ=UTC TB --- 2012-10-19 10:30:42 - __MAKE_CONF=/dev/null TB --- 2012-10-19 10:30:42 - cd /src TB --- 2012-10-19 10:30:42 - /usr/bin/make -B buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Oct 19 10:30:42 UTC 2012 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/my/if_my.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ncv/ncr53c500.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/ncv/ncr53c500_pccard.c cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -nostdinc -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -DGPROF -falign-functions=16 -DGPROF4 -DGUPROF -fno-builtin -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg -mprofiler-epilogue /src/sys/dev/netmap/netmap.c cc1: warnings being treated as errors /src/sys/dev/netmap/netmap.c: In function 'netmap_mmap_single': /src/sys/dev/netmap/netmap.c:510: warning: format '%d' expects type 'int', but argument 7 has type 'vm_ooffset_t' [-Wformat] /src/sys/dev/netmap/netmap.c:510: warning: format '%d' expects type 'int', but argument 8 has type 'vm_size_t' [-Wformat] *** [netmap.o] Error code 1 Stop in /obj/amd64.amd64/src/sys/LINT. *** [buildkernel] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-19 10:40:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-19 10:40:51 - ERROR: failed to build LINT kernel TB --- 2012-10-19 10:40:51 - 8611.66 user 1329.30 system 12050.67 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 14:25:24 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3BAB582E for ; Fri, 19 Oct 2012 14:25:24 +0000 (UTC) (envelope-from des@des.no) Received: from smtp.des.no (smtp.des.no [194.63.250.102]) by mx1.freebsd.org (Postfix) with ESMTP id F1BAE8FC0C for ; Fri, 19 Oct 2012 14:25:23 +0000 (UTC) Received: from ds4.des.no (smtp.des.no [194.63.250.102]) by smtp.des.no (Postfix) with ESMTP id 05BFA6707 for ; Fri, 19 Oct 2012 16:25:16 +0200 (CEST) Received: by ds4.des.no (Postfix, from userid 1001) id 6235D9C8C; Fri, 19 Oct 2012 16:25:15 +0200 (CEST) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: current@freebsd.org Subject: Removing firewire support from GENERIC Date: Fri, 19 Oct 2012 16:25:14 +0200 Message-ID: <86ehkufsj9.fsf@ds4.des.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.4 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 14:25:24 -0000 Firewire is - a significant security risk - an obstacle to functining suspend / resume on many systems - rapidly becoming obsolete - available as a module The attached patch removes it from GENERIC across the board. Any serious objections before I commit it to head? DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 14:25:54 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C93AC959 for ; Fri, 19 Oct 2012 14:25:54 +0000 (UTC) (envelope-from des@des.no) Received: from smtp.des.no (smtp.des.no [194.63.250.102]) by mx1.freebsd.org (Postfix) with ESMTP id 581608FC0A for ; Fri, 19 Oct 2012 14:25:54 +0000 (UTC) Received: from ds4.des.no (smtp.des.no [194.63.250.102]) by smtp.des.no (Postfix) with ESMTP id A10A56709 for ; Fri, 19 Oct 2012 16:25:53 +0200 (CEST) Received: by ds4.des.no (Postfix, from userid 1001) id 7F41F9C8E; Fri, 19 Oct 2012 16:25:53 +0200 (CEST) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: current@freebsd.org Subject: Re: Removing firewire support from GENERIC References: <86ehkufsj9.fsf@ds4.des.no> Date: Fri, 19 Oct 2012 16:25:53 +0200 In-Reply-To: <86ehkufsj9.fsf@ds4.des.no> ("Dag-Erling =?utf-8?Q?Sm=C3=B8rg?= =?utf-8?Q?rav=22's?= message of "Fri, 19 Oct 2012 16:25:14 +0200") Message-ID: <86a9vifsi6.fsf@ds4.des.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.4 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 14:25:55 -0000 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Once more, with patch. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=generic-without-firewire.diff Index: amd64/conf/GENERIC =================================================================== --- amd64/conf/GENERIC (revision 241722) +++ amd64/conf/GENERIC (working copy) @@ -317,15 +317,6 @@ device ukbd # Keyboard device umass # Disks/Mass storage - Requires scbus and da -# FireWire support -device firewire # FireWire bus code -# sbp(4) works for some systems but causes boot failure on others -#device sbp # SCSI over FireWire (Requires scbus and da) -device fwe # Ethernet over FireWire (non-standard!) -device fwip # IP over FireWire (RFC 2734,3146) -device dcons # Dumb console driver -device dcons_crom # Configuration ROM for dcons - # Sound support device sound # Generic sound driver (required) device snd_cmi # CMedia CMI8338/CMI8738 Index: i386/conf/GENERIC =================================================================== --- i386/conf/GENERIC (revision 241722) +++ i386/conf/GENERIC (working copy) @@ -331,15 +331,6 @@ device ukbd # Keyboard device umass # Disks/Mass storage - Requires scbus and da -# FireWire support -device firewire # FireWire bus code -# sbp(4) works for some systems but causes boot failure on others -#device sbp # SCSI over FireWire (Requires scbus and da) -device fwe # Ethernet over FireWire (non-standard!) -device fwip # IP over FireWire (RFC 2734,3146) -device dcons # Dumb console driver -device dcons_crom # Configuration ROM for dcons - # Sound support device sound # Generic sound driver (required) device snd_cmi # CMedia CMI8338/CMI8738 Index: ia64/conf/GENERIC =================================================================== --- ia64/conf/GENERIC (revision 241722) +++ ia64/conf/GENERIC (working copy) @@ -77,7 +77,6 @@ options MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones # Various "busses" -device firewire # FireWire bus code device miibus # MII bus support (Ethernet) device pci # PCI bus support device scbus # SCSI bus (required for ATA/SCSI) Index: pc98/conf/GENERIC =================================================================== --- pc98/conf/GENERIC (revision 241722) +++ pc98/conf/GENERIC (working copy) @@ -270,7 +270,6 @@ #device zyd # ZyDAS zd1211/zd1211b wireless NICs # FireWire support -#device firewire # FireWire bus code #device sbp # SCSI over FireWire (Requires scbus and da) #device fwe # Ethernet over FireWire (non-standard!) Index: powerpc/conf/GENERIC =================================================================== --- powerpc/conf/GENERIC (revision 241722) +++ powerpc/conf/GENERIC (working copy) @@ -180,12 +180,6 @@ options IEEE80211_SUPPORT_MESH options AH_SUPPORT_AR5416 -# FireWire support -device firewire # FireWire bus code -# sbp(4) works for some systems but causes boot failure on others -device sbp # SCSI over FireWire (Requires scbus and da) -device fwe # Ethernet over FireWire (non-standard!) - # Misc device iicbus # I2C bus code device kiic # Keywest I2C Index: sparc64/conf/GENERIC =================================================================== --- sparc64/conf/GENERIC (revision 241722) +++ sparc64/conf/GENERIC (working copy) @@ -238,15 +238,6 @@ device ukbd # Keyboard device umass # Disks/Mass storage - Requires scbus and da -# FireWire support -device firewire # FireWire bus code -# sbp(4) works for some systems but causes boot failure on others -#device sbp # SCSI over FireWire (Requires scbus and da) -device fwe # Ethernet over FireWire (non-standard!) -device fwip # IP over FireWire (RFC 2734,3146) -device dcons # Dumb console driver -device dcons_crom # Configuration ROM for dcons - # Sound support device sound # Generic sound driver (required) device snd_audiocs # Crystal Semiconductor CS4231 --=-=-=-- From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 14:33:10 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9D473E04 for ; Fri, 19 Oct 2012 14:33:10 +0000 (UTC) (envelope-from tevans.uk@googlemail.com) Received: from mail-vb0-f54.google.com (mail-vb0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 5239A8FC12 for ; Fri, 19 Oct 2012 14:33:09 +0000 (UTC) Received: by mail-vb0-f54.google.com with SMTP id v11so701829vbm.13 for ; Fri, 19 Oct 2012 07:33:09 -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 :content-type:content-transfer-encoding; bh=kvHD8LeGLN2LnML4PVXu8Sky7sl3mZ6HBEwXl38wMXA=; b=BwCHR+f9BNRfUEK2ec8WBeo6EO0pPsNzrpYz8252vPloB7q9I6jnktoTgFIi5zyIkB WPAMb8gBS046A+iVRf1n6/mQIEG8s2mTHy0ijIQETfa+uetAOcd6VNPGNsmMkFpavQ1x skxzGwDlV7vh3MmZqQ5Aas8ovk4GcITugoNN33xpyQGQB1Kx2QZVsiu9+BdosTJzEJwP 59aoteOAhIbObBeu0lHOFoiVrWWjCpnTR2o9lRCjFI5sd53GZlR0oG56ls0fiBjssTjn V1Zr2Oi0/6qdUubhTWehwyz9e+pD0wNduOs9RDaOq+lgXFuLDdkz4Dk3hNZTDD65YX16 mXGw== MIME-Version: 1.0 Received: by 10.52.177.130 with SMTP id cq2mr1418750vdc.102.1350657189367; Fri, 19 Oct 2012 07:33:09 -0700 (PDT) Received: by 10.58.31.162 with HTTP; Fri, 19 Oct 2012 07:33:09 -0700 (PDT) In-Reply-To: <86ehkufsj9.fsf@ds4.des.no> References: <86ehkufsj9.fsf@ds4.des.no> Date: Fri, 19 Oct 2012 15:33:09 +0100 Message-ID: Subject: Re: Removing firewire support from GENERIC From: Tom Evans To: current@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 14:33:10 -0000 On Fri, Oct 19, 2012 at 3:25 PM, Dag-Erling Sm=C3=B8rgrav wrot= e: > Firewire is > > - a significant security risk > - an obstacle to functining suspend / resume on many systems > - rapidly becoming obsolete > - available as a module > > The attached patch removes it from GENERIC across the board. Any > serious objections before I commit it to head? > > DES Hi DES Would dcons over firewire still work in GENERIC, with firewire as a module? Cheers Tom From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 14:36:20 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 675E2BE for ; Fri, 19 Oct 2012 14:36:20 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from acme.spoerlein.net (acme.spoerlein.net [IPv6:2a01:4f8:131:23c2::1]) by mx1.freebsd.org (Postfix) with ESMTP id D7E0C8FC08 for ; Fri, 19 Oct 2012 14:36:19 +0000 (UTC) Received: from localhost (acme.spoerlein.net [IPv6:2a01:4f8:131:23c2::1]) by acme.spoerlein.net (8.14.5/8.14.5) with ESMTP id q9JEaIBp062021 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Fri, 19 Oct 2012 16:36:18 +0200 (CEST) (envelope-from uqs@FreeBSD.org) Date: Fri, 19 Oct 2012 16:36:18 +0200 From: Ulrich =?utf-8?B?U3DDtnJsZWlu?= To: current@FreeBSD.org Subject: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months Message-ID: <20121019143617.GF69724@acme.spoerlein.net> Mail-Followup-To: current@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 14:36:20 -0000 Hi all, those roff sources have been very naughty and will be removed from the tree by the end of the year. Most of those papers are severely out of date and provide no more use to the system. They can probably also be found online using a search engine of your choice. Should people feel strongly about them, we might be able to move them over to the doc repository. Thanks Uli From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 14:38:12 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 95EC6356 for ; Fri, 19 Oct 2012 14:38:12 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: from mail-vb0-f54.google.com (mail-vb0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 446928FC17 for ; Fri, 19 Oct 2012 14:38:11 +0000 (UTC) Received: by mail-vb0-f54.google.com with SMTP id v11so711261vbm.13 for ; Fri, 19 Oct 2012 07:38: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 :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=0VqxtSHqUW545yNNgMoHme7OYv1VbhQ8RVQqA2gh3nY=; b=zWBdsfeiklnvMeLfGWOW+Sr1B4Kvh1KDuAusjCnm91UBjvim6xMPX1Fb1QhBWRYXN4 gV9WwvAxFGK5iONf+rRCMfrXHEFWWL57rXGQkoeUNl0cRDgZr0Cwu8zssTvjxonDHJ0G 09D4ozPLgTMXg0dOD9CEZHj38JLSWDx7KRf/eehE5PgNOVHA0RRbAg8lYgucwGQP5ssi 01pCVWhSs25PnnXUxhV6LOs8yBccpXt8KIV+d02+gU04B3APJi47iofterUBY5vs1nUo GWh6DKsDXhrqSM31lxTlSRFKLwEpqvOD9bjA07CEBMOsvW2VPPZ+k1ku61K4X50b67Bl epjQ== MIME-Version: 1.0 Received: by 10.52.33.130 with SMTP id r2mr1448977vdi.43.1350657491394; Fri, 19 Oct 2012 07:38:11 -0700 (PDT) Sender: chmeeedalf@gmail.com Received: by 10.58.213.74 with HTTP; Fri, 19 Oct 2012 07:38:11 -0700 (PDT) In-Reply-To: References: <86ehkufsj9.fsf@ds4.des.no> Date: Fri, 19 Oct 2012 10:38:11 -0400 X-Google-Sender-Auth: Ac-DIhh8ugfjAG9pe5qmTgz0a_s Message-ID: Subject: Re: Removing firewire support from GENERIC From: Justin Hibbits To: Tom Evans Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 14:38:12 -0000 On Fri, Oct 19, 2012 at 10:33 AM, Tom Evans wrote= : > On Fri, Oct 19, 2012 at 3:25 PM, Dag-Erling Sm=F8rgrav wrote= : > > Firewire is > > > > - a significant security risk > > - an obstacle to functining suspend / resume on many systems > > - rapidly becoming obsolete > > - available as a module > > > > The attached patch removes it from GENERIC across the board. Any > > serious objections before I commit it to head? > > > > DES > > Hi DES > > Would dcons over firewire still work in GENERIC, with firewire as a modul= e? > > Cheers > > Tom Yes, dcons would still work. I routinely use dcons with firewire as a module for debugging on PowerPC. I have no issue with removing it on PowerPC. Every situation I can think of (dcons, booting from firewire disk) I've already tested with firewire as a module, and my custom kernels will continue to have it built by default anyway. - Justin From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 14:39:32 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 636B6476; Fri, 19 Oct 2012 14:39:32 +0000 (UTC) (envelope-from admin@lissyara.su) Received: from mx.lissyara.su (mx.lissyara.su [91.227.18.11]) by mx1.freebsd.org (Postfix) with ESMTP id A10C48FC0C; Fri, 19 Oct 2012 14:39:31 +0000 (UTC) Received: from [77.41.108.0] (port=63002 helo=dc7700p.lissyara.su) by mx.lissyara.su with esmtpa (Exim 4.80 (FreeBSD)) (envelope-from ) id 1TPDjP-000Fq8-TP; Fri, 19 Oct 2012 18:39:23 +0400 Message-ID: <5081661B.2090209@lissyara.su> Date: Fri, 19 Oct 2012 18:39:23 +0400 From: Alex Keda User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121019 Thunderbird/16.0.1 MIME-Version: 1.0 To: Baptiste Daroussin , ports-announce@FreeBSD.org, current@freebsd.org, ports@FreeBSD.org Subject: Re: [HEADSUP] current switched by default to pkgng References: <20121010134421.GI26497@ithaqua.etoilebsd.net> In-Reply-To: <20121010134421.GI26497@ithaqua.etoilebsd.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Description: if spam count > 60 - this is spam X-Spam-Count: 0 X-Descriptions: powered by www.lissyara.su X-Bounce-ID: mx.lissyara.su X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 14:39:32 -0000 On 10.10.2012 17:44, Baptiste Daroussin wrote: > Hi all, > > If you are using the ports tree on a FreeBSD current setup, then you are > concerned by the announce. > > As nvidia-drivers has been fixed and is now properly working with pkgng, the > ports tree as been switch by default to use pkgng on FreeBSD Current based on > version >= 1000017 which was the version when we tested the switch code. > > Make sure to read UPDATING (from ports) to correctly migrate your system or find > instruction to make your system still running with legacy pkg_install tools. > > regards, > Bapt > pkg command does not have key for list options - no autocompletions for example, for service command, I use complete service 'n/*/`service -l`/' in .cshrc what I can use for pkg command? From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 14:45:54 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A3B887CB; Fri, 19 Oct 2012 14:45:54 +0000 (UTC) (envelope-from mark@exonetric.com) Received: from relay.exonetric.net (relay0.exonetric.net [178.250.72.161]) by mx1.freebsd.org (Postfix) with ESMTP id 621738FC08; Fri, 19 Oct 2012 14:45:53 +0000 (UTC) Received: from markimac.fairfx.local (unknown [62.244.179.74]) by relay.exonetric.net (Postfix) with ESMTPSA id ADB272C52C; Fri, 19 Oct 2012 15:45:46 +0100 (BST) Content-Type: text/plain; charset=iso-8859-1 Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months From: Mark Blackman In-Reply-To: <20121019143617.GF69724@acme.spoerlein.net> Date: Fri, 19 Oct 2012 15:45:46 +0100 Content-Transfer-Encoding: quoted-printable Message-Id: <4B498A56-CE3B-4C7F-B5F1-B1054E1E6DC6@exonetric.com> References: <20121019143617.GF69724@acme.spoerlein.net> To: =?iso-8859-1?Q?Ulrich_Sp=F6rlein?= X-Mailer: Apple Mail (2.1499) Cc: current@FreeBSD.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 14:45:54 -0000 On 19 Oct 2012, at 15:36, Ulrich Sp=F6rlein wrote: > Hi all, >=20 > those roff sources have been very naughty and will be removed from the > tree by the end of the year. Most of those papers are severely out of > date and provide no more use to the system. They can probably also be > found online using a search engine of your choice. >=20 > Should people feel strongly about them, we might be able to move them > over to the doc repository. I have looked at them every once in a while and I would move them to the doc repository under 'legacy' or 'archived'. - Mark= From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 14:50:24 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF853B7A for ; Fri, 19 Oct 2012 14:50:24 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [8.8.178.135]) by mx1.freebsd.org (Postfix) with ESMTP id A6F788FC12 for ; Fri, 19 Oct 2012 14:50:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q9JEoOLT021623 for ; Fri, 19 Oct 2012 14:50:24 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q9JEoOvN021619 for current@FreeBSD.org; Fri, 19 Oct 2012 14:50:24 GMT (envelope-from bdrewery) Received: (qmail 84073 invoked from network); 19 Oct 2012 09:50:23 -0500 Received: from unknown (HELO ?192.168.0.74?) (freebsd@shatow.net@74.94.87.209) by sweb.xzibition.com with ESMTPA; 19 Oct 2012 09:50:23 -0500 Message-ID: <508168B3.1080808@FreeBSD.org> Date: Fri, 19 Oct 2012 09:50:27 -0500 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 Subject: Re: [HEADSUP] current switched by default to pkgng References: <20121010134421.GI26497@ithaqua.etoilebsd.net> In-Reply-To: <20121010134421.GI26497@ithaqua.etoilebsd.net> X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org, Baptiste Daroussin , ports-announce@FreeBSD.org, current@FreeBSD.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 14:50:24 -0000 On 10/10/2012 8:44 AM, Baptiste Daroussin wrote: > Hi all, > > If you are using the ports tree on a FreeBSD current setup, then you are > concerned by the announce. > > As nvidia-drivers has been fixed and is now properly working with pkgng, the > ports tree as been switch by default to use pkgng on FreeBSD Current based on > version >= 1000017 which was the version when we tested the switch code. > > Make sure to read UPDATING (from ports) to correctly migrate your system or find > instruction to make your system still running with legacy pkg_install tools. > > regards, > Bapt > In case anyone missed it. Both ports-mgmt/portmaster and ports-mgmt/portupgrade will work with PKGNG now. For portmaster, you will need to select the PKGNGPATCH currently. The plan is to not require the patch for the next portmaster version, to support both pkg_install and pkgng out-of-box. -- Regards, Bryan Drewery bdrewery@freenode/EFNet From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 14:54:04 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21D23D56 for ; Fri, 19 Oct 2012 14:54:04 +0000 (UTC) (envelope-from mj@feral.com) Received: from ns1.feral.com (ns1.feral.com [192.67.166.1]) by mx1.freebsd.org (Postfix) with ESMTP id E78AC8FC08 for ; Fri, 19 Oct 2012 14:54:03 +0000 (UTC) Received: from [192.168.135.101] (c-71-202-26-251.hsd1.ca.comcast.net [71.202.26.251]) (authenticated bits=0) by ns1.feral.com (8.14.5/8.14.4) with ESMTP id q9JErvS8085592 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Fri, 19 Oct 2012 07:53:57 -0700 (PDT) (envelope-from mj@feral.com) Message-ID: <5081697F.6000204@feral.com> Date: Fri, 19 Oct 2012 07:53:51 -0700 From: Matthew Jacob Organization: Feral Software User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months References: <20121019143617.GF69724@acme.spoerlein.net> <4B498A56-CE3B-4C7F-B5F1-B1054E1E6DC6@exonetric.com> In-Reply-To: <4B498A56-CE3B-4C7F-B5F1-B1054E1E6DC6@exonetric.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (ns1.feral.com [192.67.166.1]); Fri, 19 Oct 2012 07:53:57 -0700 (PDT) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Matt Jacob List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 14:54:04 -0000 On 10/19/2012 7:45 AM, Mark Blackman wrote: > On 19 Oct 2012, at 15:36, Ulrich Spörlein wrote: > >> Hi all, >> >> those roff sources have been very naughty and will be removed from the >> tree by the end of the year. Most of those papers are severely out of >> date and provide no more use to the system. They can probably also be >> found online using a search engine of your choice. >> >> Should people feel strongly about them, we might be able to move them >> over to the doc repository. > I have looked at them every once in a while and I would move them to > the doc repository under 'legacy' or 'archived'. > > +1 From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 15:10:21 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D8421278; Fri, 19 Oct 2012 15:10:21 +0000 (UTC) (envelope-from vince@unsane.co.uk) Received: from unsane.co.uk (unsane-pt.tunnel.tserv5.lon1.ipv6.he.net [IPv6:2001:470:1f08:110::2]) by mx1.freebsd.org (Postfix) with ESMTP id 4E5C68FC0C; Fri, 19 Oct 2012 15:10:19 +0000 (UTC) Received: from vhoffman.lon.namesco.net (lon.namesco.net [195.7.254.102]) (authenticated bits=0) by unsane.co.uk (8.14.5/8.14.5) with ESMTP id q9JFAHae098586 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO); Fri, 19 Oct 2012 16:10:18 +0100 (BST) (envelope-from vince@unsane.co.uk) Message-ID: <50816D59.1030706@unsane.co.uk> Date: Fri, 19 Oct 2012 16:10:17 +0100 From: Vincent Hoffman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: Alex Keda Subject: Re: [HEADSUP] current switched by default to pkgng References: <20121010134421.GI26497@ithaqua.etoilebsd.net> <5081661B.2090209@lissyara.su> In-Reply-To: <5081661B.2090209@lissyara.su> X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Baptiste Daroussin , ports-announce@freebsd.org, current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 15:10:22 -0000 On 19/10/2012 15:39, Alex Keda wrote: > On 10.10.2012 17:44, Baptiste Daroussin wrote: >> Hi all, >> >> If you are using the ports tree on a FreeBSD current setup, then you are >> concerned by the announce. >> >> As nvidia-drivers has been fixed and is now properly working with pkgng, the >> ports tree as been switch by default to use pkgng on FreeBSD Current based on >> version >= 1000017 which was the version when we tested the switch code. >> >> Make sure to read UPDATING (from ports) to correctly migrate your system or find >> instruction to make your system still running with legacy pkg_install tools. >> >> regards, >> Bapt >> > pkg command does not have key for list options - no autocompletions > > for example, for service command, I use > complete service 'n/*/`service -l`/' > in .cshrc > > what I can use for pkg command? horrible but working example pkg help 2>&1 | sed -e '1,/Commands supported:/d ; /For more information on the different commands/,$d; s/^ *// ; s/ .*.*$// ;/^$/d' There's bound to be better ways, I was just bored enough to knock this up. note s/^ *// is a tab, while s/ .*.*$// is 2 spaces dont think our sed has any other way to express tab other than an actual tab (ctrl-v then tab on the command line) Vince > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 15:15:12 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 72A6249F for ; Fri, 19 Oct 2012 15:15:12 +0000 (UTC) (envelope-from seanbru@yahoo-inc.com) Received: from mrout1-b.corp.bf1.yahoo.com (mrout1-b.corp.bf1.yahoo.com [98.139.253.104]) by mx1.freebsd.org (Postfix) with ESMTP id 04F188FC12 for ; Fri, 19 Oct 2012 15:15:11 +0000 (UTC) Received: from [IPv6:::1] (rideseveral.corp.yahoo.com [10.73.160.231]) by mrout1-b.corp.bf1.yahoo.com (8.14.4/8.14.4/y.out) with ESMTP id q9JFEnMb068320; Fri, 19 Oct 2012 08:14:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yahoo-inc.com; s=cobra; t=1350659690; bh=5RXTYB61V1UY7tYDumvlF/51NwqJ5WenQv74jQtcHxI=; h=Subject:From:To:Cc:In-Reply-To:References:Content-Type:Date: Message-ID:Mime-Version:Content-Transfer-Encoding; b=K7c//PanDtI9dDrOklOmb3MlonkYp4L6anfu73xrHiAbBR69NcJF813s0A/wXu0tt 27Qq+hubwGCD1BZqPUMKVVuUmDUrw5K/5zz0mCIj5czH9Y20jvtjExFDk2wZGFz7Tb fzoUVSOwSNRrhrP29Xj2X1v3PCf+y2FHBCRsmJRo= Subject: Re: Removing firewire support from GENERIC From: Sean Bruno To: Dag-Erling =?ISO-8859-1?Q?Sm=F8rgrav?= In-Reply-To: <86a9vifsi6.fsf@ds4.des.no> References: <86ehkufsj9.fsf@ds4.des.no> <86a9vifsi6.fsf@ds4.des.no> Content-Type: text/plain; charset="UTF-8" Date: Fri, 19 Oct 2012 08:14:49 -0700 Message-ID: <1350659689.3221.0.camel@powernoodle.corp.yahoo.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 8bit X-Milter-Version: master.31+4-gbc07cd5+ X-CLX-ID: 659690003 Cc: "current@freebsd.org" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 15:15:12 -0000 On Fri, 2012-10-19 at 07:25 -0700, Dag-Erling Smørgrav wrote: > Once more, with patch. > > DES Ack. I think this is sensible. Sean From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 15:16:55 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D6D795B7; Fri, 19 Oct 2012 15:16:55 +0000 (UTC) (envelope-from admin@lissyara.su) Received: from mx.lissyara.su (mx.lissyara.su [91.227.18.11]) by mx1.freebsd.org (Postfix) with ESMTP id 4DA028FC12; Fri, 19 Oct 2012 15:16:55 +0000 (UTC) Received: from [77.41.108.0] (port=55918 helo=dc7700p.lissyara.su) by mx.lissyara.su with esmtpa (Exim 4.80 (FreeBSD)) (envelope-from ) id 1TPEJh-0006V2-R5; Fri, 19 Oct 2012 19:16:53 +0400 Message-ID: <50816EE5.8090704@lissyara.su> Date: Fri, 19 Oct 2012 19:16:53 +0400 From: Alex Keda User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121019 Thunderbird/16.0.1 MIME-Version: 1.0 To: Vincent Hoffman Subject: Re: [HEADSUP] current switched by default to pkgng References: <20121010134421.GI26497@ithaqua.etoilebsd.net> <5081661B.2090209@lissyara.su> <50816D59.1030706@unsane.co.uk> In-Reply-To: <50816D59.1030706@unsane.co.uk> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Description: if spam count > 60 - this is spam X-Spam-Count: 0 X-Descriptions: powered by www.lissyara.su X-Bounce-ID: mx.lissyara.su Cc: ports@freebsd.org, Baptiste Daroussin , ports-announce@freebsd.org, current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 15:16:56 -0000 On 19.10.2012 19:10, Vincent Hoffman wrote: > On 19/10/2012 15:39, Alex Keda wrote: >> On 10.10.2012 17:44, Baptiste Daroussin wrote: >>> Hi all, >>> >>> If you are using the ports tree on a FreeBSD current setup, then you are >>> concerned by the announce. >>> >>> As nvidia-drivers has been fixed and is now properly working with pkgng, the >>> ports tree as been switch by default to use pkgng on FreeBSD Current based on >>> version >= 1000017 which was the version when we tested the switch code. >>> >>> Make sure to read UPDATING (from ports) to correctly migrate your system or find >>> instruction to make your system still running with legacy pkg_install tools. >>> >>> regards, >>> Bapt >>> >> pkg command does not have key for list options - no autocompletions >> >> for example, for service command, I use >> complete service 'n/*/`service -l`/' >> in .cshrc >> >> what I can use for pkg command? > > horrible but working example > pkg help 2>&1 | sed -e '1,/Commands supported:/d ; /For more information > on the different commands/,$d; s/^ *// ; s/ .*.*$// ;/^$/d' > > There's bound to be better ways, I was just bored enough to knock this up. > note s/^ *// is a tab, while s/ .*.*$// is 2 spaces > dont think our sed has any other way to express tab other than an actual > tab (ctrl-v then tab on the command line) it's crazy =) may be add -l options? From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 15:17:00 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8BFE25BB for ; Fri, 19 Oct 2012 15:17:00 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from anacreon.physics.wisc.edu (unknown [IPv6:2607:f388:101c:0:216:cbff:fe39:3fae]) by mx1.freebsd.org (Postfix) with ESMTP id 536948FC16 for ; Fri, 19 Oct 2012 15:17:00 +0000 (UTC) Received: from anacreon.physics.wisc.edu (localhost [IPv6:::1]) by anacreon.physics.wisc.edu (8.14.5/8.14.5) with ESMTP id q9JFGxeT071065 for ; Fri, 19 Oct 2012 10:16:59 -0500 (CDT) (envelope-from nwhitehorn@freebsd.org) Message-ID: <50816EEB.8080207@freebsd.org> Date: Fri, 19 Oct 2012 10:16:59 -0500 From: Nathan Whitehorn User-Agent: Mozilla/5.0 (X11; FreeBSD powerpc; rv:15.0) Gecko/20120907 Thunderbird/15.0 MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: Re: Removing firewire support from GENERIC References: <86ehkufsj9.fsf@ds4.des.no> In-Reply-To: <86ehkufsj9.fsf@ds4.des.no> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 15:17:00 -0000 On 10/19/12 09:25, Dag-Erling Smørgrav wrote: > Firewire is > > - a significant security risk > - an obstacle to functining suspend / resume on many systems > - rapidly becoming obsolete > - available as a module > > The attached patch removes it from GENERIC across the board. Any > serious objections before I commit it to head? > > DES (e) is still quite useful and something I expect to have Just Work on any modern operating system The only reason I think this makes sense is because of the suspend/resume bugs. This is otherwise, as far as I'm concerned, a serious POLA violation. That said, I thought the same thing about removing sbp(4) from GENERIC and there is not too much point in having firewire without sbp. -Nathan From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 15:32:30 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33287C5; Fri, 19 Oct 2012 15:32:30 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id 04DC78FC0A; Fri, 19 Oct 2012 15:32:30 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 58B97B91C; Fri, 19 Oct 2012 11:32:29 -0400 (EDT) From: John Baldwin To: freebsd-current@freebsd.org Subject: Re: A little question about safe mode Date: Fri, 19 Oct 2012 08:52:35 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p20; KDE/4.5.5; amd64; ; ) References: <50802138.8020604@FreeBSD.org> <508041F9.9050906@FreeBSD.org> In-Reply-To: <508041F9.9050906@FreeBSD.org> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201210190852.35915.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Fri, 19 Oct 2012 11:32:29 -0400 (EDT) Cc: Alexander Yerenkow , Andriy Gapon X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 15:32:30 -0000 On Thursday, October 18, 2012 1:52:57 pm Andriy Gapon wrote: > on 18/10/2012 18:33 Andriy Gapon said the following: > > on 18/10/2012 18:20 Andriy Gapon said the following: > >> My guess is that the easiest way to avoid this ambiguity and the confusion that it > >> causes (like the problem you described above) is to prepend "/dev/", if it's > >> missing, right in vfs_mountroot.c before calling kernel_mount(). > > > > A patch (not tested): > > > > --- a/sys/kern/vfs_mountroot.c > > +++ b/sys/kern/vfs_mountroot.c > > @@ -676,6 +676,7 @@ static int > > parse_mount(char **conf) > > { > > char errmsg[255]; > > + char devbuf[MNAMELEN]; > > struct mntarg *ma; > > char *dev, *fs, *opts, *tok; > > int delay, error, timeout; > > @@ -693,6 +694,11 @@ parse_mount(char **conf) > > parse_advance(&tok); > > dev = tok; > > > > + if (dev[0] != '\0' && strncmp(dev, "/dev/", 5) != 0) { > > + snprintf(devbuf, sizeof(devbuf), "/dev/%s", dev); > > + dev = devbuf; > > + } > > + > > if (root_mount_mddev != -1) { > > /* Handle substitution for the md unit number. */ > > tok = strstr(dev, "md#"); > > > > > > Oops, the patch incorrectly assumes that all "device names" are device names, > which is incorrect e.g. for ZFS. Maybe some other filesystems too. > So don't try it :-) It seems that perhaps what you want to do is try it with /dev/ and if that doesn't work, fall back to the raw string? -- John Baldwin From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 15:41:22 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E3C75875 for ; Fri, 19 Oct 2012 15:41:22 +0000 (UTC) (envelope-from seanbru@yahoo-inc.com) Received: from mrout1-b.corp.bf1.yahoo.com (mrout1-b.corp.bf1.yahoo.com [98.139.253.104]) by mx1.freebsd.org (Postfix) with ESMTP id 853D88FC0C for ; Fri, 19 Oct 2012 15:41:22 +0000 (UTC) Received: from [IPv6:::1] (rideseveral.corp.yahoo.com [10.73.160.231]) by mrout1-b.corp.bf1.yahoo.com (8.14.4/8.14.4/y.out) with ESMTP id q9JFeuFq079547; Fri, 19 Oct 2012 08:40:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yahoo-inc.com; s=cobra; t=1350661258; bh=jhI28ftagaIFSNWa0o8xWzHTr1nt5hnKkxw97DGKkTk=; h=Subject:From:Reply-To:To:Cc:In-Reply-To:References:Content-Type: Date:Message-ID:Mime-Version:Content-Transfer-Encoding; b=o7OEZ+81y4lZaUna7GalS83829gpxFbwmweycBYypTbYzM+999C8XrbAxPlLSmf7c GGzyDxUHmDUWJhHuVLJZFonJ7d20eSV1jWFKx0nt9K+BgIez98StwGNkUmFPT6rAqa Jaospno820pBNKese1e4L7TZ6K9w3ovpHiTUBi+8= Subject: Re: [CFT]hwpmc update for sandybridge-e From: Sean Bruno To: hiren panchasara In-Reply-To: References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> <1894C6A5-2479-4D1B-9A68-1DC6818759F0@netasq.com> <1350580026.3029.0.camel@powernoodle.corp.yahoo.com> Content-Type: text/plain; charset="UTF-8" Date: Fri, 19 Oct 2012 08:40:56 -0700 Message-ID: <1350661256.3221.2.camel@powernoodle.corp.yahoo.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Milter-Version: master.31+4-gbc07cd5+ X-CLX-ID: 661257000 Cc: Fabien Thomas , Davide Italiano , freebsd-current , Jim Harris X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Sean Bruno List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 15:41:23 -0000 On Fri, 2012-10-19 at 00:04 -0700, hiren panchasara wrote: > > > On Thu, Oct 18, 2012 at 10:07 AM, Sean Bruno > wrote: > > > > > > > Sure, I will separate it out. > > > > > > If there are no further comments, can I ask Sean to commit > on my > > > behalf? > > > > > > > > > Can you do the man page to include both in the commit? > > Except that point seems good to me. > > > Thanks Fabien! > > > Thanks! > > > > > > Fabien > > > > > > > > Thanks, > > > Hiren > > > > > > > > > I shall await your svn diff. :-) > > Here you go: > http://www.strugglingcoder.info/patches/hwpmc_sbx_4.txt > > New diffs has man page and doesn't have sandybridge typo fix. (will > submit separate patch for that). > > cheers, > Hiren > *ACK* Patching and running compile tests at this time. Sean From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 15:55:43 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C346459C for ; Fri, 19 Oct 2012 15:55:43 +0000 (UTC) (envelope-from jmg@h2.funkthat.com) Received: from h2.funkthat.com (gate2.funkthat.com [208.87.223.18]) by mx1.freebsd.org (Postfix) with ESMTP id 7BDE58FC12 for ; Fri, 19 Oct 2012 15:55:43 +0000 (UTC) Received: from h2.funkthat.com (localhost [127.0.0.1]) by h2.funkthat.com (8.14.3/8.14.3) with ESMTP id q9JFtgwT054351 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 19 Oct 2012 08:55:42 -0700 (PDT) (envelope-from jmg@h2.funkthat.com) Received: (from jmg@localhost) by h2.funkthat.com (8.14.3/8.14.3/Submit) id q9JFtgMF054350 for current@FreeBSD.org; Fri, 19 Oct 2012 08:55:42 -0700 (PDT) (envelope-from jmg) Date: Fri, 19 Oct 2012 08:55:42 -0700 From: John-Mark Gurney To: current@FreeBSD.org Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months Message-ID: <20121019155542.GQ1967@funkthat.com> Mail-Followup-To: current@FreeBSD.org References: <20121019143617.GF69724@acme.spoerlein.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121019143617.GF69724@acme.spoerlein.net> User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 7.2-RELEASE i386 X-PGP-Fingerprint: 54BA 873B 6515 3F10 9E88 9322 9CB1 8F74 6D3F A396 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html X-to-the-FBI-CIA-and-NSA: HI! HOW YA DOIN? can i haz chizburger? X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.2 (h2.funkthat.com [127.0.0.1]); Fri, 19 Oct 2012 08:55:42 -0700 (PDT) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 15:55:44 -0000 Ulrich Sprlein wrote this message on Fri, Oct 19, 2012 at 16:36 +0200: > those roff sources have been very naughty and will be removed from the > tree by the end of the year. Most of those papers are severely out of > date and provide no more use to the system. They can probably also be > found online using a search engine of your choice. > > Should people feel strongly about them, we might be able to move them > over to the doc repository. One paper that should definately be saved is the vi docs. The man page is just a reference, but the paper on vi contains useful information that the man page doesn't cover... One good example is that the man page only has very short descriptions of all the options... The paper has a complete description of what the options do... I guess the real bug is that we've been installing these, but never referencing them, or telling users where they could find them... I.e. in man vi: ``An Introduction to Display Editing with Vi'', found in the ``UNIX User's Manual Supplementary Documents'' section of both the 4.3BSD and 4.4BSD manual sets. This document is the closest thing available to an introduction to the vi screen editor. refers to usd/12.vi/paper.ascii.gz, but no reader of the man page would know that... Same w/ the other docs in the same section.. I'm not sure many users would think to go man hier to see where they are located, or even know that they might be distributed w/ FreeBSD... I think the same thing applies foo memacros and others too... That the man page provides a short reference, and that these provide a more detailed description of what is happening... Are we installing doc by default? If we reference these papers in the man pages, and a user chooses not to install doc when they first install the system, how hard would it be for the user to install the docs? Can they run a simple command to get the docs installed? Maybe having a README in /usr/share/doc explaining that they are now part of the doc repo, and needs to be installed if they aren't part of the baes install.. Some papers I can see go, like psd/06.Clang... Heck, it doesn't even cover C89!?! :) I'm fine w/ cleaning it up, just not wholesale removal... Thanks. -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 16:00:12 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0FF5F8D9; Fri, 19 Oct 2012 16:00:12 +0000 (UTC) (envelope-from utisoft@gmail.com) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id B5DCF8FC18; Fri, 19 Oct 2012 16:00:10 +0000 (UTC) Received: by mail-bk0-f54.google.com with SMTP id jf20so309993bkc.13 for ; Fri, 19 Oct 2012 09:00:09 -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:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=jj8EhBEtCg4lER0h323yTxNHwVL/YXQTgxvolBydNUU=; b=Ns0CnjUO9KDavAtA51yRZEc5gqMpoOnE6GlnnE8s72T0RBXm8LxeNWlmQdkYa08NEh VVbl1rFbjH/fOz7o5ZZFEy/F83eW0KIklg5ipcLNcje5JgESDprvRoNYZJWSNtBrPA09 lajSdHOzpHOlApdNG3KjfPdOS/Wb71AlKIihyfJvCmfgYdoBjacWeCYHZnHJ4GD60Ptn oXX/yxtQCjhKHAFDvRb5up5IotlDSsiZdEzGcJpGFxd0wnmO0xwm+G6Aj9ao7Qedm5Od IaB8OpPPUsKN6b22DqD0TQY8gRegVcYPEF8/WkHV5paFrraNdc/delRgHP2mxi7EmR7w 3cgw== Received: by 10.204.150.213 with SMTP id z21mr628732bkv.45.1350662409844; Fri, 19 Oct 2012 09:00:09 -0700 (PDT) MIME-Version: 1.0 Sender: utisoft@gmail.com Received: by 10.204.50.197 with HTTP; Fri, 19 Oct 2012 08:59:38 -0700 (PDT) In-Reply-To: <50816EE5.8090704@lissyara.su> References: <20121010134421.GI26497@ithaqua.etoilebsd.net> <5081661B.2090209@lissyara.su> <50816D59.1030706@unsane.co.uk> <50816EE5.8090704@lissyara.su> From: Chris Rees Date: Fri, 19 Oct 2012 16:59:38 +0100 X-Google-Sender-Auth: _9djeGIA5BckRDyjrhCotvFW7dw Message-ID: Subject: Re: [HEADSUP] current switched by default to pkgng To: Alex Keda Content-Type: text/plain; charset=ISO-8859-1 Cc: ports@freebsd.org, Baptiste Daroussin , ports-announce@freebsd.org, current@freebsd.org, Vincent Hoffman X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 16:00:12 -0000 On 19 October 2012 16:16, Alex Keda wrote: > On 19.10.2012 19:10, Vincent Hoffman wrote: >> On 19/10/2012 15:39, Alex Keda wrote: >>> On 10.10.2012 17:44, Baptiste Daroussin wrote: >>>> Hi all, >>>> >>>> If you are using the ports tree on a FreeBSD current setup, then you are >>>> concerned by the announce. >>>> >>>> As nvidia-drivers has been fixed and is now properly working with pkgng, the >>>> ports tree as been switch by default to use pkgng on FreeBSD Current based on >>>> version >= 1000017 which was the version when we tested the switch code. >>>> >>>> Make sure to read UPDATING (from ports) to correctly migrate your system or find >>>> instruction to make your system still running with legacy pkg_install tools. >>>> >>>> regards, >>>> Bapt >>>> >>> pkg command does not have key for list options - no autocompletions >>> >>> for example, for service command, I use >>> complete service 'n/*/`service -l`/' >>> in .cshrc >>> >>> what I can use for pkg command? >> >> horrible but working example >> pkg help 2>&1 | sed -e '1,/Commands supported:/d ; /For more information >> on the different commands/,$d; s/^ *// ; s/ .*.*$// ;/^$/d' >> >> There's bound to be better ways, I was just bored enough to knock this up. >> note s/^ *// is a tab, while s/ .*.*$// is 2 spaces >> dont think our sed has any other way to express tab other than an actual >> tab (ctrl-v then tab on the command line) > > it's crazy =) > may be add -l options? For Bourne-style shell: `pkg help 2>&1 | sed -nE 's,^ +(.*),\1,p'` For csh-style shell: `pkg help | & sed -nE 's,^ +(.*),\1,p'` where the bit between ^ and + is a tab character. You can type the tab character on a command prompt by using Ctrl+V then tab, or just type it normally in the script. Hope that helps in the meantime. Chris From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 16:11:32 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 91D5DD0E for ; Fri, 19 Oct 2012 16:11:32 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from mail.zoral.com.ua (mx0.zoral.com.ua [91.193.166.200]) by mx1.freebsd.org (Postfix) with ESMTP id 09F8E8FC16 for ; Fri, 19 Oct 2012 16:11:31 +0000 (UTC) Received: from skuns.kiev.zoral.com.ua (localhost [127.0.0.1]) by mail.zoral.com.ua (8.14.2/8.14.2) with ESMTP id q9JGBagB054308 for ; Fri, 19 Oct 2012 19:11:36 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: from deviant.kiev.zoral.com.ua (kostik@localhost [127.0.0.1]) by deviant.kiev.zoral.com.ua (8.14.5/8.14.5) with ESMTP id q9JGBOQv020260 for ; Fri, 19 Oct 2012 19:11:24 +0300 (EEST) (envelope-from kostikbel@gmail.com) Received: (from kostik@localhost) by deviant.kiev.zoral.com.ua (8.14.5/8.14.5/Submit) id q9JGBOoU020259 for current@FreeBSD.org; Fri, 19 Oct 2012 19:11:24 +0300 (EEST) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: deviant.kiev.zoral.com.ua: kostik set sender to kostikbel@gmail.com using -f Date: Fri, 19 Oct 2012 19:11:24 +0300 From: Konstantin Belousov To: current@FreeBSD.org Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months Message-ID: <20121019161124.GZ35915@deviant.kiev.zoral.com.ua> References: <20121019143617.GF69724@acme.spoerlein.net> <20121019155542.GQ1967@funkthat.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8BV2nTfVFGsA18NK" Content-Disposition: inline In-Reply-To: <20121019155542.GQ1967@funkthat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-Virus-Scanned: clamav-milter 0.95.2 at skuns.kiev.zoral.com.ua X-Virus-Status: Clean X-Spam-Status: No, score=-4.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on skuns.kiev.zoral.com.ua X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 16:11:32 -0000 --8BV2nTfVFGsA18NK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 19, 2012 at 08:55:42AM -0700, John-Mark Gurney wrote: > Ulrich Sprlein wrote this message on Fri, Oct 19, 2012 at 16:36 +0200: > > those roff sources have been very naughty and will be removed from the > > tree by the end of the year. Most of those papers are severely out of > > date and provide no more use to the system. They can probably also be > > found online using a search engine of your choice. > >=20 > > Should people feel strongly about them, we might be able to move them > > over to the doc repository. >=20 > One paper that should definately be saved is the vi docs. The man page > is just a reference, but the paper on vi contains useful information > that the man page doesn't cover... >=20 > One good example is that the man page only has very short descriptions > of all the options... The paper has a complete description of what > the options do... >=20 > I guess the real bug is that we've been installing these, but never > referencing them, or telling users where they could find them... I.e. > in man vi: > ``An Introduction to Display Editing with Vi'', found in the `= `UNIX > User's Manual Supplementary Documents'' section of both the 4.3BSD= and > 4.4BSD manual sets. This document is the closest thing available = to an > introduction to the vi screen editor. >=20 > refers to usd/12.vi/paper.ascii.gz, but no reader of the man page would > know that... Same w/ the other docs in the same section.. I'm not sure > many users would think to go man hier to see where they are located, or > even know that they might be distributed w/ FreeBSD... >=20 > I think the same thing applies foo memacros and others too... That the > man page provides a short reference, and that these provide a more > detailed description of what is happening... >=20 > Are we installing doc by default? If we reference these papers in the > man pages, and a user chooses not to install doc when they first install > the system, how hard would it be for the user to install the docs? Can > they run a simple command to get the docs installed? Maybe having a > README in /usr/share/doc explaining that they are now part of the doc > repo, and needs to be installed if they aren't part of the baes install.. >=20 > Some papers I can see go, like psd/06.Clang... Heck, it doesn't even > cover C89!?! :) >=20 > I'm fine w/ cleaning it up, just not wholesale removal... And e.g. sendmail documentation is fresh and updated together with sendmail imports, AFAIR. fsck/ffs/quotas is more or less relevant even today. --8BV2nTfVFGsA18NK Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (FreeBSD) iEYEARECAAYFAlCBe6wACgkQC3+MBN1Mb4haEwCfReUH2H06+kny+WcRl3rWTMTe r+YAoIFB3O7kWAoYPy8oQEWtmGtM5Rih =zq2b -----END PGP SIGNATURE----- --8BV2nTfVFGsA18NK-- From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 16:15:00 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 64B3FE8B for ; Fri, 19 Oct 2012 16:15:00 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-pb0-f54.google.com (mail-pb0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id 2C7C18FC08 for ; Fri, 19 Oct 2012 16:14:59 +0000 (UTC) Received: by mail-pb0-f54.google.com with SMTP id rp8so584373pbb.13 for ; Fri, 19 Oct 2012 09:14:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=IJhCF+V23sKiLxLOPJKXs6VvILQexd45DKeLyxU+Pmc=; b=DWIgV1uP0qSesvhI7jTAhjUwwAcY1gS3iioIlcaPxO6YzWY2VSzpMjlht0lgMVp8Lu sFGYZkb/2jxrGp2xuJITre0737cqjJmFOvcTJvCoDHLODzU41keBn+R0QrEFzebawWUi hY45+BLEsQuhQnDJUl+7e6ssIWTvtd6Gd/E/M= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding:x-gm-message-state; bh=IJhCF+V23sKiLxLOPJKXs6VvILQexd45DKeLyxU+Pmc=; b=WgCqWR4O1LIsAX9XlE9/+C/DDmTFW8bXBgs785OwNAjlp4Ds/yBN3+jHIaIp+shfYc J7AEL0i5884pAk+v9rt0YN6eu+uThPXM5MoVy7QgDlX19JAmMaX9rRoQfbZd2w6P80Xo 8ieM3ZZkAV5BT7tg0iSygagd1IKdc3OSBSah45+MSgdyKn4cP1fW++Uqj65GNc52UgF0 VrOrDMBERadA/Izxc6TUZ+VlH0PE7LqYzEqBRmQI6fNgznqgvNBhI64oRGlw3kE0sXsH tubg1RNuU/MVpNUzjzzM2ddyL/1sbW1X8CDmNK3U9vqcQK2qamXynMDQX+053nR6DpoI 2Aaw== Received: by 10.68.129.72 with SMTP id nu8mr7259141pbb.29.1350663299281; Fri, 19 Oct 2012 09:14:59 -0700 (PDT) MIME-Version: 1.0 Received: by 10.66.161.163 with HTTP; Fri, 19 Oct 2012 09:14:28 -0700 (PDT) In-Reply-To: <20121019143617.GF69724@acme.spoerlein.net> References: <20121019143617.GF69724@acme.spoerlein.net> From: Eitan Adler Date: Fri, 19 Oct 2012 12:14:28 -0400 Message-ID: Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months To: current@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQk08YkPaijX1vEOEtaw6ZqUcRMCOzgHK6O5UOhVuBk36UiFezqK+LB+CFbzht+CxasRGBOz X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 16:15:00 -0000 On 19 October 2012 10:36, Ulrich Sp=C3=B6rlein wrote: > Should people feel strongly about them, we might be able to move them > over to the doc repository. Moving them to the doc repo loses the history, for what gain? You mention that the roff sources are 'naughty'. Are they holding up some project? --=20 Eitan Adler From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 16:21:07 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 44FE3128; Fri, 19 Oct 2012 16:21:07 +0000 (UTC) (envelope-from admin@lissyara.su) Received: from mx.lissyara.su (mx.lissyara.su [91.227.18.11]) by mx1.freebsd.org (Postfix) with ESMTP id 674468FC16; Fri, 19 Oct 2012 16:21:06 +0000 (UTC) Received: from [77.41.108.0] (port=20890 helo=dc7700p.lissyara.su) by mx.lissyara.su with esmtpa (Exim 4.80 (FreeBSD)) (envelope-from ) id 1TPFJn-0008s5-VK; Fri, 19 Oct 2012 20:21:03 +0400 Message-ID: <50817DEF.4070509@lissyara.su> Date: Fri, 19 Oct 2012 20:21:03 +0400 From: Alex Keda User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121019 Thunderbird/16.0.1 MIME-Version: 1.0 To: Chris Rees Subject: Re: [HEADSUP] current switched by default to pkgng References: <20121010134421.GI26497@ithaqua.etoilebsd.net> <5081661B.2090209@lissyara.su> <50816D59.1030706@unsane.co.uk> <50816EE5.8090704@lissyara.su> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Description: if spam count > 60 - this is spam X-Spam-Count: 0 X-Descriptions: powered by www.lissyara.su X-Bounce-ID: mx.lissyara.su Cc: ports@freebsd.org, Baptiste Daroussin , current@freebsd.org, Vincent Hoffman X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 16:21:07 -0000 On 19.10.2012 19:59, Chris Rees wrote: > On 19 October 2012 16:16, Alex Keda wrote: >> On 19.10.2012 19:10, Vincent Hoffman wrote: >>> On 19/10/2012 15:39, Alex Keda wrote: >>>> pkg command does not have key for list options - no autocompletions >>>> >>>> for example, for service command, I use >>>> complete service 'n/*/`service -l`/' >>>> in .cshrc >>>> >>>> what I can use for pkg command? >>> >>> horrible but working example >>> pkg help 2>&1 | sed -e '1,/Commands supported:/d ; /For more information >>> on the different commands/,$d; s/^ *// ; s/ .*.*$// ;/^$/d' >>> >>> There's bound to be better ways, I was just bored enough to knock this up. >>> note s/^ *// is a tab, while s/ .*.*$// is 2 spaces >>> dont think our sed has any other way to express tab other than an actual >>> tab (ctrl-v then tab on the command line) >> >> it's crazy =) >> may be add -l options? > > For Bourne-style shell: > `pkg help 2>&1 | sed -nE 's,^ +(.*),\1,p'` > > For csh-style shell: > `pkg help | & sed -nE 's,^ +(.*),\1,p'` > > where the bit between ^ and + is a tab character. You can type the > tab character on a command prompt by using Ctrl+V then tab, or just > type it normally in the script. > > Hope that helps in the meantime. > > Chris > dc7700p# pkg -c Displays Performs a and check debug from inside local package packages remote search system updating -d Displays Performs a and ......... skipped ........ Displays Opens a against catalogues debug from inside link package packages register search system update dc7700p# dc7700p# grep pkg /root/.cshrc complete pkg 'n/*/`pkg help |& sed -nE "s,^ +(.*),\1,p"`/' some not work... I try my own string: complete pkg 'n/*/`pkg help |& grep "Commands supported:" --after-context=100 | grep "^\s" | awk "{print $1}"`/' output identical. maybe pipe not work in this place? From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 16:24:35 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB79D2F1 for ; Fri, 19 Oct 2012 16:24:35 +0000 (UTC) (envelope-from gshapiro@freebsd.org) Received: from zim.gshapiro.net (zim.gshapiro.net [IPv6:2001:4f8:3:36::224]) by mx1.freebsd.org (Postfix) with ESMTP id 9F9718FC08 for ; Fri, 19 Oct 2012 16:24:35 +0000 (UTC) Received: from rugsucker.smi.sendmail.com (natted.sendmail.com [63.211.143.38]) (authenticated bits=128) by zim.gshapiro.net (8.14.6.Alpha1/8.14.5) with ESMTP id q9JGOXYF033534 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 19 Oct 2012 09:24:35 -0700 (PDT) (envelope-from gshapiro@freebsd.org) Date: Fri, 19 Oct 2012 09:24:33 -0700 From: Gregory Shapiro To: current@FreeBSD.org Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months Message-ID: <20121019162433.GY601@rugsucker.smi.sendmail.com> References: <20121019143617.GF69724@acme.spoerlein.net> <20121019155542.GQ1967@funkthat.com> <20121019161124.GZ35915@deviant.kiev.zoral.com.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121019161124.GZ35915@deviant.kiev.zoral.com.ua> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 16:24:35 -0000 > > Ulrich Sprlein wrote this message on Fri, Oct 19, 2012 at 16:36 +0200: > > > those roff sources have been very naughty and will be removed from the > > > tree by the end of the year. Most of those papers are severely out of > > > date and provide no more use to the system. They can probably also be > > > found online using a search engine of your choice. As pointed out: On Fri, Oct 19, 2012 at 07:11:24PM +0300, Konstantin Belousov wrote: > And e.g. sendmail documentation is fresh and updated together with > sendmail imports, AFAIR. Konstantin is correct -- every sendmail import refreshes what is built by share/doc/smm/08.sendmailop/Makefile. That document (operations guide) should not be removed. > > > Should people feel strongly about them, we might be able to move them > > > over to the doc repository. That would cause a problem for contrib/ style imports like sendmail. In the base source tree, share/doc/smm/08.sendmailop/Makefile (for example) reads the documentation files from contrib/sendmail/doc/. Moving share/doc/smm/08.sendmailop/Makefile to a different repo would be an issue since the document source files are in the src repo. I don't think contrib packages should be imported into two trees. How are the roff sources "naughty"? If there are ancient/problematic ones, remove them, not everything. Worst case, I'll find another place to put the sendmailop Makefile and install the output under /usr/share/sendmail/. From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 16:26:39 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5376A42D for ; Fri, 19 Oct 2012 16:26:39 +0000 (UTC) (envelope-from joel@FreeBSD.org) Received: from mail.vnode.se (mail.vnode.se [62.119.52.80]) by mx1.freebsd.org (Postfix) with ESMTP id ED2518FC08 for ; Fri, 19 Oct 2012 16:26:38 +0000 (UTC) Received: from mail.vnode.se (localhost [127.0.0.1]) by mail.vnode.se (Postfix) with ESMTP id B6ED0E3F07B for ; Fri, 19 Oct 2012 18:26:36 +0200 (CEST) X-Virus-Scanned: amavisd-new at vnode.se Received: from mail.vnode.se ([127.0.0.1]) by mail.vnode.se (mail.vnode.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id YwAWgONTWn8Q for ; Fri, 19 Oct 2012 18:26:34 +0200 (CEST) Received: from jd.benders.se (jd.benders.se [212.247.52.12]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.vnode.se (Postfix) with ESMTPSA id 828E9E3F07A for ; Fri, 19 Oct 2012 18:26:34 +0200 (CEST) Date: Fri, 19 Oct 2012 18:26:32 +0200 From: Joel Dahl To: current@FreeBSD.org Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months Message-ID: <20121019162632.GI24215@jd.benders.se> References: <20121019143617.GF69724@acme.spoerlein.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20121019143617.GF69724@acme.spoerlein.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 16:26:39 -0000 On 19-10-2012 16:36, Ulrich Spörlein wrote: > Hi all, > > those roff sources have been very naughty and will be removed from the > tree by the end of the year. Most of those papers are severely out of > date and provide no more use to the system. They can probably also be > found online using a search engine of your choice. I definitely support this. -- Joel From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 16:32:33 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DBF405A4 for ; Fri, 19 Oct 2012 16:32:32 +0000 (UTC) (envelope-from admin@lissyara.su) Received: from mx.lissyara.su (mx.lissyara.su [91.227.18.11]) by mx1.freebsd.org (Postfix) with ESMTP id 7E9DD8FC08 for ; Fri, 19 Oct 2012 16:32:32 +0000 (UTC) Received: from [77.41.108.0] (port=61112 helo=dc7700p.lissyara.su) by mx.lissyara.su with esmtpa (Exim 4.80 (FreeBSD)) (envelope-from ) id 1TPFUt-000EEF-9g for freebsd-current@freebsd.org; Fri, 19 Oct 2012 20:32:31 +0400 Message-ID: <5081809F.8010003@lissyara.su> Date: Fri, 19 Oct 2012 20:32:31 +0400 From: Alex Keda User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121019 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: Re: [HEADSUP] current switched by default to pkgng References: <20121010134421.GI26497@ithaqua.etoilebsd.net> <5081661B.2090209@lissyara.su> <50816D59.1030706@unsane.co.uk> <50816EE5.8090704@lissyara.su> <50817DEF.4070509@lissyara.su> In-Reply-To: <50817DEF.4070509@lissyara.su> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Description: if spam count > 60 - this is spam X-Spam-Count: 0 X-Descriptions: powered by www.lissyara.su X-Bounce-ID: mx.lissyara.su X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 16:32:33 -0000 On 19.10.2012 20:21, Alex Keda wrote: > On 19.10.2012 19:59, Chris Rees wrote: >> On 19 October 2012 16:16, Alex Keda wrote: >>> On 19.10.2012 19:10, Vincent Hoffman wrote: >>>> On 19/10/2012 15:39, Alex Keda wrote: >>>>> pkg command does not have key for list options - no autocompletions >>>>> >>>>> for example, for service command, I use >>>>> complete service 'n/*/`service -l`/' >>>>> in .cshrc >>>>> >>>>> what I can use for pkg command? >>>> >>>> horrible but working example >>>> pkg help 2>&1 | sed -e '1,/Commands supported:/d ; /For more information >>>> on the different commands/,$d; s/^ *// ; s/ .*.*$// ;/^$/d' >>>> >>>> There's bound to be better ways, I was just bored enough to knock this up. >>>> note s/^ *// is a tab, while s/ .*.*$// is 2 spaces >>>> dont think our sed has any other way to express tab other than an actual >>>> tab (ctrl-v then tab on the command line) >>> >>> it's crazy =) >>> may be add -l options? >> >> For Bourne-style shell: >> `pkg help 2>&1 | sed -nE 's,^ +(.*),\1,p'` >> >> For csh-style shell: >> `pkg help | & sed -nE 's,^ +(.*),\1,p'` >> >> where the bit between ^ and + is a tab character. You can type the >> tab character on a command prompt by using Ctrl+V then tab, or just >> type it normally in the script. >> >> Hope that helps in the meantime. >> >> Chris >> > dc7700p# pkg > -c Displays Performs a and > check debug from inside local > package packages remote search system > updating > -d Displays Performs a and > ......... skipped ........ > Displays Opens a against catalogues > debug from inside link package > packages register search system update > dc7700p# > dc7700p# grep pkg /root/.cshrc > complete pkg 'n/*/`pkg help |& sed -nE "s,^ +(.*),\1,p"`/' > > some not work... I try my own string: > complete pkg 'n/*/`pkg help |& grep "Commands supported:" > --after-context=100 | grep "^\s" | awk "{print $1}"`/' > > output identical. maybe pipe not work in this place? > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > it's a good crutch =) dc7700p# pkg add autoremove check create fetch info query remove rquery set shlib update upgrade which audit backup clean delete help install register repo search shell stats updating version dc7700p# pkg dc7700p# grep pkg /root/.cshrc complete pkg 'n/*/`pkg help |& grep "Commands supported:" --after-context=100 | grep "^\s" | cut -d " " -f 1`/' dc7700p# From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 17:04:06 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 002D22CD for ; Fri, 19 Oct 2012 17:04:05 +0000 (UTC) (envelope-from seanbru@yahoo-inc.com) Received: from mrout1-b.corp.bf1.yahoo.com (mrout1-b.corp.bf1.yahoo.com [98.139.253.104]) by mx1.freebsd.org (Postfix) with ESMTP id AB4118FC08 for ; Fri, 19 Oct 2012 17:04:05 +0000 (UTC) Received: from [IPv6:::1] (rideseveral.corp.yahoo.com [10.73.160.231]) by mrout1-b.corp.bf1.yahoo.com (8.14.4/8.14.4/y.out) with ESMTP id q9JH3VjO009481; Fri, 19 Oct 2012 10:03:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=yahoo-inc.com; s=cobra; t=1350666213; bh=/5AvpJ6GtMb+eF1s140pZf6XV9ahToq167bzRi3bYz8=; h=Subject:From:Reply-To:To:Cc:In-Reply-To:References:Content-Type: Date:Message-ID:Mime-Version:Content-Transfer-Encoding; b=iekMk4BqNkJ5CNx8cHrME+r623WB3KC9A3hwZLKoByddbe1qtdCGSbQ4U5TrLmfct CNs5AVQpXHgWLQTQJSo4maxSfACdUC1TQ6Bs9VyLW38syCiljQ6v+Q5W/OycXqXMmO d2s27qYJIqxQY+w+L0swkEmaoMEByliXqk++3r4Y= Subject: Re: [CFT]hwpmc update for sandybridge-e From: Sean Bruno To: hiren panchasara In-Reply-To: References: <1349390777.5234.9.camel@powernoodle.corp.yahoo.com> <1894C6A5-2479-4D1B-9A68-1DC6818759F0@netasq.com> <1350580026.3029.0.camel@powernoodle.corp.yahoo.com> Content-Type: text/plain; charset="UTF-8" Date: Fri, 19 Oct 2012 10:03:31 -0700 Message-ID: <1350666211.3221.9.camel@powernoodle.corp.yahoo.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Milter-Version: master.31+4-gbc07cd5+ X-CLX-ID: 666211003 Cc: Fabien Thomas , Davide Italiano , freebsd-current , Jim Harris X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Sean Bruno List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 17:04:06 -0000 On Fri, 2012-10-19 at 00:04 -0700, hiren panchasara wrote: > > > On Thu, Oct 18, 2012 at 10:07 AM, Sean Bruno > wrote: > > > > > > > Sure, I will separate it out. > > > > > > If there are no further comments, can I ask Sean to commit > on my > > > behalf? > > > > > > > > > Can you do the man page to include both in the commit? > > Except that point seems good to me. > > > Thanks Fabien! > > > Thanks! > > > > > > Fabien > > > > > > > > Thanks, > > > Hiren > > > > > > > > > I shall await your svn diff. :-) > > Here you go: > http://www.strugglingcoder.info/patches/hwpmc_sbx_4.txt > > New diffs has man page and doesn't have sandybridge typo fix. (will > submit separate patch for that). > > cheers, > Hiren > Sending lib/libpmc/Makefile Sending lib/libpmc/libpmc.c Adding lib/libpmc/pmc.sandybridgexeon.3 Sending sys/dev/hwpmc/hwpmc_core.c Sending sys/dev/hwpmc/hwpmc_intel.c Sending sys/dev/hwpmc/pmc_events.h Sending sys/sys/pmc.h Transmitting file data ....... Committed revision 241738. Sean p.s. also, svn propset foo eluded me for like 10 minutes today as I don't do that very often. remember kids: svn propset svn:keywords 'FreeBSD=%H' From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 17:19:35 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F18148C9; Fri, 19 Oct 2012 17:19:35 +0000 (UTC) (envelope-from yerenkow@gmail.com) Received: from mail-vb0-f54.google.com (mail-vb0-f54.google.com [209.85.212.54]) by mx1.freebsd.org (Postfix) with ESMTP id 7FF888FC16; Fri, 19 Oct 2012 17:19:35 +0000 (UTC) Received: by mail-vb0-f54.google.com with SMTP id v11so971873vbm.13 for ; Fri, 19 Oct 2012 10:19:34 -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=BkRMfQL0Q9/75QQIywRAdmTJgk9wazF7qj2A5dOzZYA=; b=wuCLKvclcURdLRxfILqmSIHcHKyq2hLrVTFv2gnxvV879OVvQku6aTKi+myhDcQmeS BBHQ/bfPbprRVXVwgdY27qaeg0pxD9gfGQbWOzonrJPW6V2JRqyObK4BKBI0qlEAZCAY sxGSocWDHKWq+LWagYqFJx0lULFNuzRa+ELnrmEAXmxgv/P909BxXfWUav/SSPqwCiWj 0cgjKLH4TxVyr9dmNfpZqAaiGpcK2tgzp0UhjBJoobpfeYlRb80vUzHxy+N8t6kORwVA r0Imib2FlRaay+kyoZiL/QbxBUw3ae2mB4xzwt5IDBck7iDskS+YuUoCtVfbF5bYpOPl czQg== MIME-Version: 1.0 Received: by 10.52.139.136 with SMTP id qy8mr2036092vdb.39.1350667173805; Fri, 19 Oct 2012 10:19:33 -0700 (PDT) Received: by 10.220.195.13 with HTTP; Fri, 19 Oct 2012 10:19:33 -0700 (PDT) Received: by 10.220.195.13 with HTTP; Fri, 19 Oct 2012 10:19:33 -0700 (PDT) In-Reply-To: <50802138.8020604@FreeBSD.org> References: <507FB6C7.50402@FreeBSD.org> <507FEC7F.4030306@FreeBSD.org> <50801E32.80309@FreeBSD.org> <50802138.8020604@FreeBSD.org> Date: Fri, 19 Oct 2012 20:19:33 +0300 Message-ID: Subject: Re: A little question about safe mode From: Alexander Yerenkow To: Andriy Gapon Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 17:19:36 -0000 That's not what I want; If you press question mark at root prompt - to view choices, all devices are seen without /dev/, which leads further to single user mode fall-in. You can see screens with this situation. I think patch should be limited to ufs, then all should be ok - we could specify disk with, or without leading "/dev/" and all will "just work". At least this is how I see solution for this bug. Or, if this way is somehow bad - just extend help, so there will be less bruises at this point. Thanks. Regards, Alexander Yerenkow From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 18:12:41 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 560D764B for ; Fri, 19 Oct 2012 18:12:41 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id 2B9608FC1A for ; Fri, 19 Oct 2012 18:12:41 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 84297B99A for ; Fri, 19 Oct 2012 14:12:40 -0400 (EDT) From: John Baldwin To: current@freebsd.org Subject: CSRG history now available as an SVN repository Date: Fri, 19 Oct 2012 14:12:37 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p20; KDE/4.5.5; amd64; ; ) MIME-Version: 1.0 Message-Id: <201210191412.37661.jhb@freebsd.org> Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Fri, 19 Oct 2012 14:12:40 -0400 (EDT) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 18:12:41 -0000 I recently converted CSRG's SCCS repository holding the original BSD history to a Subversion repository. As a derivative work of CSRG's code base, this repository is available under the terms of the original UC Berkeley license. You can browse the history at http://svnweb.freebsd.org/csrg/ The repository is also available via FTP or HTTP: - ftp://ftp.freebsd.org/pub/FreeBSD/development/CSRG/csrg_svn.tbz - http://freebsd.isc.org/pub/FreeBSD/development/CSRG/csrg_svn.tbz Thanks to Simon Neilsen for putting the repository up on FreeBSD.org and to Kirk McKusick for preserving this history. -- John Baldwin From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 20:35:05 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 43058295; Fri, 19 Oct 2012 20:35:05 +0000 (UTC) (envelope-from akm@theinternet.com.au) Received: from mail16.syd.optusnet.com.au (mail16.syd.optusnet.com.au [211.29.132.197]) by mx1.freebsd.org (Postfix) with ESMTP id A10008FC12; Fri, 19 Oct 2012 20:35:04 +0000 (UTC) Received: from camelot.theinternet.com.au (d114-78-104-237.bla803.nsw.optusnet.com.au [114.78.104.237]) by mail16.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id q9JKYtOp025989; Sat, 20 Oct 2012 07:34:56 +1100 Received: by camelot.theinternet.com.au (Postfix, from userid 1000) id C44667C4E14; Sat, 20 Oct 2012 07:34:55 +1100 (EST) Date: Sat, 20 Oct 2012 07:34:55 +1100 From: Andrew Milton To: John Baldwin Subject: Re: CSRG history now available as an SVN repository Message-ID: <20121019203455.GE25337@camelot.theinternet.com.au> References: <201210191412.37661.jhb@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201210191412.37661.jhb@freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Optus-Cloudmark-Score: 0 X-Optus-Cloudmark-Analysis: v=2.0 cv=fLlhRume c=1 sm=1 a=wom5GMh1gUkA:10 a=rZzXF3KXt88A:10 a=kj9zAlcOel0A:10 a=-wlo3Z5OAAAA:8 a=JwZ5FtT5JqQA:10 a=6I5d2MoRAAAA:8 a=SCo1hh1FAAAA:8 a=vKhcjtST2QhYjy5FsfwA:9 a=CjuIK1q_8ugA:10 a=fgf5PR_cwQYA:10 a=hHLiCgwgsHwuL7JliaHbPA==:117 Cc: current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 20:35:05 -0000 +-------[ John Baldwin ]---------------------- | I recently converted CSRG's SCCS repository holding the original BSD history | to a Subversion repository. As a derivative work of CSRG's code base, this | repository is available under the terms of the original UC Berkeley license. | | You can browse the history at http://svnweb.freebsd.org/csrg/ | | The repository is also available via FTP or HTTP: | | - ftp://ftp.freebsd.org/pub/FreeBSD/development/CSRG/csrg_svn.tbz | - http://freebsd.isc.org/pub/FreeBSD/development/CSRG/csrg_svn.tbz | | Thanks to Simon Neilsen for putting the repository up on FreeBSD.org and to | Kirk McKusick for preserving this history. This is fantastic... although I think I just lost my weekend. -- Andrew Milton akm@theinternet.com.au From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 20:53:28 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A4CD677; Fri, 19 Oct 2012 20:53:28 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-ie0-f182.google.com (mail-ie0-f182.google.com [209.85.223.182]) by mx1.freebsd.org (Postfix) with ESMTP id B42C58FC08; Fri, 19 Oct 2012 20:53:27 +0000 (UTC) Received: by mail-ie0-f182.google.com with SMTP id k10so1724233iea.13 for ; Fri, 19 Oct 2012 13:53: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; bh=I3SgHEZ5lV2w4Gkh8+rOczPeYdbyf1PjvEZqjmW9BI8=; b=qackDOdiL9FYQVeYc5F77tLMSPF8NN0ZeLB7iZOwtUOkc+j+yfCkEFNQr5FP044Ngq 9o50hbGN6V1sin6ZLURqKlAB3Kkr7Dod9hj5JmQiotJY86f29v6d64RfnPW/4IE5ygMW GOfTQgh8UCgtBx3gJpLIFQF5Me90lKFLmpzaDY0f2teF75VVHL25dFcI2KQMf8IAwau5 EU+TpK41iYj/AWaa/myeLXYoObPenUz7QZnJWylvknR58z29jz4Swc+sOo/6wQHyT5Pb PmLaNJdZKBrhbYqQM3QrhK5WgqCCUKi/DtrXJvM0tGrrjoSAZnkk6bs5HHrG1GkncqdA 1bXA== MIME-Version: 1.0 Received: by 10.50.193.131 with SMTP id ho3mr9938800igc.51.1350680007019; Fri, 19 Oct 2012 13:53:27 -0700 (PDT) Received: by 10.64.47.228 with HTTP; Fri, 19 Oct 2012 13:53:26 -0700 (PDT) In-Reply-To: <20121019203455.GE25337@camelot.theinternet.com.au> References: <201210191412.37661.jhb@freebsd.org> <20121019203455.GE25337@camelot.theinternet.com.au> Date: Sat, 20 Oct 2012 00:53:26 +0400 Message-ID: Subject: Re: CSRG history now available as an SVN repository From: Sergey Kandaurov To: John Baldwin Content-Type: text/plain; charset=ISO-8859-1 Cc: current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 20:53:28 -0000 On 20 October 2012 00:34, Andrew Milton wrote: > +-------[ John Baldwin ]---------------------- > | I recently converted CSRG's SCCS repository holding the original BSD history > | to a Subversion repository. As a derivative work of CSRG's code base, this > | repository is available under the terms of the original UC Berkeley license. > | > | You can browse the history at http://svnweb.freebsd.org/csrg/ > | > | The repository is also available via FTP or HTTP: > | > | - ftp://ftp.freebsd.org/pub/FreeBSD/development/CSRG/csrg_svn.tbz > | - http://freebsd.isc.org/pub/FreeBSD/development/CSRG/csrg_svn.tbz > | > | Thanks to Simon Neilsen for putting the repository up on FreeBSD.org and to > | Kirk McKusick for preserving this history. > > This is fantastic... although I think I just lost my weekend. Yeah.. Digging deep into the archaeological survey is so catchy. Many thanks to all of you who made this happen. Brilliant work. -- wbr, pluknet From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 21:16:15 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0EB0F9D7; Fri, 19 Oct 2012 21:16:15 +0000 (UTC) (envelope-from phk@phk.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id D6AB98FC12; Fri, 19 Oct 2012 21:16:13 +0000 (UTC) Received: from critter.freebsd.dk (critter-phk.freebsd.dk [192.168.48.2]) by phk.freebsd.dk (Postfix) with ESMTP id 1E56B3B762; Fri, 19 Oct 2012 21:16:05 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.5/8.14.5) with ESMTP id q9JLG4SS087856; Fri, 19 Oct 2012 21:16:05 GMT (envelope-from phk@phk.freebsd.dk) To: John Baldwin Subject: Re: CSRG history now available as an SVN repository In-reply-to: <201210191412.37661.jhb@freebsd.org> From: "Poul-Henning Kamp" References: <201210191412.37661.jhb@freebsd.org> Date: Fri, 19 Oct 2012 21:16:04 +0000 Message-ID: <87855.1350681364@critter.freebsd.dk> Cc: current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 21:16:15 -0000 -------- In message <201210191412.37661.jhb@freebsd.org>, John Baldwin writes: >I recently converted CSRG's SCCS repository holding the original BSD history >to a Subversion repository. As a derivative work of CSRG's code base, this >repository is available under the terms of the original UC Berkeley license. What about FreeBSD 1.x ? -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 21:17:20 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD37FAFD for ; Fri, 19 Oct 2012 21:17:20 +0000 (UTC) (envelope-from freebsd-current@m.gmane.org) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) by mx1.freebsd.org (Postfix) with ESMTP id 72AF88FC08 for ; Fri, 19 Oct 2012 21:17:19 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TPJwa-0002ev-DI for freebsd-current@freebsd.org; Fri, 19 Oct 2012 23:17:24 +0200 Received: from l.saper.info ([91.121.203.103]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 19 Oct 2012 23:17:24 +0200 Received: from saper by l.saper.info with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 19 Oct 2012 23:17:24 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-current@freebsd.org From: Marcin Cieslak Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months Date: Fri, 19 Oct 2012 21:17:03 +0000 (UTC) Organization: http://saper.info Lines: 31 Message-ID: References: <20121019143617.GF69724@acme.spoerlein.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: l.saper.info User-Agent: slrn/0.9.9p1 (FreeBSD) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 21:17:20 -0000 >> Ulrich Spörlein wrote: > Hi all, > > those roff sources have been very naughty and will be removed from the > tree by the end of the year. Most of those papers are severely out of > date and provide no more use to the system. They can probably also be > found online using a search engine of your choice. > > Should people feel strongly about them, we might be able to move them > over to the doc repository. I am using them quite often and I am very fond of having them locally (useful when working disconnected). I am very often reading the sendmail guide - it's good, up-to-date and explains many dark corners. Recently I found the XDR/RPC docs very useful, as I was porting some software using it and I didn't have too much knowledge about the subject. I used the ffs paper at least twice when fixing a very badly corrupted filesystem (had to use clri and similar commands to bring it back into shape). At those times, you don't want to google around. It is ok to remove stuff that is horribly obsolete and there is no chance to get it updated; but then it should be reviewed. //Marcin From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 21:31:43 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1C5FCCE6 for ; Fri, 19 Oct 2012 21:31:43 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (bigknife-pt.tunnel.tserv9.chi1.ipv6.he.net [IPv6:2001:470:1f10:75::2]) by mx1.freebsd.org (Postfix) with ESMTP id E08488FC08 for ; Fri, 19 Oct 2012 21:31:42 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 508DBB91A; Fri, 19 Oct 2012 17:31:42 -0400 (EDT) From: John Baldwin To: "Poul-Henning Kamp" Subject: Re: CSRG history now available as an SVN repository Date: Fri, 19 Oct 2012 17:23:31 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.2-CBSD-20110714-p20; KDE/4.5.5; amd64; ; ) References: <201210191412.37661.jhb@freebsd.org> <87855.1350681364@critter.freebsd.dk> In-Reply-To: <87855.1350681364@critter.freebsd.dk> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201210191723.31156.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Fri, 19 Oct 2012 17:31:42 -0400 (EDT) Cc: current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 21:31:43 -0000 On Friday, October 19, 2012 5:16:04 pm Poul-Henning Kamp wrote: > -------- > In message <201210191412.37661.jhb@freebsd.org>, John Baldwin writes: > > >I recently converted CSRG's SCCS repository holding the original BSD history > >to a Subversion repository. As a derivative work of CSRG's code base, this > >repository is available under the terms of the original UC Berkeley license. > > What about FreeBSD 1.x ? I don't have any copies of that history, do you? -- John Baldwin From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 21:40:35 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0978FF72; Fri, 19 Oct 2012 21:40:35 +0000 (UTC) (envelope-from phk@phk.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id 851FC8FC0A; Fri, 19 Oct 2012 21:40:33 +0000 (UTC) Received: from critter.freebsd.dk (critter-phk.freebsd.dk [192.168.48.2]) by phk.freebsd.dk (Postfix) with ESMTP id 6D3573B663; Fri, 19 Oct 2012 21:40:32 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.5/8.14.5) with ESMTP id q9JLeWJi088043; Fri, 19 Oct 2012 21:40:32 GMT (envelope-from phk@phk.freebsd.dk) To: John Baldwin Subject: Re: CSRG history now available as an SVN repository In-reply-to: <201210191723.31156.jhb@freebsd.org> From: "Poul-Henning Kamp" References: <201210191412.37661.jhb@freebsd.org> <87855.1350681364@critter.freebsd.dk> <201210191723.31156.jhb@freebsd.org> Date: Fri, 19 Oct 2012 21:40:32 +0000 Message-ID: <88042.1350682832@critter.freebsd.dk> Cc: current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 21:40:35 -0000 -------- In message <201210191723.31156.jhb@freebsd.org>, John Baldwin writes: >> What about FreeBSD 1.x ? > >I don't have any copies of that history, do you? http://phk.freebsd.dk/FreeBSD -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-freebsd-current@FreeBSD.ORG Fri Oct 19 22:42:16 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6262EEAD for ; Fri, 19 Oct 2012 22:42:16 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from tower.berklix.org (tower.berklix.org [83.236.223.114]) by mx1.freebsd.org (Postfix) with ESMTP id CB1118FC12 for ; Fri, 19 Oct 2012 22:42:15 +0000 (UTC) Received: from mart.js.berklix.net (p57BCF57F.dip.t-dialin.net [87.188.245.127]) (authenticated bits=0) by tower.berklix.org (8.14.2/8.14.2) with ESMTP id q9JMg5fn087981; Fri, 19 Oct 2012 22:42:07 GMT (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id q9JMfriw082501; Sat, 20 Oct 2012 00:41:54 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.4/8.14.4) with ESMTP id q9JMffPI060071; Sat, 20 Oct 2012 00:41:47 +0200 (CEST) (envelope-from jhs@fire.js.berklix.net) Message-Id: <201210192241.q9JMffPI060071@fire.js.berklix.net> To: John-Mark Gurney Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months From: "Julian H. Stacey" Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Fri, 19 Oct 2012 08:55:42 PDT." <20121019155542.GQ1967@funkthat.com> Date: Sat, 20 Oct 2012 00:41:41 +0200 Sender: jhs@berklix.com Cc: current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Oct 2012 22:42:16 -0000 > I guess the real bug is that we've been installing these, but never > referencing them, or telling users where they could find them... I.e. > in man vi: > ``An Introduction to Display Editing with Vi'', found in the ``UNIX > User's Manual Supplementary Documents'' section of both the 4.3BSD and > 4.4BSD manual sets. This document is the closest thing available to an > introduction to the vi screen editor. > > refers to usd/12.vi/paper.ascii.gz, but no reader of the man page would > know that... Same w/ the other docs in the same section.. I'm not sure > many users would think to go man hier to see where they are located, or > even know that they might be distributed w/ FreeBSD... > > I think the same thing applies foo memacros and others too... That the > man page provides a short reference, and that these provide a more > detailed description of what is happening... Yes, I'd also prefer to Not see a load of deletes, some of those things are expected in Unix, (aka UCB ring binder manuals on my shelf). Better to give more useful references in man/ to point to exact full paths in /usr/share. It'd make FreeBSD easier for some, & more readers could bring more fixes to keep them up to date. Cheers, Julian -- Julian Stacey, BSD Unix Linux C Sys Eng Consultant, Munich http://berklix.com Reply below not above, like a play script. Indent old text with "> ". Send plain text. Not: HTML, multipart/alternative, base64, quoted-printable. From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 00:32:03 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23DEFBD4 for ; Sat, 20 Oct 2012 00:32:03 +0000 (UTC) (envelope-from gnn@neville-neil.com) Received: from vps.hungerhost.com (vps.hungerhost.com [216.38.53.176]) by mx1.freebsd.org (Postfix) with ESMTP id DDA188FC0A for ; Sat, 20 Oct 2012 00:32:02 +0000 (UTC) Received: from 50-201-81-66-static.hfc.comcastbusiness.net ([50.201.81.66]:46553 helo=[10.0.226.32]) by vps.hungerhost.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1TPMyq-0001wo-HC; Fri, 19 Oct 2012 20:31:56 -0400 Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Subject: Re: boot2/loader: serial port handling From: George Neville-Neil In-Reply-To: <20121018214832.GB8009@ambrisko.com> Date: Fri, 19 Oct 2012 17:31:54 -0700 Content-Transfer-Encoding: quoted-printable Message-Id: References: <5078A803.7070705@delphij.net> <5078B145.4090501@delphij.net> <20121018214832.GB8009@ambrisko.com> To: Doug Ambrisko X-Mailer: Apple Mail (2.1499) X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - vps.hungerhost.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - neville-neil.com Cc: Garrett Cooper , freebsd-current@freebsd.org, d@delphij.net X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 00:32:03 -0000 On Oct 18, 2012, at 14:48 , Doug Ambrisko wrote: > On Fri, Oct 12, 2012 at 05:13:47PM -0700, Garrett Cooper wrote: > | On Fri, Oct 12, 2012 at 5:09 PM, Xin Li wrote: > | > -----BEGIN PGP SIGNED MESSAGE----- > | > Hash: SHA256 > |=20 > | ... > |=20 > | > Ah I wish I am not this far behind my email backlog. Yes I think > | > these (241300 and 241301) will solve the problem. > |=20 > | Yeah -- forgot about the other one. There's another enhancement > | that would make this even better (apart from maybe having multiple > | primary consoles): setting the primary console if present and having > | fallbacks in the event that the original primary wasn't set or > | configurable; it was a thing that was present in another project I > | worked on with sio that was pretty slick (and I think that there = would > | be some parties who wouldn't mind if the same was done with = uart(4)). >=20 > This concept was objected to when I checked it into sio(4) so I had > to back it out. Some liked it. I have ported it to uart(4) since we > need that functionality when we moved to a newer FreeBSD. BTW, sorry to come in late on the thread. Would this cause the loader to reset the machine? On a box in my work testlab I have not been able to use a recent /boot/loader for a few weeks. I get to the BIOS drive C: is disk0 = =20 bit and BOOM. Best, George= From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 00:43:11 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F1937D3E for ; Sat, 20 Oct 2012 00:43:11 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-oa0-f54.google.com (mail-oa0-f54.google.com [209.85.219.54]) by mx1.freebsd.org (Postfix) with ESMTP id AB8C48FC14 for ; Sat, 20 Oct 2012 00:43:11 +0000 (UTC) Received: by mail-oa0-f54.google.com with SMTP id n9so1307907oag.13 for ; Fri, 19 Oct 2012 17:43:11 -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=N4GPh+0DmyauksuFwhY8aMkV6wCZL0DXNlU+MgA4lHk=; b=MyPDubHsmoTtfv62RMbuoMpLHHpkhT+AK/Y6JYs432sPdt2FFWX/kv1Ph6U/9U1YtP eUs0RVTeY/LApsf/7XrYz2H1NBw/2xWz1w5x7rSHGrjfdyh+yjmvJF5ugCHe8v12qBUY 3lGTE26a+TuYWmzKRpXw9ETdO6S8UPHbzWMvcpmT32cchiXLHOE9Kl2yrXDiZENmkZfB hVlRVezKWpKKII39uY9PRzULHpj/dbdykxlx76jmlXmB1SIWZsrgoYsbNMIwxLXX3j9e yaLh0cpmsLuUvJzYrdq0PDdrBOdGGla61xNgisJvNL4K0xr6AhK9I1xoBsR+X3ktU15c n/Tg== MIME-Version: 1.0 Received: by 10.60.13.198 with SMTP id j6mr2927205oec.51.1350693790979; Fri, 19 Oct 2012 17:43:10 -0700 (PDT) Received: by 10.76.143.33 with HTTP; Fri, 19 Oct 2012 17:43:10 -0700 (PDT) In-Reply-To: References: <5078A803.7070705@delphij.net> <5078B145.4090501@delphij.net> <20121018214832.GB8009@ambrisko.com> Date: Fri, 19 Oct 2012 17:43:10 -0700 Message-ID: Subject: Re: boot2/loader: serial port handling From: Garrett Cooper To: George Neville-Neil Content-Type: text/plain; charset=ISO-8859-1 Cc: d@delphij.net, freebsd-current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 00:43:12 -0000 On Fri, Oct 19, 2012 at 5:31 PM, George Neville-Neil wrote: ... > BTW, sorry to come in late on the thread. Would this cause the loader > to reset the machine? On a box in my work testlab I have not > been able to use a recent /boot/loader for a few weeks. > > I get to the BIOS drive C: is disk0 > > bit and BOOM. One would hope not, but it might if the code is doing something potentially wonky or some assumptions are invalidated somehow. -Garrett From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 07:21:58 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B9ED38B5 for ; Sat, 20 Oct 2012 07:21:58 +0000 (UTC) (envelope-from sergey.dyatko@gmail.com) Received: from mail-lb0-f182.google.com (mail-lb0-f182.google.com [209.85.217.182]) by mx1.freebsd.org (Postfix) with ESMTP id 353238FC12 for ; Sat, 20 Oct 2012 07:21:57 +0000 (UTC) Received: by mail-lb0-f182.google.com with SMTP id b5so983105lbd.13 for ; Sat, 20 Oct 2012 00:21:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; bh=1Pai6kNsf2yrtLuY3Pi58q768ZytIjoY2SVqeVNTBE8=; b=J2COvo3LXig6fYFevC8MnEy2NEdG5TbmvpYjmeyUVQnK95EXGLTUgC8pG2OsxbOmxh DfaRHNuaH+xd1vvKIziPm5SKAoLmBPJ5xYjKBjIAJB5qp7mBPFzw9JKlSQ4UYIsIEF+7 QeqQWKk8pbTkFyIr9B7eOfpXQxJDpTnjnQuEBxknXjaADTLRjyXNHvwK4uPl/slpEXg6 G9p9YEhGuCKgC98WkkRhCagONhGpJ8Z3KbGuy0X7aNOZOMFn2CNYdBLkVZNCTQ3NBk3P g9446S0QtHR80vSlurc+Bk7pOIegFjTnBj0REPEJ/A+zmwBiv8JH/b9eIoPvwsFcMg4m Tpmw== Received: by 10.152.129.197 with SMTP id ny5mr617737lab.43.1350717716742; Sat, 20 Oct 2012 00:21:56 -0700 (PDT) Received: from laptop ([178.125.31.12]) by mx.google.com with ESMTPS id n2sm1195288lbg.2.2012.10.20.00.21.54 (version=SSLv3 cipher=OTHER); Sat, 20 Oct 2012 00:21:55 -0700 (PDT) Date: Sat, 20 Oct 2012 10:23:25 +0300 From: "Sergey V. Dyatko" To: freebsd-current@freebsd.org Subject: Re: [HEADSUP] current switched by default to pkgng Message-ID: <20121020102325.25b9571b@laptop> In-Reply-To: <5081809F.8010003@lissyara.su> References: <20121010134421.GI26497@ithaqua.etoilebsd.net> <5081661B.2090209@lissyara.su> <50816D59.1030706@unsane.co.uk> <50816EE5.8090704@lissyara.su> <50817DEF.4070509@lissyara.su> <5081809F.8010003@lissyara.su> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; amd64-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 07:21:58 -0000 On Fri, 19 Oct 2012 20:32:31 +0400 Alex Keda wrote: > On 19.10.2012 20:21, Alex Keda wrote: > > On 19.10.2012 19:59, Chris Rees wrote: > >> On 19 October 2012 16:16, Alex Keda wrote: > >>> On 19.10.2012 19:10, Vincent Hoffman wrote: > >>>> On 19/10/2012 15:39, Alex Keda wrote: > >>>>> pkg command does not have key for list options - no > >>>>> autocompletions > >>>>> > >>>>> for example, for service command, I use > >>>>> complete service 'n/*/`service -l`/' > >>>>> in .cshrc > >>>>> > >>>>> what I can use for pkg command? > >>>> > >>>> horrible but working example > >>>> pkg help 2>&1 | sed -e '1,/Commands supported:/d ; /For more > >>>> information on the different commands/,$d; s/^ *// ; > >>>> s/ .*.*$// ;/^$/d' > >>>> > >>>> There's bound to be better ways, I was just bored enough to > >>>> knock this up. note s/^ *// is a tab, while s/ .*.*$// is > >>>> 2 spaces dont think our sed has any other way to express tab > >>>> other than an actual tab (ctrl-v then tab on the command line) > >>> > >>> it's crazy =) > >>> may be add -l options? > >> > >> For Bourne-style shell: > >> `pkg help 2>&1 | sed -nE 's,^ +(.*),\1,p'` > >> > >> For csh-style shell: > >> `pkg help | & sed -nE 's,^ +(.*),\1,p'` > >> > >> where the bit between ^ and + is a tab character. You can type the > >> tab character on a command prompt by using Ctrl+V then tab, or just > >> type it normally in the script. > >> > >> Hope that helps in the meantime. > >> > >> Chris > >> > > dc7700p# pkg > > -c Displays Performs a and > > check debug from inside local > > package packages remote search system > > updating > > -d Displays Performs a and > > ......... skipped ........ > > Displays Opens a against catalogues > > debug from inside link package > > packages register search system update > > dc7700p# > > dc7700p# grep pkg /root/.cshrc > > complete pkg 'n/*/`pkg help |& sed -nE "s,^ > > +(.*),\1,p"`/' > > > > some not work... I try my own string: > > complete pkg 'n/*/`pkg help |& grep "Commands supported:" > > --after-context=100 | grep "^\s" | awk "{print $1}"`/' > > > > output identical. maybe pipe not work in this place? > > _______________________________________________ > > freebsd-current@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-current > > To unsubscribe, send any mail to > > "freebsd-current-unsubscribe@freebsd.org" > > > > it's a good crutch =) > > dc7700p# pkg > add autoremove check create fetch info > query remove rquery set shlib update upgrade > which > audit backup clean delete help install > register repo search shell stats updating > version > dc7700p# pkg > dc7700p# grep pkg /root/.cshrc > complete pkg 'n/*/`pkg help |& grep "Commands supported:" > --after-context=100 | grep "^\s" | cut -d " " -f 1`/' > dc7700p# > > https://github.com/yoursbofh/pkgng-tcsh/blob/master/dot.cshrc_pkg Unfortunately, I do not know how to do something like `pkg command <-keys> ` i.e. 'n/audit/' 'c/-/(F q)/' '`pkg query "%n-%v"`/' doesn't work :( [tiger@laptop]:~%pkg audit [tab] Missing separator '/' after completion "". -- wbr, tiger From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 08:19:16 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ADB3AC3E for ; Sat, 20 Oct 2012 08:19:16 +0000 (UTC) (envelope-from admin@lissyara.su) Received: from mx.lissyara.su (mx.lissyara.su [91.227.18.11]) by mx1.freebsd.org (Postfix) with ESMTP id 331208FC0C for ; Sat, 20 Oct 2012 08:19:15 +0000 (UTC) Received: from [77.41.108.0] (port=28069 helo=dc7700p.lissyara.su) by mx.lissyara.su with esmtpa (Exim 4.80 (FreeBSD)) (envelope-from ) id 1TPUH2-000Ena-Tg for freebsd-current@freebsd.org; Sat, 20 Oct 2012 12:19:13 +0400 Message-ID: <50825E80.1000007@lissyara.su> Date: Sat, 20 Oct 2012 12:19:12 +0400 From: Alex Keda User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121019 Thunderbird/16.0.1 MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: Re: [HEADSUP] current switched by default to pkgng References: <20121010134421.GI26497@ithaqua.etoilebsd.net> <5081661B.2090209@lissyara.su> <50816D59.1030706@unsane.co.uk> <50816EE5.8090704@lissyara.su> <50817DEF.4070509@lissyara.su> <5081809F.8010003@lissyara.su> <20121020102325.25b9571b@laptop> In-Reply-To: <20121020102325.25b9571b@laptop> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Spam-Description: if spam count > 60 - this is spam X-Spam-Count: 0 X-Descriptions: powered by www.lissyara.su X-Bounce-ID: mx.lissyara.su X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 08:19:16 -0000 On 20.10.2012 11:23, Sergey V. Dyatko wrote: > On Fri, 19 Oct 2012 20:32:31 +0400 > Alex Keda wrote: > >> On 19.10.2012 20:21, Alex Keda wrote: >>> On 19.10.2012 19:59, Chris Rees wrote: >>>> On 19 October 2012 16:16, Alex Keda wrote: >>>>> On 19.10.2012 19:10, Vincent Hoffman wrote: >>>>>> On 19/10/2012 15:39, Alex Keda wrote: >>>>>>> pkg command does not have key for list options - no >>>>>>> autocompletions >>>>>>> >>>>>>> for example, for service command, I use >>>>>>> complete service 'n/*/`service -l`/' >>>>>>> in .cshrc >>>>>>> >>>>>>> what I can use for pkg command? >>>>>> >>>>>> horrible but working example >>>>>> pkg help 2>&1 | sed -e '1,/Commands supported:/d ; /For more >>>>>> information on the different commands/,$d; s/^ *// ; >>>>>> s/ .*.*$// ;/^$/d' >>>>>> >>>>>> There's bound to be better ways, I was just bored enough to >>>>>> knock this up. note s/^ *// is a tab, while s/ .*.*$// is >>>>>> 2 spaces dont think our sed has any other way to express tab >>>>>> other than an actual tab (ctrl-v then tab on the command line) >>>>> >>>>> it's crazy =) >>>>> may be add -l options? >>>> >>>> For Bourne-style shell: >>>> `pkg help 2>&1 | sed -nE 's,^ +(.*),\1,p'` >>>> >>>> For csh-style shell: >>>> `pkg help | & sed -nE 's,^ +(.*),\1,p'` >>>> >>>> where the bit between ^ and + is a tab character. You can type the >>>> tab character on a command prompt by using Ctrl+V then tab, or just >>>> type it normally in the script. >>>> >>>> Hope that helps in the meantime. >>>> >>>> Chris >>>> >>> dc7700p# pkg >>> -c Displays Performs a and >>> check debug from inside local >>> package packages remote search system >>> updating >>> -d Displays Performs a and >>> ......... skipped ........ >>> Displays Opens a against catalogues >>> debug from inside link package >>> packages register search system update >>> dc7700p# >>> dc7700p# grep pkg /root/.cshrc >>> complete pkg 'n/*/`pkg help |& sed -nE "s,^ >>> +(.*),\1,p"`/' >>> >>> some not work... I try my own string: >>> complete pkg 'n/*/`pkg help |& grep "Commands supported:" >>> --after-context=100 | grep "^\s" | awk "{print $1}"`/' >>> >>> output identical. maybe pipe not work in this place? >>> _______________________________________________ >>> freebsd-current@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-current >>> To unsubscribe, send any mail to >>> "freebsd-current-unsubscribe@freebsd.org" >>> >> >> it's a good crutch =) >> >> dc7700p# pkg >> add autoremove check create fetch info >> query remove rquery set shlib update upgrade >> which >> audit backup clean delete help install >> register repo search shell stats updating >> version >> dc7700p# pkg >> dc7700p# grep pkg /root/.cshrc >> complete pkg 'n/*/`pkg help |& grep "Commands supported:" >> --after-context=100 | grep "^\s" | cut -d " " -f 1`/' >> dc7700p# >> >> > > https://github.com/yoursbofh/pkgng-tcsh/blob/master/dot.cshrc_pkg > > Unfortunately, I do not know how to do something like `pkg command > <-keys> ` > > i.e. > 'n/audit/' 'c/-/(F q)/' '`pkg query "%n-%v"`/' > doesn't work :( > > [tiger@laptop]:~%pkg audit [tab] > Missing separator '/' after completion "". > > > need escape ' From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 10:26:46 2012 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 487C1E39 for ; Sat, 20 Oct 2012 10:26:46 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 928748FC16 for ; Sat, 20 Oct 2012 10:26:45 +0000 (UTC) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id NAA08491 for ; Sat, 20 Oct 2012 13:26:44 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1TPWGR-000ArM-PI for freebsd-current@freebsd.org; Sat, 20 Oct 2012 13:26:43 +0300 Message-ID: <50827C62.2000605@FreeBSD.org> Date: Sat, 20 Oct 2012 13:26:42 +0300 From: Andriy Gapon User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:16.0) Gecko/20121013 Thunderbird/16.0.1 MIME-Version: 1.0 To: FreeBSD current Subject: ranlib: warning: elf_strptr failed: Invalid argument X-Enigmail-Version: 1.4.5 Content-Type: text/plain; charset=X-VIET-VPS Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 10:26:46 -0000 I am getting the following while executing make toolchain TARGET=pc98: building static roken library ranlib libroken.a ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_strptr failed: Invalid argument ranlib: warning: elf_nextscn failed: Invalid argument ranlib: warning: can't find .strtab section ... cc -O2 -pipe -I/usr/devel/svn/base/head/kerberos5/tools/asn1_compile/../../../crypto/heimdal/lib/roken -I/usr/devel/svn/base/head/kerberos5/tools/asn1_compile/../../../crypto/heimdal/lib/asn1 -I. -DHAVE_CONFIG_H -I/usr/devel/svn/base/head/kerberos5/tools/asn1_compile/../../include -std=gnu99 -I/usr/obj/pc98.i386/usr/devel/svn/base/head/tmp/legacy/usr/include -static -L/usr/obj/pc98.i386/usr/devel/svn/base/head/tmp/legacy/usr/lib -o asn1_compile asn1parse.o gen.o gen_copy.o gen_decode.o gen_encode.o gen_free.o gen_glue.o gen_length.o gen_seq.o gen_template.o hash.o lex.o main.o symbol.o /usr/obj/pc98.i386/usr/devel/svn/base/head/tmp/usr/devel/svn/base/head/kerberos5/tools/asn1_compile/../../lib/libroken/libroken.a /usr/obj/pc98.i386/usr/devel/svn/base/head/tmp/usr/devel/svn/base/head/kerberos5/tools/asn1_compile/../../lib/libvers/libvers.a -legacy main.o: In function `usage': main.c:(.text+0x17): undefined reference to `arg_printusage' main.o: In function `main': main.c:(.text+0x77): undefined reference to `getarg' main.c:(.text+0x1f6): undefined reference to `getarg' Ruuning nm on libroken.a gives: nm: getarg.o: File format not recognized Any ideas? -- Andriy Gapon From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 11:52:20 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A4E3AF88 for ; Sat, 20 Oct 2012 11:52:20 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from acme.spoerlein.net (acme.spoerlein.net [IPv6:2a01:4f8:131:23c2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 394AA8FC08 for ; Sat, 20 Oct 2012 11:52:20 +0000 (UTC) Received: from localhost (acme.spoerlein.net [IPv6:2a01:4f8:131:23c2::1]) by acme.spoerlein.net (8.14.5/8.14.5) with ESMTP id q9KBqHOm032430 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sat, 20 Oct 2012 13:52:18 +0200 (CEST) (envelope-from uqs@FreeBSD.org) Date: Sat, 20 Oct 2012 13:52:17 +0200 From: Ulrich =?utf-8?B?U3DDtnJsZWlu?= To: Eitan Adler Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months Message-ID: <20121020115217.GI69724@acme.spoerlein.net> Mail-Followup-To: Eitan Adler , current@freebsd.org References: <20121019143617.GF69724@acme.spoerlein.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: current@FreeBSD.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 11:52:20 -0000 On Fri, 2012-10-19 at 12:14:28 -0400, Eitan Adler wrote: > On 19 October 2012 10:36, Ulrich Spörlein wrote: > > Should people feel strongly about them, we might be able to move them > > over to the doc repository. > > Moving them to the doc repo loses the history, for what gain? > > You mention that the roff sources are 'naughty'. Are they holding up > some project? Replying to this only here: If you have a look at your calendar, you might get the reference :) They are holding up the removal of groff from the base system, which we can no longer update thanks to the project policy wrt. GPLv3. Uli From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 11:55:48 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F553133; Sat, 20 Oct 2012 11:55:48 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from acme.spoerlein.net (acme.spoerlein.net [IPv6:2a01:4f8:131:23c2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 8A8118FC08; Sat, 20 Oct 2012 11:55:47 +0000 (UTC) Received: from localhost (acme.spoerlein.net [IPv6:2a01:4f8:131:23c2::1]) by acme.spoerlein.net (8.14.5/8.14.5) with ESMTP id q9KBtkoG032494 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sat, 20 Oct 2012 13:55:46 +0200 (CEST) (envelope-from uqs@FreeBSD.org) Date: Sat, 20 Oct 2012 13:55:46 +0200 From: Ulrich =?utf-8?B?U3DDtnJsZWlu?= To: Gregory Shapiro Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months Message-ID: <20121020115545.GJ69724@acme.spoerlein.net> Mail-Followup-To: Gregory Shapiro , current@FreeBSD.org References: <20121019143617.GF69724@acme.spoerlein.net> <20121019155542.GQ1967@funkthat.com> <20121019161124.GZ35915@deviant.kiev.zoral.com.ua> <20121019162433.GY601@rugsucker.smi.sendmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121019162433.GY601@rugsucker.smi.sendmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: current@FreeBSD.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 11:55:48 -0000 On Fri, 2012-10-19 at 09:24:33 -0700, Gregory Shapiro wrote: > > > > Ulrich Sprlein wrote this message on Fri, Oct 19, 2012 at 16:36 +0200: > > > > those roff sources have been very naughty and will be removed from the > > > > tree by the end of the year. Most of those papers are severely out of > > > > date and provide no more use to the system. They can probably also be > > > > found online using a search engine of your choice. > > As pointed out: > > On Fri, Oct 19, 2012 at 07:11:24PM +0300, Konstantin Belousov wrote: > > And e.g. sendmail documentation is fresh and updated together with > > sendmail imports, AFAIR. > > Konstantin is correct -- every sendmail import refreshes what is built > by share/doc/smm/08.sendmailop/Makefile. That document (operations > guide) should not be removed. > > > > > Should people feel strongly about them, we might be able to move them > > > > over to the doc repository. > > That would cause a problem for contrib/ style imports like sendmail. > In the base source tree, share/doc/smm/08.sendmailop/Makefile (for > example) reads the documentation files from contrib/sendmail/doc/. > Moving share/doc/smm/08.sendmailop/Makefile to a different repo would be > an issue since the document source files are in the src repo. I don't > think contrib packages should be imported into two trees. Which wouldn't have been a problem if we went with a single subversion repository, and not three, but oh well. While the current situation is nice wrt. sendmail, we have tons of information for system administration in the handbook, which is practically only available online. There's no reason sendmail should be special in this regard, but we'll have to figure something out on how to build this then ... Cheers, Uli From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 12:25:04 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8D1F993A; Sat, 20 Oct 2012 12:25:04 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from tower.berklix.org (tower.berklix.org [83.236.223.114]) by mx1.freebsd.org (Postfix) with ESMTP id 024D08FC0A; Sat, 20 Oct 2012 12:25:03 +0000 (UTC) Received: from mart.js.berklix.net (p5DCBDC53.dip.t-dialin.net [93.203.220.83]) (authenticated bits=0) by tower.berklix.org (8.14.2/8.14.2) with ESMTP id q9KCOpSq093709; Sat, 20 Oct 2012 12:24:52 GMT (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id q9KCOe8I085369; Sat, 20 Oct 2012 14:24:40 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.4/8.14.4) with ESMTP id q9KCOSvN097641; Sat, 20 Oct 2012 14:24:34 +0200 (CEST) (envelope-from jhs@fire.js.berklix.net) Message-Id: <201210201224.q9KCOSvN097641@fire.js.berklix.net> To: Ulrich =?utf-8?B?U3DDtnJsZWlu?= Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months From: "Julian H. Stacey" Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Sat, 20 Oct 2012 13:52:17 +0200." <20121020115217.GI69724@acme.spoerlein.net> Date: Sat, 20 Oct 2012 14:24:28 +0200 Sender: jhs@berklix.com Cc: Eitan Adler , current@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 12:25:04 -0000 Ulrich =?utf-8?B?U3DDtnJsZWlu?= wrote: > On Fri, 2012-10-19 at 12:14:28 -0400, Eitan Adler wrote: > > On 19 October 2012 10:36, Ulrich Spörlein wrote: > > > Should people feel strongly about them, we might be able to move them > > > over to the doc repository. > > > > Moving them to the doc repo loses the history, for what gain? > > > > You mention that the roff sources are 'naughty'. Are they holding up > > some project? > > Replying to this only here: If you have a look at your calendar, you > might get the reference :) > > They are holding up the removal of groff from the base system, which we > can no longer update thanks to the project policy wrt. GPLv3. It's awful damage from just not wanting to upgrade to a new groff with GPL3, to also throwing out older working groff plus text sources formatted by it. I use groff daily. Cheers, Julian -- Julian Stacey, BSD Unix Linux C Sys Eng Consultant, Munich http://berklix.com Reply below not above, like a play script. Indent old text with "> ". Send plain text. Not: HTML, multipart/alternative, base64, quoted-printable. From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 13:26:44 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B4ECE2A; Sat, 20 Oct 2012 13:26:44 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id AC3298FC0A; Sat, 20 Oct 2012 13:26:43 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KDQb43007016; Sat, 20 Oct 2012 09:26:37 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KDQbS0007000; Sat, 20 Oct 2012 13:26:37 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 13:26:37 GMT Message-Id: <201210201326.q9KDQbS0007000@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on ia64/ia64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 13:26:44 -0000 TB --- 2012-10-20 12:42:11 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 12:42:11 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 12:42:11 - starting HEAD tinderbox run for ia64/ia64 TB --- 2012-10-20 12:42:11 - cleaning the object tree TB --- 2012-10-20 12:42:11 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 12:42:11 - cd /tinderbox/HEAD/ia64/ia64 TB --- 2012-10-20 12:42:11 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 12:43:15 - /usr/local/bin/svn update /src TB --- 2012-10-20 12:43:23 - At svn revision 241780 TB --- 2012-10-20 12:43:24 - building world TB --- 2012-10-20 12:43:24 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 12:43:24 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 12:43:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 12:43:24 - SRCCONF=/dev/null TB --- 2012-10-20 12:43:24 - TARGET=ia64 TB --- 2012-10-20 12:43:24 - TARGET_ARCH=ia64 TB --- 2012-10-20 12:43:24 - TZ=UTC TB --- 2012-10-20 12:43:24 - __MAKE_CONF=/dev/null TB --- 2012-10-20 12:43:24 - cd /src TB --- 2012-10-20 12:43:24 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 12:43:29 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 13:26:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 13:26:37 - ERROR: failed to build world TB --- 2012-10-20 13:26:37 - 1897.99 user 350.48 system 2665.84 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 13:33:15 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0FF3FA; Sat, 20 Oct 2012 13:33:15 +0000 (UTC) (envelope-from universite@ukr.net) Received: from ffe8.ukr.net (ffe8.ukr.net [195.214.192.88]) by mx1.freebsd.org (Postfix) with ESMTP id 7B15B8FC0A; Sat, 20 Oct 2012 13:33:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ukr.net; s=ffe; h=Date:Message-Id:From:To:Subject:Cc:Content-Type:Content-Transfer-Encoding:MIME-Version; bh=rsTOUDU4+QbKOqXhdcei32i5k5cLLojecptQU5HOAXs=; b=JhUm4k56UhhBzSlkOU41CBz/d58dJPwielARqRqyG0mvyzqBLVU5BKyAX9KDf/lbyYfR+aAuqS76CyYfayd4Xl40W4Mmb+8B59kLlp+8ZW3565MGTZlgcMTdtvZLW85WSYaABU7URF+G0/gMucA3BVjglfQ/DMOmzERCY2krlFg=; Received: from mail by ffe8.ukr.net with local ID 1TPYpw-000MeG-J9 ; Sat, 20 Oct 2012 16:11:32 +0300 MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: binary Content-Type: text/plain; charset="windows-1251" Subject: [ZFS] Server periodically become unavailable To: freebsd-current@freebsd.org From: "Vladislav Prodan" X-Mailer: freemail.ukr.net 4.0 Message-Id: <86879.1350738692.82582785788739584@ffe8.ukr.net> X-Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0.1 Date: Sat, 20 Oct 2012 16:11:32 +0300 Cc: freebsd-stable@freebsd.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 13:33:16 -0000 >FreeBSD 9.1-PRERELEASE #0: Wed Jul 25 01:40:56 EEST 2012 I have the server: 8 cores AMD, 16GB RAM, 4x3TB HDD in RAID10 for ZFS. Sometime wheels fall off the server and the network. Can this clean-up memory for ZFS cache? I enclose a picture with the monitoring system at the time lags. http://imageshack.us/a/img341/9643/memoryusage.png http://imageshack.us/a/img22/6935/nginxclientstat.png http://imageshack.us/a/img19/8817/realmemory.png #cat /etc/sysctl.conf kern.ipc.somaxconn=65535 kern.ipc.maxsockets=204800 net.inet.ip.portrange.first=1024 net.inet.ip.portrange.last=65535 kern.ipc.shmmax=67108864 kern.ipc.shmall=67108864 net.inet.tcp.rfc3465=0 net.graph.maxdgram=8388608 net.graph.recvspace=8388608 net.route.netisr_maxqlen=4096 kern.ipc.nmbclusters=400000 kern.ipc.maxsockbuf=83886080 net.inet.tcp.recvbuf_inc=524288 net.inet.tcp.recvbuf_max=16777216 net.inet.tcp.sendbuf_inc=524288 net.inet.tcp.sendbuf_max=16777216 net.inet.tcp.sendspace=65536 net.inet.tcp.keepidle=300000 net.inet.tcp.keepintvl=60000 net.inet.ip.fw.dyn_max=65535 net.inet.ip.fw.dyn_buckets=65536 net.inet.ip.fw.dyn_ack_lifetime=120 net.inet.ip.fw.dyn_syn_lifetime=10 net.inet.tcp.nolocaltimewait=1 security.bsd.hardlink_check_uid=1 security.bsd.hardlink_check_gid=1 security.bsd.see_other_uids=0 security.bsd.see_other_gids=0 -- Vladislav V. Prodan System & Network Administrator http://support.od.ua +380 67 4584408, +380 99 4060508 VVP88-RIPE From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 14:01:36 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B87F1789; Sat, 20 Oct 2012 14:01:36 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 646AC8FC0A; Sat, 20 Oct 2012 14:01:35 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KE1ZnR048321; Sat, 20 Oct 2012 10:01:35 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KE1Zo6048305; Sat, 20 Oct 2012 14:01:35 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 14:01:35 GMT Message-Id: <201210201401.q9KE1Zo6048305@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on mips/mips Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 14:01:36 -0000 TB --- 2012-10-20 13:26:37 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 13:26:37 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 13:26:37 - starting HEAD tinderbox run for mips/mips TB --- 2012-10-20 13:26:37 - cleaning the object tree TB --- 2012-10-20 13:26:37 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 13:26:37 - cd /tinderbox/HEAD/mips/mips TB --- 2012-10-20 13:26:37 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 13:27:18 - /usr/local/bin/svn update /src TB --- 2012-10-20 13:27:25 - At svn revision 241781 TB --- 2012-10-20 13:27:26 - building world TB --- 2012-10-20 13:27:26 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 13:27:26 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 13:27:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 13:27:26 - SRCCONF=/dev/null TB --- 2012-10-20 13:27:26 - TARGET=mips TB --- 2012-10-20 13:27:26 - TARGET_ARCH=mips TB --- 2012-10-20 13:27:26 - TZ=UTC TB --- 2012-10-20 13:27:26 - __MAKE_CONF=/dev/null TB --- 2012-10-20 13:27:26 - cd /src TB --- 2012-10-20 13:27:26 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 13:27:31 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 14:01:35 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 14:01:35 - ERROR: failed to build world TB --- 2012-10-20 14:01:35 - 1378.77 user 314.28 system 2097.98 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 14:17:11 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 95B2DDB4; Sat, 20 Oct 2012 14:17:11 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 493618FC0A; Sat, 20 Oct 2012 14:17:08 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KEH7ie052675; Sat, 20 Oct 2012 10:17:07 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KEH7Yt052659; Sat, 20 Oct 2012 14:17:07 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 14:17:07 GMT Message-Id: <201210201417.q9KEH7Yt052659@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on mips64/mips Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 14:17:11 -0000 TB --- 2012-10-20 13:42:27 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 13:42:27 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 13:42:27 - starting HEAD tinderbox run for mips64/mips TB --- 2012-10-20 13:42:27 - cleaning the object tree TB --- 2012-10-20 13:42:27 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 13:42:27 - cd /tinderbox/HEAD/mips64/mips TB --- 2012-10-20 13:42:27 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 13:43:20 - /usr/local/bin/svn update /src TB --- 2012-10-20 13:43:28 - At svn revision 241781 TB --- 2012-10-20 13:43:29 - building world TB --- 2012-10-20 13:43:29 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 13:43:29 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 13:43:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 13:43:29 - SRCCONF=/dev/null TB --- 2012-10-20 13:43:29 - TARGET=mips TB --- 2012-10-20 13:43:29 - TARGET_ARCH=mips64 TB --- 2012-10-20 13:43:29 - TZ=UTC TB --- 2012-10-20 13:43:29 - __MAKE_CONF=/dev/null TB --- 2012-10-20 13:43:29 - cd /src TB --- 2012-10-20 13:43:29 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 13:43:34 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 14:17:07 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 14:17:07 - ERROR: failed to build world TB --- 2012-10-20 14:17:07 - 1381.89 user 315.16 system 2079.57 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips64-mips.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 14:56:37 2012 Return-Path: Delivered-To: current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C1E8E5D3 for ; Sat, 20 Oct 2012 14:56:37 +0000 (UTC) (envelope-from uqs@FreeBSD.org) Received: from acme.spoerlein.net (acme.spoerlein.net [IPv6:2a01:4f8:131:23c2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 53A0D8FC0C for ; Sat, 20 Oct 2012 14:56:37 +0000 (UTC) Received: from localhost (acme.spoerlein.net [IPv6:2a01:4f8:131:23c2::1]) by acme.spoerlein.net (8.14.5/8.14.5) with ESMTP id q9KEuVLJ048154 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sat, 20 Oct 2012 16:56:31 +0200 (CEST) (envelope-from uqs@FreeBSD.org) Date: Sat, 20 Oct 2012 16:56:30 +0200 From: Ulrich =?utf-8?B?U3DDtnJsZWlu?= To: "Julian H. Stacey" Subject: Re: RFC: removal of share/doc/{papers,psd,smm,usd} in 2 months Message-ID: <20121020145630.GK69724@acme.spoerlein.net> Mail-Followup-To: "Julian H. Stacey" , Eitan Adler , current@freebsd.org References: <20121020115217.GI69724@acme.spoerlein.net> <201210201224.q9KCOSvN097641@fire.js.berklix.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <201210201224.q9KCOSvN097641@fire.js.berklix.net> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: Eitan Adler , current@FreeBSD.org X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 14:56:37 -0000 On Sat, 2012-10-20 at 14:24:28 +0200, Julian H. Stacey wrote: > Ulrich =?utf-8?B?U3DDtnJsZWlu?= wrote: > > On Fri, 2012-10-19 at 12:14:28 -0400, Eitan Adler wrote: > > > On 19 October 2012 10:36, Ulrich Spörlein wrote: > > > > Should people feel strongly about them, we might be able to move them > > > > over to the doc repository. > > > > > > Moving them to the doc repo loses the history, for what gain? > > > > > > You mention that the roff sources are 'naughty'. Are they holding up > > > some project? > > > > Replying to this only here: If you have a look at your calendar, you > > might get the reference :) > > > > They are holding up the removal of groff from the base system, which we > > can no longer update thanks to the project policy wrt. GPLv3. > > It's awful damage from just not wanting to upgrade to a new groff > with GPL3, to also throwing out older working groff plus text sources > formatted by it. I use groff daily. There'll always be textproc/groff. Cheers, Uli From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 15:37:58 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 47B4D9C0 for ; Sat, 20 Oct 2012 15:37:58 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from mail-ea0-f182.google.com (mail-ea0-f182.google.com [209.85.215.182]) by mx1.freebsd.org (Postfix) with ESMTP id C34388FC16 for ; Sat, 20 Oct 2012 15:37:57 +0000 (UTC) Received: by mail-ea0-f182.google.com with SMTP id c10so512103eaa.13 for ; Sat, 20 Oct 2012 08:37:51 -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=PtyzPcPk56JEkgsS3SSEkbZjB5twxNLF0ZegkypY6OU=; b=TXnxftJ7WWtgJA+G8wx0pTvZEbot2cPr4We66tFFGqZnZ7ywuKHXSgBl+AaqMBpGYO tcxzgx/cjeNnRRrW94rUkLoZSA8zq1v6olWqENtaAWdPai2tTGya7Pb3mHyJUKRXGnWP vbFqIOGVbszv95zWgLaGrMjCskivPenHVWWg5VMZ8MWBBARCNC2qnIQG0N61TKkQyLVl eUpWZmJ/n1RFr/CUTFj26AHzORaUR0xghL5aBt7FIrL/7ulf6sMjlMugUv8b9iBUH/Hy 2Rjs+hO2TPGsIKlqNnHBc0vgYjy2gt/O8OR89N77ih+GQJcR2LhJZ89idWDh2kuJWH7r SS6w== MIME-Version: 1.0 Received: by 10.14.172.137 with SMTP id t9mr5965464eel.2.1350747471020; Sat, 20 Oct 2012 08:37:51 -0700 (PDT) Received: by 10.14.188.136 with HTTP; Sat, 20 Oct 2012 08:37:50 -0700 (PDT) In-Reply-To: References: Date: Sat, 20 Oct 2012 10:37:50 -0500 Message-ID: Subject: Re: A little question about safe mode From: Scot Hetzel To: Alexander Yerenkow Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 15:37:58 -0000 On Thu, Oct 18, 2012 at 2:35 AM, Alexander Yerenkow wrote: > Hello there. > I have problem here, and don't know if it's bug or "feature" :) > If I prerare boot media (hdd, sd card,usb, etc) with FreeBSD, and NOT > create there fstab, I see such behavior: > > 1. I need enter manually where from mount root (e.g. ufs:ada0s1a or > ufs:ada0s1a rw) > 2. If I enter ufs:ada0s1a rw - I have / mounted in read-only anyway. <== Is > this bug?... Looks to be a feature in sys/kern/vfs_mountroot.c: 997 parse_mountroot_options(struct mntarg *ma, const char *options) : 1021 if( strcmp(name, "rw") == 0 || 1022 strcmp(name, "noro") == 0) { 1023 /* 1024 * The first time we mount the root file system, 1025 * we need to mount 'ro', so We need to ignore 1026 * 'rw' and 'noro' mount options. 1027 */ 1028 continue; 1029 } Scot From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 15:48:20 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 007D4F8A; Sat, 20 Oct 2012 15:48:19 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id A72AB8FC0C; Sat, 20 Oct 2012 15:48:19 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KFmDT4055150; Sat, 20 Oct 2012 11:48:13 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KFmCoR055135; Sat, 20 Oct 2012 15:48:12 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 15:48:12 GMT Message-Id: <201210201548.q9KFmCoR055135@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 15:48:20 -0000 TB --- 2012-10-20 14:01:35 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 14:01:35 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 14:01:35 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2012-10-20 14:01:35 - cleaning the object tree TB --- 2012-10-20 14:01:35 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 14:01:35 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2012-10-20 14:01:35 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 14:02:25 - /usr/local/bin/svn update /src TB --- 2012-10-20 14:02:33 - At svn revision 241781 TB --- 2012-10-20 14:02:34 - building world TB --- 2012-10-20 14:02:34 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 14:02:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 14:02:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 14:02:34 - SRCCONF=/dev/null TB --- 2012-10-20 14:02:34 - TARGET=powerpc TB --- 2012-10-20 14:02:34 - TARGET_ARCH=powerpc TB --- 2012-10-20 14:02:34 - TZ=UTC TB --- 2012-10-20 14:02:34 - __MAKE_CONF=/dev/null TB --- 2012-10-20 14:02:34 - cd /src TB --- 2012-10-20 14:02:34 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 14:02:39 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 15:48:12 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 15:48:12 - ERROR: failed to build world TB --- 2012-10-20 15:48:12 - 5190.65 user 618.45 system 6397.22 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 16:04:13 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C4355BA; Sat, 20 Oct 2012 16:04:13 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E5A088FC12; Sat, 20 Oct 2012 16:04:12 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KG4Cv7050997; Sat, 20 Oct 2012 12:04:12 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KG4CVB050992; Sat, 20 Oct 2012 16:04:12 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 16:04:12 GMT Message-Id: <201210201604.q9KG4CVB050992@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc64/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 16:04:13 -0000 TB --- 2012-10-20 14:17:07 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 14:17:07 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 14:17:07 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2012-10-20 14:17:07 - cleaning the object tree TB --- 2012-10-20 14:17:07 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 14:17:07 - cd /tinderbox/HEAD/powerpc64/powerpc TB --- 2012-10-20 14:17:07 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 14:18:02 - /usr/local/bin/svn update /src TB --- 2012-10-20 14:18:12 - At svn revision 241781 TB --- 2012-10-20 14:18:13 - building world TB --- 2012-10-20 14:18:13 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 14:18:13 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 14:18:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 14:18:13 - SRCCONF=/dev/null TB --- 2012-10-20 14:18:13 - TARGET=powerpc TB --- 2012-10-20 14:18:13 - TARGET_ARCH=powerpc64 TB --- 2012-10-20 14:18:13 - TZ=UTC TB --- 2012-10-20 14:18:13 - __MAKE_CONF=/dev/null TB --- 2012-10-20 14:18:13 - cd /src TB --- 2012-10-20 14:18:13 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 14:18:19 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 16:04:12 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 16:04:12 - ERROR: failed to build world TB --- 2012-10-20 16:04:12 - 5257.46 user 628.00 system 6424.37 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 16:23:16 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 794B5BC8; Sat, 20 Oct 2012 16:23:16 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 2AD908FC14; Sat, 20 Oct 2012 16:23:16 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KGNFT9042922; Sat, 20 Oct 2012 12:23:15 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KGNF9H042918; Sat, 20 Oct 2012 16:23:15 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 16:23:15 GMT Message-Id: <201210201623.q9KGNF9H042918@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 16:23:16 -0000 TB --- 2012-10-20 15:48:13 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 15:48:13 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 15:48:13 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-10-20 15:48:13 - cleaning the object tree TB --- 2012-10-20 15:48:13 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 15:48:13 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2012-10-20 15:48:13 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 15:49:14 - /usr/local/bin/svn update /src TB --- 2012-10-20 15:49:23 - At svn revision 241784 TB --- 2012-10-20 15:49:24 - building world TB --- 2012-10-20 15:49:24 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 15:49:24 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 15:49:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 15:49:24 - SRCCONF=/dev/null TB --- 2012-10-20 15:49:24 - TARGET=sparc64 TB --- 2012-10-20 15:49:24 - TARGET_ARCH=sparc64 TB --- 2012-10-20 15:49:24 - TZ=UTC TB --- 2012-10-20 15:49:24 - __MAKE_CONF=/dev/null TB --- 2012-10-20 15:49:24 - cd /src TB --- 2012-10-20 15:49:24 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 15:49:29 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 16:23:15 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 16:23:15 - ERROR: failed to build world TB --- 2012-10-20 16:23:15 - 1505.09 user 298.10 system 2102.31 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 17:36:34 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 831B6109; Sat, 20 Oct 2012 17:36:34 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 2EB458FC14; Sat, 20 Oct 2012 17:36:33 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KHaXYq080037; Sat, 20 Oct 2012 13:36:33 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KHaXdM080036; Sat, 20 Oct 2012 17:36:33 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 17:36:33 GMT Message-Id: <201210201736.q9KHaXdM080036@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on arm/arm Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 17:36:34 -0000 TB --- 2012-10-20 17:00:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 17:00:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 17:00:00 - starting HEAD tinderbox run for arm/arm TB --- 2012-10-20 17:00:00 - cleaning the object tree TB --- 2012-10-20 17:00:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 17:00:00 - cd /tinderbox/HEAD/arm/arm TB --- 2012-10-20 17:00:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 17:03:55 - /usr/local/bin/svn update /src TB --- 2012-10-20 17:04:09 - At svn revision 241785 TB --- 2012-10-20 17:04:10 - building world TB --- 2012-10-20 17:04:10 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 17:04:10 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 17:04:10 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 17:04:10 - SRCCONF=/dev/null TB --- 2012-10-20 17:04:10 - TARGET=arm TB --- 2012-10-20 17:04:10 - TARGET_ARCH=arm TB --- 2012-10-20 17:04:10 - TZ=UTC TB --- 2012-10-20 17:04:10 - __MAKE_CONF=/dev/null TB --- 2012-10-20 17:04:10 - cd /src TB --- 2012-10-20 17:04:10 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 17:04:17 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 17:36:33 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 17:36:33 - ERROR: failed to build world TB --- 2012-10-20 17:36:33 - 1316.65 user 330.91 system 2192.24 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 17:39:21 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2180A369; Sat, 20 Oct 2012 17:39:21 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id C6EFF8FC14; Sat, 20 Oct 2012 17:39:20 +0000 (UTC) Received: by mail-ob0-f182.google.com with SMTP id wc20so1801227obb.13 for ; Sat, 20 Oct 2012 10:39: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=vS+uekN0V1QwcN0mJnnnJv/OCvSr/LEUF9lqsfqq1ms=; b=WeEAZdppV8JvLtS8Lxmgjxcf9cXJzaOXjmRfyzxypHIqqId6CayeaR+DijnBGqntCv QWghymP+Kl6iubN7W2ZCP+EquzEAfe/g+P0H/O4qr3vpCuEpyymAL2VXjptkP3YyKZOp L5wGV0fBJT/0GtzClYjqHhE31TEtd/WYe59tihd3OHSn3VU1ngZuQEglpQKclyA8FeOY bAEqaxd+xMKV4bMOEoWPYQkE2GywRo6bwXwdsN7Ic4UzUCEnPaHHRuNxxBRyogMXNt0W +idYLW36cHmZS3EgkRM8F9dyEVxfIhTRxKND0R98Q0P+vgJoqCnomxpDhBBJ9hWnC37q CxOQ== MIME-Version: 1.0 Received: by 10.182.150.34 with SMTP id uf2mr3313390obb.66.1350754758727; Sat, 20 Oct 2012 10:39:18 -0700 (PDT) Received: by 10.76.143.33 with HTTP; Sat, 20 Oct 2012 10:39:18 -0700 (PDT) In-Reply-To: <50827C62.2000605@FreeBSD.org> References: <50827C62.2000605@FreeBSD.org> Date: Sat, 20 Oct 2012 10:39:18 -0700 Message-ID: Subject: Re: ranlib: warning: elf_strptr failed: Invalid argument From: Garrett Cooper To: Andriy Gapon Content-Type: text/plain; charset=ISO-8859-1 Cc: FreeBSD current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 17:39:21 -0000 On Sat, Oct 20, 2012 at 3:26 AM, Andriy Gapon wrote: > > I am getting the following while executing make toolchain TARGET=pc98: > building static roken library > ranlib libroken.a > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_strptr failed: Invalid argument > ranlib: warning: elf_nextscn failed: Invalid argument > ranlib: warning: can't find .strtab section > ... > cc -O2 -pipe > -I/usr/devel/svn/base/head/kerberos5/tools/asn1_compile/../../../crypto/heimdal/lib/roken > -I/usr/devel/svn/base/head/kerberos5/tools/asn1_compile/../../../crypto/heimdal/lib/asn1 > -I. -DHAVE_CONFIG_H > -I/usr/devel/svn/base/head/kerberos5/tools/asn1_compile/../../include -std=gnu99 > -I/usr/obj/pc98.i386/usr/devel/svn/base/head/tmp/legacy/usr/include -static > -L/usr/obj/pc98.i386/usr/devel/svn/base/head/tmp/legacy/usr/lib -o asn1_compile > asn1parse.o gen.o gen_copy.o gen_decode.o gen_encode.o gen_free.o gen_glue.o > gen_length.o gen_seq.o gen_template.o hash.o lex.o main.o symbol.o > /usr/obj/pc98.i386/usr/devel/svn/base/head/tmp/usr/devel/svn/base/head/kerberos5/tools/asn1_compile/../../lib/libroken/libroken.a > /usr/obj/pc98.i386/usr/devel/svn/base/head/tmp/usr/devel/svn/base/head/kerberos5/tools/asn1_compile/../../lib/libvers/libvers.a > -legacy > main.o: In function `usage': > main.c:(.text+0x17): undefined reference to `arg_printusage' > main.o: In function `main': > main.c:(.text+0x77): undefined reference to `getarg' > main.c:(.text+0x1f6): undefined reference to `getarg' > > Ruuning nm on libroken.a gives: > nm: getarg.o: File format not recognized > > > Any ideas? Try reverting r241752 and see if that makes things go through. HTH, -Garrett From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 18:20:38 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 52612F9D; Sat, 20 Oct 2012 18:20:38 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id F26D18FC0C; Sat, 20 Oct 2012 18:20:37 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KIKbpr099083; Sat, 20 Oct 2012 14:20:37 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KIKbcu099082; Sat, 20 Oct 2012 18:20:37 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 18:20:37 GMT Message-Id: <201210201820.q9KIKbcu099082@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on ia64/ia64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 18:20:38 -0000 TB --- 2012-10-20 17:36:33 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 17:36:33 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 17:36:33 - starting HEAD tinderbox run for ia64/ia64 TB --- 2012-10-20 17:36:33 - cleaning the object tree TB --- 2012-10-20 17:37:15 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 17:37:15 - cd /tinderbox/HEAD/ia64/ia64 TB --- 2012-10-20 17:37:15 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 17:38:00 - /usr/local/bin/svn update /src TB --- 2012-10-20 17:38:06 - At svn revision 241786 TB --- 2012-10-20 17:38:07 - building world TB --- 2012-10-20 17:38:07 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 17:38:07 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 17:38:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 17:38:07 - SRCCONF=/dev/null TB --- 2012-10-20 17:38:07 - TARGET=ia64 TB --- 2012-10-20 17:38:07 - TARGET_ARCH=ia64 TB --- 2012-10-20 17:38:07 - TZ=UTC TB --- 2012-10-20 17:38:07 - __MAKE_CONF=/dev/null TB --- 2012-10-20 17:38:07 - cd /src TB --- 2012-10-20 17:38:07 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 17:38:12 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 18:20:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 18:20:37 - ERROR: failed to build world TB --- 2012-10-20 18:20:37 - 1912.48 user 329.95 system 2643.69 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 18:53:01 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4415D7CF; Sat, 20 Oct 2012 18:53:01 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id ED6528FC0A; Sat, 20 Oct 2012 18:53:00 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KIqxfQ094514; Sat, 20 Oct 2012 14:52:59 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KIqx2W094506; Sat, 20 Oct 2012 18:52:59 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 18:52:59 GMT Message-Id: <201210201852.q9KIqx2W094506@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 18:53:01 -0000 TB --- 2012-10-20 17:00:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 17:00:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 17:00:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-20 17:00:00 - cleaning the object tree TB --- 2012-10-20 17:00:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 17:00:00 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-20 17:00:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 17:02:44 - /usr/local/bin/svn update /src TB --- 2012-10-20 17:03:16 - At svn revision 241785 TB --- 2012-10-20 17:03:17 - building world TB --- 2012-10-20 17:03:17 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 17:03:17 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 17:03:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 17:03:17 - SRCCONF=/dev/null TB --- 2012-10-20 17:03:17 - TARGET=i386 TB --- 2012-10-20 17:03:17 - TARGET_ARCH=i386 TB --- 2012-10-20 17:03:17 - TZ=UTC TB --- 2012-10-20 17:03:17 - __MAKE_CONF=/dev/null TB --- 2012-10-20 17:03:17 - cd /src TB --- 2012-10-20 17:03:17 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 17:03:25 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 18:52:59 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 18:52:59 - ERROR: failed to build world TB --- 2012-10-20 18:52:59 - 5098.80 user 649.05 system 6778.80 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 18:54:05 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C12B904; Sat, 20 Oct 2012 18:54:05 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 47A268FC08; Sat, 20 Oct 2012 18:54:05 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KIs4OC098999; Sat, 20 Oct 2012 14:54:04 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KIs4DW098996; Sat, 20 Oct 2012 18:54:04 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 18:54:04 GMT Message-Id: <201210201854.q9KIs4DW098996@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/pc98 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 18:54:05 -0000 TB --- 2012-10-20 17:00:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 17:00:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 17:00:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2012-10-20 17:00:00 - cleaning the object tree TB --- 2012-10-20 17:00:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 17:00:00 - cd /tinderbox/HEAD/i386/pc98 TB --- 2012-10-20 17:00:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 17:03:57 - /usr/local/bin/svn update /src TB --- 2012-10-20 17:04:11 - At svn revision 241785 TB --- 2012-10-20 17:04:12 - building world TB --- 2012-10-20 17:04:12 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 17:04:12 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 17:04:12 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 17:04:12 - SRCCONF=/dev/null TB --- 2012-10-20 17:04:12 - TARGET=pc98 TB --- 2012-10-20 17:04:12 - TARGET_ARCH=i386 TB --- 2012-10-20 17:04:12 - TZ=UTC TB --- 2012-10-20 17:04:12 - __MAKE_CONF=/dev/null TB --- 2012-10-20 17:04:12 - cd /src TB --- 2012-10-20 17:04:12 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 17:04:20 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 18:54:04 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 18:54:04 - ERROR: failed to build world TB --- 2012-10-20 18:54:04 - 5093.10 user 654.52 system 6843.69 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 18:55:32 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD9BBA55; Sat, 20 Oct 2012 18:55:32 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 692058FC08; Sat, 20 Oct 2012 18:55:32 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KItViR005706; Sat, 20 Oct 2012 14:55:31 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KItV56005704; Sat, 20 Oct 2012 18:55:31 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 18:55:31 GMT Message-Id: <201210201855.q9KItV56005704@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 18:55:32 -0000 TB --- 2012-10-20 17:00:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 17:00:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 17:00:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-10-20 17:00:00 - cleaning the object tree TB --- 2012-10-20 17:00:00 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 17:00:00 - cd /tinderbox/HEAD/amd64/amd64 TB --- 2012-10-20 17:00:00 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 17:03:05 - /usr/local/bin/svn update /src TB --- 2012-10-20 17:03:27 - At svn revision 241785 TB --- 2012-10-20 17:03:28 - building world TB --- 2012-10-20 17:03:28 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 17:03:28 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 17:03:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 17:03:28 - SRCCONF=/dev/null TB --- 2012-10-20 17:03:28 - TARGET=amd64 TB --- 2012-10-20 17:03:28 - TARGET_ARCH=amd64 TB --- 2012-10-20 17:03:28 - TZ=UTC TB --- 2012-10-20 17:03:28 - __MAKE_CONF=/dev/null TB --- 2012-10-20 17:03:28 - cd /src TB --- 2012-10-20 17:03:28 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 17:03:38 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 18:55:31 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 18:55:31 - ERROR: failed to build world TB --- 2012-10-20 18:55:31 - 5117.80 user 665.59 system 6930.85 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 18:57:09 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6FF7CBB1; Sat, 20 Oct 2012 18:57:09 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 24ED08FC0C; Sat, 20 Oct 2012 18:57:08 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KIv88K010320; Sat, 20 Oct 2012 14:57:08 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KIv8gu010319; Sat, 20 Oct 2012 18:57:08 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 18:57:08 GMT Message-Id: <201210201857.q9KIv8gu010319@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on mips/mips Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 18:57:09 -0000 TB --- 2012-10-20 18:20:37 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 18:20:37 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 18:20:37 - starting HEAD tinderbox run for mips/mips TB --- 2012-10-20 18:20:37 - cleaning the object tree TB --- 2012-10-20 18:21:01 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 18:21:01 - cd /tinderbox/HEAD/mips/mips TB --- 2012-10-20 18:21:01 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 18:21:33 - /usr/local/bin/svn update /src TB --- 2012-10-20 18:21:39 - At svn revision 241788 TB --- 2012-10-20 18:21:40 - building world TB --- 2012-10-20 18:21:40 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 18:21:40 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 18:21:40 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 18:21:40 - SRCCONF=/dev/null TB --- 2012-10-20 18:21:40 - TARGET=mips TB --- 2012-10-20 18:21:40 - TARGET_ARCH=mips TB --- 2012-10-20 18:21:40 - TZ=UTC TB --- 2012-10-20 18:21:40 - __MAKE_CONF=/dev/null TB --- 2012-10-20 18:21:40 - cd /src TB --- 2012-10-20 18:21:40 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 18:21:45 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 18:57:08 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 18:57:08 - ERROR: failed to build world TB --- 2012-10-20 18:57:08 - 1396.23 user 308.96 system 2190.82 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 19:34:24 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 12E91957; Sat, 20 Oct 2012 19:34:24 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id BC1438FC14; Sat, 20 Oct 2012 19:34:23 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KJYNne075076; Sat, 20 Oct 2012 15:34:23 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KJYHRB074752; Sat, 20 Oct 2012 19:34:17 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 19:34:17 GMT Message-Id: <201210201934.q9KJYHRB074752@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on mips64/mips Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 19:34:24 -0000 TB --- 2012-10-20 18:53:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 18:53:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 18:53:00 - starting HEAD tinderbox run for mips64/mips TB --- 2012-10-20 18:53:00 - cleaning the object tree TB --- 2012-10-20 18:56:32 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 18:56:32 - cd /tinderbox/HEAD/mips64/mips TB --- 2012-10-20 18:56:32 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 18:58:20 - /usr/local/bin/svn update /src TB --- 2012-10-20 18:58:30 - At svn revision 241788 TB --- 2012-10-20 18:58:31 - building world TB --- 2012-10-20 18:58:31 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 18:58:31 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 18:58:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 18:58:31 - SRCCONF=/dev/null TB --- 2012-10-20 18:58:31 - TARGET=mips TB --- 2012-10-20 18:58:31 - TARGET_ARCH=mips64 TB --- 2012-10-20 18:58:31 - TZ=UTC TB --- 2012-10-20 18:58:31 - __MAKE_CONF=/dev/null TB --- 2012-10-20 18:58:31 - cd /src TB --- 2012-10-20 18:58:31 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 18:58:39 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 19:34:17 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 19:34:17 - ERROR: failed to build world TB --- 2012-10-20 19:34:17 - 1381.45 user 328.12 system 2477.80 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips64-mips.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 19:37:27 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0BD65B34; Sat, 20 Oct 2012 19:37:27 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id A9C668FC0C; Sat, 20 Oct 2012 19:37:26 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KJbPZN090688; Sat, 20 Oct 2012 15:37:25 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KJbPBA090686; Sat, 20 Oct 2012 19:37:25 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 19:37:25 GMT Message-Id: <201210201937.q9KJbPBA090686@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 19:37:27 -0000 TB --- 2012-10-20 18:57:08 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 18:57:08 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 18:57:08 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-10-20 18:57:08 - cleaning the object tree TB --- 2012-10-20 19:00:55 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 19:00:55 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2012-10-20 19:00:55 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 19:01:50 - /usr/local/bin/svn update /src TB --- 2012-10-20 19:01:56 - At svn revision 241788 TB --- 2012-10-20 19:01:57 - building world TB --- 2012-10-20 19:01:57 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 19:01:57 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 19:01:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 19:01:57 - SRCCONF=/dev/null TB --- 2012-10-20 19:01:57 - TARGET=sparc64 TB --- 2012-10-20 19:01:57 - TARGET_ARCH=sparc64 TB --- 2012-10-20 19:01:57 - TZ=UTC TB --- 2012-10-20 19:01:57 - __MAKE_CONF=/dev/null TB --- 2012-10-20 19:01:57 - cd /src TB --- 2012-10-20 19:01:57 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 19:02:02 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 19:37:25 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 19:37:25 - ERROR: failed to build world TB --- 2012-10-20 19:37:25 - 1513.16 user 318.48 system 2417.23 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 20:39:15 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E5CE8D6; Sat, 20 Oct 2012 20:39:15 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 09DC58FC0C; Sat, 20 Oct 2012 20:39:14 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KKdDdY022975; Sat, 20 Oct 2012 16:39:13 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KKdDu1022963; Sat, 20 Oct 2012 20:39:13 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 20:39:13 GMT Message-Id: <201210202039.q9KKdDu1022963@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 20:39:15 -0000 TB --- 2012-10-20 18:54:04 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 18:54:04 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 18:54:04 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2012-10-20 18:54:04 - cleaning the object tree TB --- 2012-10-20 18:57:53 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 18:57:53 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2012-10-20 18:57:53 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 18:59:40 - /usr/local/bin/svn update /src TB --- 2012-10-20 18:59:48 - At svn revision 241788 TB --- 2012-10-20 18:59:49 - building world TB --- 2012-10-20 18:59:49 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 18:59:49 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 18:59:49 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 18:59:49 - SRCCONF=/dev/null TB --- 2012-10-20 18:59:49 - TARGET=powerpc TB --- 2012-10-20 18:59:49 - TARGET_ARCH=powerpc TB --- 2012-10-20 18:59:49 - TZ=UTC TB --- 2012-10-20 18:59:49 - __MAKE_CONF=/dev/null TB --- 2012-10-20 18:59:49 - cd /src TB --- 2012-10-20 18:59:49 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 18:59:55 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 20:39:13 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 20:39:13 - ERROR: failed to build world TB --- 2012-10-20 20:39:13 - 5053.73 user 591.18 system 6308.89 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 20:41:00 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F220A2D; Sat, 20 Oct 2012 20:41:00 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id DDCBB8FC0A; Sat, 20 Oct 2012 20:40:59 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KKexUB031288; Sat, 20 Oct 2012 16:40:59 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KKexrr031287; Sat, 20 Oct 2012 20:40:59 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 20:40:59 GMT Message-Id: <201210202040.q9KKexrr031287@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on powerpc64/powerpc Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 20:41:00 -0000 TB --- 2012-10-20 18:55:31 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 18:55:31 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 18:55:31 - starting HEAD tinderbox run for powerpc64/powerpc TB --- 2012-10-20 18:55:31 - cleaning the object tree TB --- 2012-10-20 18:59:40 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 18:59:40 - cd /tinderbox/HEAD/powerpc64/powerpc TB --- 2012-10-20 18:59:40 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 19:00:50 - /usr/local/bin/svn update /src TB --- 2012-10-20 19:00:57 - At svn revision 241788 TB --- 2012-10-20 19:00:58 - building world TB --- 2012-10-20 19:00:58 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 19:00:58 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 19:00:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 19:00:58 - SRCCONF=/dev/null TB --- 2012-10-20 19:00:58 - TARGET=powerpc TB --- 2012-10-20 19:00:58 - TARGET_ARCH=powerpc64 TB --- 2012-10-20 19:00:58 - TZ=UTC TB --- 2012-10-20 19:00:58 - __MAKE_CONF=/dev/null TB --- 2012-10-20 19:00:58 - cd /src TB --- 2012-10-20 19:00:58 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 19:01:05 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 20:40:59 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 20:40:59 - ERROR: failed to build world TB --- 2012-10-20 20:40:59 - 5124.03 user 598.24 system 6327.19 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc64-powerpc.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 21:28:59 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DEF562EC; Sat, 20 Oct 2012 21:28:59 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 9404F8FC16; Sat, 20 Oct 2012 21:28:59 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KLSw0j076834; Sat, 20 Oct 2012 17:28:58 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KLSwNb076826; Sat, 20 Oct 2012 21:28:58 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 21:28:58 GMT Message-Id: <201210202128.q9KLSwNb076826@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on arm/arm Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 21:28:59 -0000 TB --- 2012-10-20 20:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 20:50:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 20:50:00 - starting HEAD tinderbox run for arm/arm TB --- 2012-10-20 20:50:00 - cleaning the object tree TB --- 2012-10-20 20:52:32 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 20:52:32 - cd /tinderbox/HEAD/arm/arm TB --- 2012-10-20 20:52:32 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 20:55:46 - /usr/local/bin/svn update /src TB --- 2012-10-20 20:55:53 - At svn revision 241789 TB --- 2012-10-20 20:55:54 - building world TB --- 2012-10-20 20:55:54 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 20:55:54 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 20:55:54 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 20:55:54 - SRCCONF=/dev/null TB --- 2012-10-20 20:55:54 - TARGET=arm TB --- 2012-10-20 20:55:54 - TARGET_ARCH=arm TB --- 2012-10-20 20:55:54 - TZ=UTC TB --- 2012-10-20 20:55:54 - __MAKE_CONF=/dev/null TB --- 2012-10-20 20:55:54 - cd /src TB --- 2012-10-20 20:55:54 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 20:56:03 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 21:28:58 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 21:28:58 - ERROR: failed to build world TB --- 2012-10-20 21:28:58 - 1318.16 user 330.78 system 2337.86 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 22:12:42 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2336D4E; Sat, 20 Oct 2012 22:12:41 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id A07928FC0A; Sat, 20 Oct 2012 22:12:41 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KMCeIR096290; Sat, 20 Oct 2012 18:12:40 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KMCedV096289; Sat, 20 Oct 2012 22:12:40 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 22:12:40 GMT Message-Id: <201210202212.q9KMCedV096289@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on ia64/ia64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 22:12:42 -0000 TB --- 2012-10-20 21:28:59 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 21:28:59 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 21:28:59 - starting HEAD tinderbox run for ia64/ia64 TB --- 2012-10-20 21:28:59 - cleaning the object tree TB --- 2012-10-20 21:29:23 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 21:29:23 - cd /tinderbox/HEAD/ia64/ia64 TB --- 2012-10-20 21:29:23 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 21:29:47 - /usr/local/bin/svn update /src TB --- 2012-10-20 21:29:52 - At svn revision 241789 TB --- 2012-10-20 21:29:53 - building world TB --- 2012-10-20 21:29:53 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 21:29:53 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 21:29:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 21:29:53 - SRCCONF=/dev/null TB --- 2012-10-20 21:29:53 - TARGET=ia64 TB --- 2012-10-20 21:29:53 - TARGET_ARCH=ia64 TB --- 2012-10-20 21:29:53 - TZ=UTC TB --- 2012-10-20 21:29:53 - __MAKE_CONF=/dev/null TB --- 2012-10-20 21:29:53 - cd /src TB --- 2012-10-20 21:29:53 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 21:29:59 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 22:12:40 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 22:12:40 - ERROR: failed to build world TB --- 2012-10-20 22:12:40 - 1914.87 user 330.01 system 2621.57 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-ia64-ia64.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 22:47:38 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4DF20373; Sat, 20 Oct 2012 22:47:38 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id F3BE88FC16; Sat, 20 Oct 2012 22:47:37 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KMlbfc001118; Sat, 20 Oct 2012 18:47:37 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KMlbKK001114; Sat, 20 Oct 2012 22:47:37 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 22:47:37 GMT Message-Id: <201210202247.q9KMlbKK001114@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/i386 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 22:47:38 -0000 TB --- 2012-10-20 20:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 20:50:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 20:50:00 - starting HEAD tinderbox run for i386/i386 TB --- 2012-10-20 20:50:00 - cleaning the object tree TB --- 2012-10-20 20:52:53 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 20:52:53 - cd /tinderbox/HEAD/i386/i386 TB --- 2012-10-20 20:52:53 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 20:56:26 - /usr/local/bin/svn update /src TB --- 2012-10-20 20:56:33 - At svn revision 241789 TB --- 2012-10-20 20:56:34 - building world TB --- 2012-10-20 20:56:34 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 20:56:34 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 20:56:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 20:56:34 - SRCCONF=/dev/null TB --- 2012-10-20 20:56:34 - TARGET=i386 TB --- 2012-10-20 20:56:34 - TARGET_ARCH=i386 TB --- 2012-10-20 20:56:34 - TZ=UTC TB --- 2012-10-20 20:56:34 - __MAKE_CONF=/dev/null TB --- 2012-10-20 20:56:34 - cd /src TB --- 2012-10-20 20:56:34 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 20:56:40 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 22:47:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 22:47:37 - ERROR: failed to build world TB --- 2012-10-20 22:47:37 - 5097.86 user 660.16 system 7056.32 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-i386.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 22:47:45 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F35DC37C; Sat, 20 Oct 2012 22:47:44 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 9BDE28FC08; Sat, 20 Oct 2012 22:47:44 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KMlibn001531; Sat, 20 Oct 2012 18:47:44 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KMlhIr001529; Sat, 20 Oct 2012 22:47:43 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 22:47:43 GMT Message-Id: <201210202247.q9KMlhIr001529@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on i386/pc98 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 22:47:45 -0000 TB --- 2012-10-20 20:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 20:50:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 20:50:00 - starting HEAD tinderbox run for i386/pc98 TB --- 2012-10-20 20:50:00 - cleaning the object tree TB --- 2012-10-20 20:52:55 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 20:52:55 - cd /tinderbox/HEAD/i386/pc98 TB --- 2012-10-20 20:52:55 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 20:56:26 - /usr/local/bin/svn update /src TB --- 2012-10-20 20:56:34 - At svn revision 241789 TB --- 2012-10-20 20:56:35 - building world TB --- 2012-10-20 20:56:35 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 20:56:35 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 20:56:35 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 20:56:35 - SRCCONF=/dev/null TB --- 2012-10-20 20:56:35 - TARGET=pc98 TB --- 2012-10-20 20:56:35 - TARGET_ARCH=i386 TB --- 2012-10-20 20:56:35 - TZ=UTC TB --- 2012-10-20 20:56:35 - __MAKE_CONF=/dev/null TB --- 2012-10-20 20:56:35 - cd /src TB --- 2012-10-20 20:56:35 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 20:56:40 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 22:47:43 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 22:47:43 - ERROR: failed to build world TB --- 2012-10-20 22:47:43 - 5097.04 user 659.70 system 7063.05 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-i386-pc98.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 22:49:07 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48ACB620; Sat, 20 Oct 2012 22:49:07 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E8D118FC1A; Sat, 20 Oct 2012 22:49:06 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KMn6Iq006067; Sat, 20 Oct 2012 18:49:06 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KMn63O006054; Sat, 20 Oct 2012 22:49:06 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 22:49:06 GMT Message-Id: <201210202249.q9KMn63O006054@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on amd64/amd64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 22:49:07 -0000 TB --- 2012-10-20 20:50:00 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 20:50:00 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 20:50:00 - starting HEAD tinderbox run for amd64/amd64 TB --- 2012-10-20 20:50:00 - cleaning the object tree TB --- 2012-10-20 20:52:49 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 20:52:49 - cd /tinderbox/HEAD/amd64/amd64 TB --- 2012-10-20 20:52:49 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 20:56:24 - /usr/local/bin/svn update /src TB --- 2012-10-20 20:56:30 - At svn revision 241789 TB --- 2012-10-20 20:56:31 - building world TB --- 2012-10-20 20:56:31 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 20:56:31 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 20:56:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 20:56:31 - SRCCONF=/dev/null TB --- 2012-10-20 20:56:31 - TARGET=amd64 TB --- 2012-10-20 20:56:31 - TARGET_ARCH=amd64 TB --- 2012-10-20 20:56:31 - TZ=UTC TB --- 2012-10-20 20:56:31 - __MAKE_CONF=/dev/null TB --- 2012-10-20 20:56:31 - cd /src TB --- 2012-10-20 20:56:31 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 20:56:36 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 22:49:06 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 22:49:06 - ERROR: failed to build world TB --- 2012-10-20 22:49:06 - 5126.84 user 665.69 system 7145.20 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-amd64-amd64.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 22:49:29 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CABCD775; Sat, 20 Oct 2012 22:49:29 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 750788FC12; Sat, 20 Oct 2012 22:49:29 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KMnSlF007666; Sat, 20 Oct 2012 18:49:28 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KMnS5F007665; Sat, 20 Oct 2012 22:49:28 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 22:49:28 GMT Message-Id: <201210202249.q9KMnS5F007665@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on mips/mips Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 22:49:30 -0000 TB --- 2012-10-20 22:12:40 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 22:12:40 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 22:12:40 - starting HEAD tinderbox run for mips/mips TB --- 2012-10-20 22:12:40 - cleaning the object tree TB --- 2012-10-20 22:13:12 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 22:13:12 - cd /tinderbox/HEAD/mips/mips TB --- 2012-10-20 22:13:12 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 22:13:41 - /usr/local/bin/svn update /src TB --- 2012-10-20 22:13:47 - At svn revision 241789 TB --- 2012-10-20 22:13:48 - building world TB --- 2012-10-20 22:13:48 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 22:13:48 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 22:13:48 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 22:13:48 - SRCCONF=/dev/null TB --- 2012-10-20 22:13:48 - TARGET=mips TB --- 2012-10-20 22:13:48 - TARGET_ARCH=mips TB --- 2012-10-20 22:13:48 - TZ=UTC TB --- 2012-10-20 22:13:48 - __MAKE_CONF=/dev/null TB --- 2012-10-20 22:13:48 - cd /src TB --- 2012-10-20 22:13:48 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 22:13:53 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 22:49:28 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 22:49:28 - ERROR: failed to build world TB --- 2012-10-20 22:49:28 - 1394.59 user 313.40 system 2207.97 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips-mips.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 23:29:16 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 43FE8EA5; Sat, 20 Oct 2012 23:29:16 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id ED2648FC08; Sat, 20 Oct 2012 23:29:15 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KNTEgR074553; Sat, 20 Oct 2012 19:29:14 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KNTE7X074540; Sat, 20 Oct 2012 23:29:14 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 23:29:14 GMT Message-Id: <201210202329.q9KNTE7X074540@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on mips64/mips Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 23:29:16 -0000 TB --- 2012-10-20 22:47:37 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 22:47:37 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 22:47:37 - starting HEAD tinderbox run for mips64/mips TB --- 2012-10-20 22:47:37 - cleaning the object tree TB --- 2012-10-20 22:50:48 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 22:50:48 - cd /tinderbox/HEAD/mips64/mips TB --- 2012-10-20 22:50:48 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 22:52:50 - /usr/local/bin/svn update /src TB --- 2012-10-20 22:52:57 - At svn revision 241790 TB --- 2012-10-20 22:52:58 - building world TB --- 2012-10-20 22:52:58 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 22:52:58 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 22:52:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 22:52:58 - SRCCONF=/dev/null TB --- 2012-10-20 22:52:58 - TARGET=mips TB --- 2012-10-20 22:52:58 - TARGET_ARCH=mips64 TB --- 2012-10-20 22:52:58 - TZ=UTC TB --- 2012-10-20 22:52:58 - __MAKE_CONF=/dev/null TB --- 2012-10-20 22:52:58 - cd /src TB --- 2012-10-20 22:52:58 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 22:53:06 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 23:29:14 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 23:29:14 - ERROR: failed to build world TB --- 2012-10-20 23:29:14 - 1384.54 user 324.95 system 2497.04 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-mips64-mips.full From owner-freebsd-current@FreeBSD.ORG Sat Oct 20 23:31:45 2012 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9CC1AFF6; Sat, 20 Oct 2012 23:31:45 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 4AE808FC1B; Sat, 20 Oct 2012 23:31:45 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id q9KNViuk087622; Sat, 20 Oct 2012 19:31:44 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id q9KNVipW087620; Sat, 20 Oct 2012 23:31:44 GMT (envelope-from tinderbox@freebsd.org) Date: Sat, 20 Oct 2012 23:31:44 GMT Message-Id: <201210202331.q9KNVipW087620@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Oct 2012 23:31:45 -0000 TB --- 2012-10-20 22:49:29 - tinderbox 2.9 running on freebsd-current.sentex.ca TB --- 2012-10-20 22:49:29 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2012-10-20 22:49:29 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2012-10-20 22:49:29 - cleaning the object tree TB --- 2012-10-20 22:53:06 - checking out /src from svn://svn.freebsd.org/base/head TB --- 2012-10-20 22:53:06 - cd /tinderbox/HEAD/sparc64/sparc64 TB --- 2012-10-20 22:53:06 - /usr/local/bin/svn cleanup /src TB --- 2012-10-20 22:55:10 - /usr/local/bin/svn update /src TB --- 2012-10-20 22:55:16 - At svn revision 241790 TB --- 2012-10-20 22:55:17 - building world TB --- 2012-10-20 22:55:17 - CROSS_BUILD_TESTING=YES TB --- 2012-10-20 22:55:17 - MAKEOBJDIRPREFIX=/obj TB --- 2012-10-20 22:55:17 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2012-10-20 22:55:17 - SRCCONF=/dev/null TB --- 2012-10-20 22:55:17 - TARGET=sparc64 TB --- 2012-10-20 22:55:17 - TARGET_ARCH=sparc64 TB --- 2012-10-20 22:55:17 - TZ=UTC TB --- 2012-10-20 22:55:17 - __MAKE_CONF=/dev/null TB --- 2012-10-20 22:55:17 - cd /src TB --- 2012-10-20 22:55:17 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Sat Oct 20 22:55:22 UTC 2012 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] ===> usr.bin/m4 (depend) yacc -d -o parser.c /src/usr.bin/m4/parser.y lex -t /src/usr.bin/m4/tokenizer.l > tokenizer.c rm -f .depend mkdep -f .depend -a -DEXTENDED -I/src/usr.bin/m4/lib -std=gnu99 /src/usr.bin/m4/eval.c /src/usr.bin/m4/expr.c /src/usr.bin/m4/look.c /src/usr.bin/m4/main.c /src/usr.bin/m4/misc.c /src/usr.bin/m4/gnum4.c /src/usr.bin/m4/trace.c parser.c tokenizer.c /src/usr.bin/m4/lib/ohash_create_entry.c /src/usr.bin/m4/lib/ohash_delete.c /src/usr.bin/m4/lib/ohash_do.c /src/usr.bin/m4/lib/ohash_entries.c /src/usr.bin/m4/lib/ohash_enum.c /src/usr.bin/m4/lib/ohash_init.c /src/usr.bin/m4/lib/ohash_interval.c /src/usr.bin/m4/lib/ohash_lookup_interval.c /src/usr.bin/m4/lib/ohash_lookup_memory.c /src/usr.bin/m4/lib/ohash_qlookup.c /src/usr.bin/m4/lib/ohash_qlookupi.c /src/usr.bin/m4/parser.y:26:18: error: mdef.h: No such file or directory /src/usr.bin/m4/parser.y:27:20: error: extern.h: No such file or directory mkdep: compile failed *** [.depend] Error code 1 Stop in /src/usr.bin/m4. *** [depend] Error code 1 Stop in /src/usr.bin. *** [usr.bin.depend__D] Error code 1 Stop in /src. *** [_depend] Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2012-10-20 23:31:44 - WARNING: /usr/bin/make returned exit code 1 TB --- 2012-10-20 23:31:44 - ERROR: failed to build world TB --- 2012-10-20 23:31:44 - 1516.52 user 318.59 system 2535.42 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-sparc64-sparc64.full