Re: PACKAGESITE spam

2013-12-26 Thread Peter Jeremy
On 2013-Dec-22 11:53:17 -0800, Darren Pilgrim list_free...@bluerosetech.com 
wrote:
Because of that deinstall log.  When you use `pkg install` to upgrade a 
port, you get something like this:

Jul 10 23:06:40 chombo pkg-static: ca_root_nss-3.15.1 installed
Nov 29 15:04:52 chombo pkg: ca_root_nss reinstalled: 3.15.2_1

That information does not exist in the pkg database.

I agree that's a serious bug/regression in the pkg database: With the
old pkg system, I could tell when a port was installed by looking at
the timestamps on the +COMMENT file.  The install time is needed to
answer questions like does this entry in UPDATING affect me (ie have
I rebuilt the port since the entry date).  It's something I used
regularly and its absence is a PITA.

I shouldn't need to rummage through /var/log/messages - and in any case,
by default FreeBSD only keeps 500K of messages history (about a month
in my case) so the information has probably rotated into the bit bucket.

I agree that having a pkg audit trail would be useful.  Unfortunately,
what we have today is not an audit trail and isn't especially useful.

-- 
Peter Jeremy


pgpVS_m9BxiAC.pgp
Description: PGP signature


Re: PACKAGESITE spam

2013-12-26 Thread Baptiste Daroussin
On Thu, Dec 26, 2013 at 10:16:44PM +1100, Peter Jeremy wrote:
 On 2013-Dec-22 11:53:17 -0800, Darren Pilgrim list_free...@bluerosetech.com 
 wrote:
 Because of that deinstall log.  When you use `pkg install` to upgrade a 
 port, you get something like this:
 
 Jul 10 23:06:40 chombo pkg-static: ca_root_nss-3.15.1 installed
 Nov 29 15:04:52 chombo pkg: ca_root_nss reinstalled: 3.15.2_1
 
 That information does not exist in the pkg database.
 
 I agree that's a serious bug/regression in the pkg database: With the
 old pkg system, I could tell when a port was installed by looking at
 the timestamps on the +COMMENT file.  The install time is needed to
 answer questions like does this entry in UPDATING affect me (ie have
 I rebuilt the port since the entry date).  It's something I used
 regularly and its absence is a PITA.

You can still query from the package database about the installation time.

With the ancient system you had no way to determine if something was reinstalled
You add no way to determine if it was an upgrade 
You add no way to fihure out what something was removed.

 
 I shouldn't need to rummage through /var/log/messages - and in any case,
 by default FreeBSD only keeps 500K of messages history (about a month
 in my case) so the information has probably rotated into the bit bucket.
 
 I agree that having a pkg audit trail would be useful.  Unfortunately,
 what we have today is not an audit trail and isn't especially useful.

it is an audit trail, it is very useful in lots of cases as I spotted before,
and it is also mandatory for some security certification in that form precisely.

You want other cases, here is 2 others very very usual cases?
Determine what has been done when managing a farm of servers with
puppet,cfengine,salt,anssible and friens.
Determine what has been done when you have multiple admins on your servers

regards,
Bapt


pgpKZRI3knk4r.pgp
Description: PGP signature


latest openjdk7 triggers kernel panic

2013-12-26 Thread Andriy Gapon

I am running FreeBSD based on the head from a few weeks ago, amd64.

It seems that after a recent upgrade of openjdk7 I consistently get a kernel
panic when a java process starts:

panic: Bad entry start/end for new stack entry
KDB: stack backtrace:
db_trace_self_wrapper() at 0x803adc9b = db_trace_self_wrapper+0x2b/frame
0xfe02ba6fe6e0
kdb_backtrace() at 0x805cbd79 = kdb_backtrace+0x39/frame 
0xfe02ba6fe790
panic() at 0x80597733 = panic+0x1a3/frame 0xfe02ba6fe810
vm_map_stack() at 0x80719f2e = vm_map_stack+0x3ce/frame 
0xfe02ba6fe8a0
vm_mmap() at 0x8071c270 = vm_mmap+0x520/frame 0xfe02ba6fea30
sys_mmap() at 0x8071bad3 = sys_mmap+0x303/frame 0xfe02ba6feaf0
amd64_syscall() at 0x8074d0c8 = amd64_syscall+0x238/frame 
0xfe02ba6febf0
Xfast_syscall() at 0x80733e2b = Xfast_syscall+0xfb/frame 
0xfe02ba6febf0

Specifically, new_entry-end != top condition is true.
new_entry-end is consistently greater than top by 3 pages.

I suspect that java now does some hacky things with its stack and I suspect that
vm_map_simplify_entry() call at the end of vm_map_insert() could be to blame.
Although, the call is guarded by a check:

1290 /*
1291  * It may be possible to merge the new entry with the next and/or
1292  * previous entries.  However, due to MAP_STACK_* being a hack, a
1293  * panic can result from merging such entries.
1294  */
1295 if ((cow  (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0)
1296 vm_map_simplify_entry(map, new_entry);

But that check seems to be defeated by the fact that vm_map_stack() clears our
the relevant bits after saving them locally:

3335 /*
3336  * The stack orientation is piggybacked with the cow argument.
3337  * Extract it into orient and mask the cow argument so that we
3338  * don't pass it around further.
3339  * NOTE: We explicitly allow bi-directional stacks.
3340  */
3341 orient = cow  (MAP_STACK_GROWS_DOWN|MAP_STACK_GROWS_UP);
3342 cow = ~orient;

-- 
Andriy Gapon
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Re: latest openjdk7 triggers kernel panic

2013-12-26 Thread Konstantin Belousov
On Thu, Dec 26, 2013 at 02:04:17PM +0200, Andriy Gapon wrote:
 
 I am running FreeBSD based on the head from a few weeks ago, amd64.
 
 It seems that after a recent upgrade of openjdk7 I consistently get a kernel
 panic when a java process starts:
 
 panic: Bad entry start/end for new stack entry
 KDB: stack backtrace:
 db_trace_self_wrapper() at 0x803adc9b = 
 db_trace_self_wrapper+0x2b/frame
 0xfe02ba6fe6e0
 kdb_backtrace() at 0x805cbd79 = kdb_backtrace+0x39/frame 
 0xfe02ba6fe790
 panic() at 0x80597733 = panic+0x1a3/frame 0xfe02ba6fe810
 vm_map_stack() at 0x80719f2e = vm_map_stack+0x3ce/frame 
 0xfe02ba6fe8a0
 vm_mmap() at 0x8071c270 = vm_mmap+0x520/frame 0xfe02ba6fea30
 sys_mmap() at 0x8071bad3 = sys_mmap+0x303/frame 0xfe02ba6feaf0
 amd64_syscall() at 0x8074d0c8 = amd64_syscall+0x238/frame 
 0xfe02ba6febf0
 Xfast_syscall() at 0x80733e2b = Xfast_syscall+0xfb/frame 
 0xfe02ba6febf0
 
 Specifically, new_entry-end != top condition is true.
 new_entry-end is consistently greater than top by 3 pages.
 
 I suspect that java now does some hacky things with its stack and I suspect 
 that
 vm_map_simplify_entry() call at the end of vm_map_insert() could be to blame.
 Although, the call is guarded by a check:
 
 1290 /*
 1291  * It may be possible to merge the new entry with the next and/or
 1292  * previous entries.  However, due to MAP_STACK_* being a hack, a
 1293  * panic can result from merging such entries.
 1294  */
 1295 if ((cow  (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0)
 1296 vm_map_simplify_entry(map, new_entry);
 
 But that check seems to be defeated by the fact that vm_map_stack() clears our
 the relevant bits after saving them locally:
 
 3335 /*
 3336  * The stack orientation is piggybacked with the cow argument.
 3337  * Extract it into orient and mask the cow argument so that we
 3338  * don't pass it around further.
 3339  * NOTE: We explicitly allow bi-directional stacks.
 3340  */
 3341 orient = cow  (MAP_STACK_GROWS_DOWN|MAP_STACK_GROWS_UP);
 3342 cow = ~orient;
 

I provided the following patch yesterday to Peter, after the similar mail.

diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index e3842a3..51b60de 100644
--- a/sys/vm/vm_map.c
+++ b/sys/vm/vm_map.c
@@ -1207,6 +1207,7 @@ charged:
}
else if ((prev_entry != map-header) 
 (prev_entry-eflags == protoeflags) 
+(cow  (MAP_ENTRY_GROWS_DOWN | MAP_ENTRY_GROWS_UP)) == 0 
 (prev_entry-end == start) 
 (prev_entry-wired_count == 0) 
 (prev_entry-cred == cred ||

But there were no core dump available, and I think that your note is also
valid.  I do not see why cow should be cleared from the stack direction
bits.

diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index e3842a3..e15e0ca 100644
--- a/sys/vm/vm_map.c
+++ b/sys/vm/vm_map.c
@@ -3339,7 +3340,6 @@ vm_map_stack(vm_map_t map, vm_offset_t addrbos, vm_size_t 
max_ssize,
 * NOTE: We explicitly allow bi-directional stacks.
 */
orient = cow  (MAP_STACK_GROWS_DOWN|MAP_STACK_GROWS_UP);
-   cow = ~orient;
KASSERT(orient != 0, (No stack grow direction));
 
if (addrbos  vm_map_min(map) ||


pgpkJ6IIW8_zM.pgp
Description: PGP signature


Re: latest openjdk7 triggers kernel panic

2013-12-26 Thread Andriy Gapon
on 26/12/2013 16:05 Konstantin Belousov said the following:
 I provided the following patch yesterday to Peter, after the similar mail.
 
 diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
 index e3842a3..51b60de 100644
 --- a/sys/vm/vm_map.c
 +++ b/sys/vm/vm_map.c
 @@ -1207,6 +1207,7 @@ charged:
   }
   else if ((prev_entry != map-header) 
(prev_entry-eflags == protoeflags) 
 +  (cow  (MAP_ENTRY_GROWS_DOWN | MAP_ENTRY_GROWS_UP)) == 0 
(prev_entry-end == start) 
(prev_entry-wired_count == 0) 
(prev_entry-cred == cred ||
 
 But there were no core dump available, and I think that your note is also
 valid.  I do not see why cow should be cleared from the stack direction
 bits.
 
 diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
 index e3842a3..e15e0ca 100644
 --- a/sys/vm/vm_map.c
 +++ b/sys/vm/vm_map.c
 @@ -3339,7 +3340,6 @@ vm_map_stack(vm_map_t map, vm_offset_t addrbos, 
 vm_size_t max_ssize,
* NOTE: We explicitly allow bi-directional stacks.
*/
   orient = cow  (MAP_STACK_GROWS_DOWN|MAP_STACK_GROWS_UP);
 - cow = ~orient;
   KASSERT(orient != 0, (No stack grow direction));
  
   if (addrbos  vm_map_min(map) ||
 

I can confirm that the patch fixes the problem for me.
Thanks!

-- 
Andriy Gapon
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: latest openjdk7 triggers kernel panic

2013-12-26 Thread Antoine Brodin
On Thu, Dec 26, 2013 at 1:04 PM, Andriy Gapon a...@freebsd.org wrote:

 I am running FreeBSD based on the head from a few weeks ago, amd64.

 It seems that after a recent upgrade of openjdk7 I consistently get a kernel
 panic when a java process starts:

 panic: Bad entry start/end for new stack entry
 KDB: stack backtrace:
 db_trace_self_wrapper() at 0x803adc9b = 
 db_trace_self_wrapper+0x2b/frame
 0xfe02ba6fe6e0
 kdb_backtrace() at 0x805cbd79 = kdb_backtrace+0x39/frame 
 0xfe02ba6fe790
 panic() at 0x80597733 = panic+0x1a3/frame 0xfe02ba6fe810
 vm_map_stack() at 0x80719f2e = vm_map_stack+0x3ce/frame 
 0xfe02ba6fe8a0
 vm_mmap() at 0x8071c270 = vm_mmap+0x520/frame 0xfe02ba6fea30
 sys_mmap() at 0x8071bad3 = sys_mmap+0x303/frame 0xfe02ba6feaf0
 amd64_syscall() at 0x8074d0c8 = amd64_syscall+0x238/frame 
 0xfe02ba6febf0
 Xfast_syscall() at 0x80733e2b = Xfast_syscall+0xfb/frame 
 0xfe02ba6febf0

 Specifically, new_entry-end != top condition is true.
 new_entry-end is consistently greater than top by 3 pages.

 I suspect that java now does some hacky things with its stack and I suspect 
 that
 vm_map_simplify_entry() call at the end of vm_map_insert() could be to blame.
 Although, the call is guarded by a check:

 1290 /*
 1291  * It may be possible to merge the new entry with the next and/or
 1292  * previous entries.  However, due to MAP_STACK_* being a hack, a
 1293  * panic can result from merging such entries.
 1294  */
 1295 if ((cow  (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP)) == 0)
 1296 vm_map_simplify_entry(map, new_entry);

 But that check seems to be defeated by the fact that vm_map_stack() clears our
 the relevant bits after saving them locally:

 3335 /*
 3336  * The stack orientation is piggybacked with the cow argument.
 3337  * Extract it into orient and mask the cow argument so that we
 3338  * don't pass it around further.
 3339  * NOTE: We explicitly allow bi-directional stacks.
 3340  */
 3341 orient = cow  (MAP_STACK_GROWS_DOWN|MAP_STACK_GROWS_UP);
 3342 cow = ~orient;


Hello,

FWIW,  I had a similar panic today on 9.2-RELEASE with a GENERIC kernel:
panic: Bad entry start/end for new stack entry
cpuid = 1
KDB: stack backtrace:
#0 0x80947986 at kdb_backtrace+0x66
#1 0x8090d9ae at panic+0x1ce
#2 0x80b81314 at vm_map_stack+0x274
#3 0x80b83584 at vm_mmap+0x674
#4 0x80b83d2f at sys_mmap+0x1cf
#5 0x80cf187a at amd64_syscall+0x5ea
#6 0x80cdbff7 at Xfast_syscall+0xf7

It looks like the box was compiling java related ports (java/jaxen and
devel/antlr) when it panic'ed.

Cheers,

Antoine
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


FreeBSD 10.0-RC3 Now Available

2013-12-26 Thread Glen Barber
The third RC build of the 10.0-RELEASE release cycle is now available
on the FTP servers for the amd64, i386, ia64, powerpc, powerpc64 and
sparc64 architectures.

The image checksums follow at the end of this email.

ISO images and, for architectures that support it, the memory stick images
are available here (or any of the FreeBSD mirror sites):

ftp://ftp.freebsd.org/pub/FreeBSD/releases/ISO-IMAGES/10.0/

If you notice problems you can report them through the normal GNATS PR
system or here on the -stable mailing list.

If you would like to use SVN to do a source based update of an existing
system, use the releng/10.0 branch.

Important note to freebsd-update(8) users:  Please be sure to follow the
instructions in the following FreeBSD Errata Notices before upgrading
the system to 10.0-RC3:

  - EN-13:04.freebsd-update:

http://www.freebsd.org/security/advisories/FreeBSD-EN-13:04.freebsd-update.asc

  - EN-13:05.freebsd-update:

http://www.freebsd.org/security/advisories/FreeBSD-EN-13:05.freebsd-update.asc

Pre-installed virtual machine images for 10.0-RC3 are also available
for amd64 and i386 architectures.

The images are located under the 'snapshots' directory on FTP, here:

ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/VM-IMAGES/10.0-RC3/

The disk images are available in both QCOW2, VHD, and VMDK format.  The
image download size is approximately 135 MB, which decompress to a 20GB
sparse image.

The partition layout is:

- 512k - freebsd-boot GPT partition type (bootfs GPT label)
- 1GB  - freebsd-swap GPT partition type (swapfs GPT label)
- ~17GB - freebsd-ufs GPT partition type (rootfs GPT label)

Changes between -RC2 and -RC3 include:

 - Several minor bugfixes and functionality enhancements to bhyve.
 - Add new sysctl, kern.supported_archs, containing the list of
   FreeBSD MACHINE_ARCH values whose binaries this kernel can run.
 - Add a pkg(8) repository configuration file for cdrom-based package
   installation.
 - Implement a fix to allow bsdconfig(8) to be able to install
   packages included on the DVD.
 - Fix pkg(8) multi-repository support by properly respecting 'enabled'
   flag.
 - Fix Xen build without INET.
 - Several bugfixes to bsdinstall(8).
 - Fix a ZFS-related panic triggered by an incorrect assertion.
 - Fix mountroot prompt eating most of the characters by not enabling
   RXRDY interrupts in the attach routine.
 - Fix a regression in ng_ksocket(4).
 - Apply patch from upstream Heimdal for encoding fix

The freebsd-update(8) utility supports binary upgrades of amd64 and i386
systems running earlier FreeBSD releases.  Systems running earlier
FreeBSD releases can upgrade as follows:

# freebsd-update upgrade -r 10.0-RC3

During this process, freebsd-update(8) may ask the user to help by
merging some configuration files or by confirming that the automatically
performed merging was done correctly.

# freebsd-update install

The system must be rebooted with the newly installed kernel before
continuing.

# shutdown -r now

After rebooting, freebsd-update needs to be run again to install the new
userland components:

# freebsd-update install

It is recommended to rebuild and install all applications if possible,
especially if upgrading from an earlier FreeBSD release, for example,
FreeBSD 9.x.  Alternatively, the user can install misc/compat9x and
other compatibility libraries, afterwards the system must be rebooted
into the new userland:

# shutdown -r now

Finally, after rebooting, freebsd-update needs to be run again to remove
stale files:

# freebsd-update install


== ISO CHECKSUMS ==

- 10.0-RC3 amd64:
SHA256 (FreeBSD-10.0-RC3-amd64-bootonly.iso) = 
a446af2ca4da7b5a5f7513f025fc5727abf0dac051540b1f04596223700e60cd
SHA256 (FreeBSD-10.0-RC3-amd64-disc1.iso) = 
a4b16d3e4e04f1dbb9184fdbe18d6587124a6ea2a1794f79122d57373865ab6b
SHA256 (FreeBSD-10.0-RC3-amd64-dvd1.iso) = 
ce4edab5d5b485f6478e6171c1de64e9b337109256c5eb5257aceccd78224255
SHA256 (FreeBSD-10.0-RC3-amd64-memstick.img) = 
642ff8ad66ead06b18bcf171be79f3f42e6c36bbe0b741c6d98d32a89fb6724a

MD5 (FreeBSD-10.0-RC3-amd64-bootonly.iso) = 
584745fc67ca974c146065aa3b3a9a94
MD5 (FreeBSD-10.0-RC3-amd64-disc1.iso) = 
fc93de26dc0b2ca1e88cc2fcda18ec05
MD5 (FreeBSD-10.0-RC3-amd64-dvd1.iso) = ed93640aca43b484697d203c7b6f0ab3
MD5 (FreeBSD-10.0-RC3-amd64-memstick.img) = 
416ca9f9973e405afba58c11a90c6d7a


- 10.0-RC3 i386:
SHA256 (FreeBSD-10.0-RC3-i386-bootonly.iso) = 
1c191afa34e4a8119362c7b08b4e6265fcb0017afd508b060c49de7bcbd5ece3
SHA256 (FreeBSD-10.0-RC3-i386-disc1.iso) = 
2d03929465da9042a5424cf97577c4811500a0df4a454631a2aaef41350fe211
SHA256 (FreeBSD-10.0-RC3-i386-dvd1.iso) = 
517aced324eac22fe6e65716d63b6d112c0fbac33c243ff327f97e7b6b7cd584
SHA256 (FreeBSD-10.0-RC3-i386-memstick.img) = 
d4edc43daf0026d2914f8960a81a2511d8cf8a99c7b8537a7354dfce5066f4ab

MD5 (FreeBSD-10.0-RC3-i386-bootonly.iso) = 

Re: latest openjdk7 triggers kernel panic

2013-12-26 Thread O. Hartmann
On Thu, 26 Dec 2013 14:04:17 +0200
Andriy Gapon a...@freebsd.org wrote:

 
 I am running FreeBSD based on the head from a few weeks ago, amd64.
 
 It seems that after a recent upgrade of openjdk7 I consistently get a
 kernel panic when a java process starts:
 
 panic: Bad entry start/end for new stack entry
 KDB: stack backtrace:
 db_trace_self_wrapper() at 0x803adc9b =
 db_trace_self_wrapper+0x2b/frame 0xfe02ba6fe6e0
 kdb_backtrace() at 0x805cbd79 = kdb_backtrace+0x39/frame
 0xfe02ba6fe790 panic() at 0x80597733 = panic+0x1a3/frame
 0xfe02ba6fe810 vm_map_stack() at 0x80719f2e =
 vm_map_stack+0x3ce/frame 0xfe02ba6fe8a0 vm_mmap() at
 0x8071c270 = vm_mmap+0x520/frame 0xfe02ba6fea30
 sys_mmap() at 0x8071bad3 = sys_mmap+0x303/frame
 0xfe02ba6feaf0 amd64_syscall() at 0x8074d0c8 =
 amd64_syscall+0x238/frame 0xfe02ba6febf0 Xfast_syscall() at
 0x80733e2b = Xfast_syscall+0xfb/frame 0xfe02ba6febf0
 
 Specifically, new_entry-end != top condition is true.
 new_entry-end is consistently greater than top by 3 pages.
 
 I suspect that java now does some hacky things with its stack and I
 suspect that vm_map_simplify_entry() call at the end of
 vm_map_insert() could be to blame. Although, the call is guarded by a
 check:
 
 1290 /*
 1291  * It may be possible to merge the new entry with the
 next and/or 1292  * previous entries.  However, due to
 MAP_STACK_* being a hack, a 1293  * panic can result from
 merging such entries. 1294  */
 1295 if ((cow  (MAP_STACK_GROWS_DOWN | MAP_STACK_GROWS_UP))
 == 0) 1296 vm_map_simplify_entry(map, new_entry);
 
 But that check seems to be defeated by the fact that vm_map_stack()
 clears our the relevant bits after saving them locally:
 
 3335 /*
 3336  * The stack orientation is piggybacked with the cow
 argument. 3337  * Extract it into orient and mask the cow
 argument so that we 3338  * don't pass it around further.
 3339  * NOTE: We explicitly allow bi-directional stacks.
 3340  */
 3341 orient = cow  (MAP_STACK_GROWS_DOWN|MAP_STACK_GROWS_UP);
 3342 cow = ~orient;
 


I see a similar situation on FreeBSD 11.0-CURRENT #3 r259845: Tue Dec
24 23:40:13 CET 2013 amd64

The crash can be easily triggered by starting any JAVA application (I'm
running lates java/openjdk6 from ports).

The problem also occurs when loading very large images in firefox
(/www/firefox, lates from ports, I looked at some Hubble Space
Telescope pictures when I triggered the crash).

Oliver


signature.asc
Description: PGP signature


Re: latest openjdk7 triggers kernel panic

2013-12-26 Thread Peter Wemm
On Thu, Dec 26, 2013 at 7:39 AM, Antoine Brodin anto...@freebsd.org wrote:
 On Thu, Dec 26, 2013 at 1:04 PM, Andriy Gapon a...@freebsd.org wrote:
...
 Hello,

 FWIW,  I had a similar panic today on 9.2-RELEASE with a GENERIC kernel:
 panic: Bad entry start/end for new stack entry
 cpuid = 1
 KDB: stack backtrace:
 #0 0x80947986 at kdb_backtrace+0x66
 #1 0x8090d9ae at panic+0x1ce
 #2 0x80b81314 at vm_map_stack+0x274
 #3 0x80b83584 at vm_mmap+0x674
 #4 0x80b83d2f at sys_mmap+0x1cf
 #5 0x80cf187a at amd64_syscall+0x5ea
 #6 0x80cdbff7 at Xfast_syscall+0xf7

 It looks like the box was compiling java related ports (java/jaxen and
 devel/antlr) when it panic'ed.

This is troubling.  I'm wondering what's changed and why we haven't
seen this before.

Just so I'm clear, you're building 9.2 ports on a 9.2-REL kernel,
right?  and not something like building 9.2-REL ports inside a jail on
a 10.x or 11.x host?  10.x / 11.x are not involved and you're seeing
this?

-- 
Peter Wemm - pe...@wemm.org; pe...@freebsd.org; pe...@yahoo-inc.com; KI6FJV
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: latest openjdk7 triggers kernel panic

2013-12-26 Thread Antoine Brodin
On Thu, Dec 26, 2013 at 7:33 PM, Peter Wemm pe...@wemm.org wrote:
 On Thu, Dec 26, 2013 at 7:39 AM, Antoine Brodin anto...@freebsd.org wrote:
 On Thu, Dec 26, 2013 at 1:04 PM, Andriy Gapon a...@freebsd.org wrote:
 ...
 Hello,

 FWIW,  I had a similar panic today on 9.2-RELEASE with a GENERIC kernel:
 panic: Bad entry start/end for new stack entry
 cpuid = 1
 KDB: stack backtrace:
 #0 0x80947986 at kdb_backtrace+0x66
 #1 0x8090d9ae at panic+0x1ce
 #2 0x80b81314 at vm_map_stack+0x274
 #3 0x80b83584 at vm_mmap+0x674
 #4 0x80b83d2f at sys_mmap+0x1cf
 #5 0x80cf187a at amd64_syscall+0x5ea
 #6 0x80cdbff7 at Xfast_syscall+0xf7

 It looks like the box was compiling java related ports (java/jaxen and
 devel/antlr) when it panic'ed.

 This is troubling.  I'm wondering what's changed and why we haven't
 seen this before.

 Just so I'm clear, you're building 9.2 ports on a 9.2-REL kernel,
 right?  and not something like building 9.2-REL ports inside a jail on
 a 10.x or 11.x host?  10.x / 11.x are not involved and you're seeing
 this?


This is 9.2-REL host and kernel.
The only thing new is the ports tree,  ports tree from 20 december
didn't make the box panic while ports tree from 26 december does.
(and there was an openjdk update between)

Cheers,

Antoine
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: PACKAGESITE spam

2013-12-26 Thread Steve Kargl
On Thu, Dec 26, 2013 at 12:41:31PM +0100, Baptiste Daroussin wrote:
 On Thu, Dec 26, 2013 at 10:16:44PM +1100, Peter Jeremy wrote:
  On 2013-Dec-22 11:53:17 -0800, Darren Pilgrim 
  list_free...@bluerosetech.com wrote:
  Because of that deinstall log.  When you use `pkg install` to upgrade a 
  port, you get something like this:
  
  Jul 10 23:06:40 chombo pkg-static: ca_root_nss-3.15.1 installed
  Nov 29 15:04:52 chombo pkg: ca_root_nss reinstalled: 3.15.2_1
  
  That information does not exist in the pkg database.
  
  I agree that's a serious bug/regression in the pkg database: With the
  old pkg system, I could tell when a port was installed by looking at
  the timestamps on the +COMMENT file.  The install time is needed to
  answer questions like does this entry in UPDATING affect me (ie have
  I rebuilt the port since the entry date).  It's something I used
  regularly and its absence is a PITA.
 
 You can still query from the package database about the installation time.
 

How?

% pkg info | grep gcc
gcc-4.6.4   GNU Compiler Collection 4.6
makedep-1.0.2_1 Create dependencies in makefiles using 'gcc -M'
% pkg query -F gcc-4.6.4 %t
pkg: archive_read_open_filename(gcc-4.6.4): Failed to open 'gcc-4.6.4'
% pkg query %t gcc-4.6.4
1387742889

Is that seconds since the epoch?  If yes, if may be prudent to add a
%T format, so one can easily determine that 1387742889 is Sun Dec 22
23:20:51 2013.

-- 
Steve
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: PACKAGESITE spam

2013-12-26 Thread Baptiste Daroussin
On Thu, Dec 26, 2013 at 11:06:34AM -0800, Steve Kargl wrote:
 On Thu, Dec 26, 2013 at 12:41:31PM +0100, Baptiste Daroussin wrote:
  On Thu, Dec 26, 2013 at 10:16:44PM +1100, Peter Jeremy wrote:
   On 2013-Dec-22 11:53:17 -0800, Darren Pilgrim 
   list_free...@bluerosetech.com wrote:
   Because of that deinstall log.  When you use `pkg install` to upgrade a 
   port, you get something like this:
   
   Jul 10 23:06:40 chombo pkg-static: ca_root_nss-3.15.1 installed
   Nov 29 15:04:52 chombo pkg: ca_root_nss reinstalled: 3.15.2_1
   
   That information does not exist in the pkg database.
   
   I agree that's a serious bug/regression in the pkg database: With the
   old pkg system, I could tell when a port was installed by looking at
   the timestamps on the +COMMENT file.  The install time is needed to
   answer questions like does this entry in UPDATING affect me (ie have
   I rebuilt the port since the entry date).  It's something I used
   regularly and its absence is a PITA.
  
  You can still query from the package database about the installation time.
  
 
 How?
 
 % pkg info | grep gcc
 gcc-4.6.4   GNU Compiler Collection 4.6
 makedep-1.0.2_1 Create dependencies in makefiles using 'gcc -M'
 % pkg query -F gcc-4.6.4 %t
 pkg: archive_read_open_filename(gcc-4.6.4): Failed to open 'gcc-4.6.4'
 % pkg query %t gcc-4.6.4
 1387742889
 
 Is that seconds since the epoch?  If yes, if may be prudent to add a
 %T format, so one can easily determine that 1387742889 is Sun Dec 22
 23:20:51 2013.
 

Good idea.

regards,
Bapt


pgp_uN6pLRV6n.pgp
Description: PGP signature


Re: latest openjdk7 triggers kernel panic

2013-12-26 Thread Konstantin Belousov
On Thu, Dec 26, 2013 at 07:51:45PM +0100, Antoine Brodin wrote:
 On Thu, Dec 26, 2013 at 7:33 PM, Peter Wemm pe...@wemm.org wrote:
  On Thu, Dec 26, 2013 at 7:39 AM, Antoine Brodin anto...@freebsd.org wrote:
  On Thu, Dec 26, 2013 at 1:04 PM, Andriy Gapon a...@freebsd.org wrote:
  ...
  Hello,
 
  FWIW,  I had a similar panic today on 9.2-RELEASE with a GENERIC kernel:
  panic: Bad entry start/end for new stack entry
  cpuid = 1
  KDB: stack backtrace:
  #0 0x80947986 at kdb_backtrace+0x66
  #1 0x8090d9ae at panic+0x1ce
  #2 0x80b81314 at vm_map_stack+0x274
  #3 0x80b83584 at vm_mmap+0x674
  #4 0x80b83d2f at sys_mmap+0x1cf
  #5 0x80cf187a at amd64_syscall+0x5ea
  #6 0x80cdbff7 at Xfast_syscall+0xf7
 
  It looks like the box was compiling java related ports (java/jaxen and
  devel/antlr) when it panic'ed.
 
  This is troubling.  I'm wondering what's changed and why we haven't
  seen this before.
Well, if MAP_STACK was started used only with update, or the condition
for coalescing only holds due to changes in the update, this is not
much strange.

 
  Just so I'm clear, you're building 9.2 ports on a 9.2-REL kernel,
  right?  and not something like building 9.2-REL ports inside a jail on
  a 10.x or 11.x host?  10.x / 11.x are not involved and you're seeing
  this?
 
 
 This is 9.2-REL host and kernel.
 The only thing new is the ports tree,  ports tree from 20 december
 didn't make the box panic while ports tree from 26 december does.
 (and there was an openjdk update between)

I can only repost the following patch.  It should be applicable to 9
as well.

diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index e3842a3..e15e0ca 100644
--- a/sys/vm/vm_map.c
+++ b/sys/vm/vm_map.c
@@ -1207,6 +1207,7 @@ charged:
}
else if ((prev_entry != map-header) 
 (prev_entry-eflags == protoeflags) 
+(cow  (MAP_ENTRY_GROWS_DOWN | MAP_ENTRY_GROWS_UP)) == 0 
 (prev_entry-end == start) 
 (prev_entry-wired_count == 0) 
 (prev_entry-cred == cred ||
@@ -3339,7 +3340,6 @@ vm_map_stack(vm_map_t map, vm_offset_t addrbos, vm_size_t 
max_ssize,
 * NOTE: We explicitly allow bi-directional stacks.
 */
orient = cow  (MAP_STACK_GROWS_DOWN|MAP_STACK_GROWS_UP);
-   cow = ~orient;
KASSERT(orient != 0, (No stack grow direction));
 
if (addrbos  vm_map_min(map) ||


pgpCJQpgITivc.pgp
Description: PGP signature


Re: latest openjdk7 triggers kernel panic

2013-12-26 Thread Peter Wemm
On Thu, Dec 26, 2013 at 12:01 PM, Konstantin Belousov
kostik...@gmail.com wrote:
 On Thu, Dec 26, 2013 at 07:51:45PM +0100, Antoine Brodin wrote:
 On Thu, Dec 26, 2013 at 7:33 PM, Peter Wemm pe...@wemm.org wrote:
  On Thu, Dec 26, 2013 at 7:39 AM, Antoine Brodin anto...@freebsd.org 
  wrote:
  On Thu, Dec 26, 2013 at 1:04 PM, Andriy Gapon a...@freebsd.org wrote:
  ...
  Hello,
 
  FWIW,  I had a similar panic today on 9.2-RELEASE with a GENERIC kernel:
  panic: Bad entry start/end for new stack entry
  cpuid = 1
  KDB: stack backtrace:
  #0 0x80947986 at kdb_backtrace+0x66
  #1 0x8090d9ae at panic+0x1ce
  #2 0x80b81314 at vm_map_stack+0x274
  #3 0x80b83584 at vm_mmap+0x674
  #4 0x80b83d2f at sys_mmap+0x1cf
  #5 0x80cf187a at amd64_syscall+0x5ea
  #6 0x80cdbff7 at Xfast_syscall+0xf7
 
  It looks like the box was compiling java related ports (java/jaxen and
  devel/antlr) when it panic'ed.
 
  This is troubling.  I'm wondering what's changed and why we haven't
  seen this before.
 Well, if MAP_STACK was started used only with update, or the condition
 for coalescing only holds due to changes in the update, this is not
 much strange.

openjdk7 doesn't appear to use MAP_STACK itself.  The mmap(..
MAP_STACK..) caller looks like it is libthr.

The only odd thing that stood with a quick browse of the code was that
openjdk tinkers with mprotect() for stack guard pages.  These will
presumably be right on the boundaries of the stacks.

-- 
Peter Wemm - pe...@wemm.org; pe...@freebsd.org; pe...@yahoo-inc.com; KI6FJV
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


[head tinderbox] failure on i386/pc98

2013-12-26 Thread FreeBSD Tinderbox
TB --- 2013-12-26 18:03:50 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-12-26 18:03:50 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-12-26 18:03:50 - starting HEAD tinderbox run for i386/pc98
TB --- 2013-12-26 18:03:50 - cleaning the object tree
TB --- 2013-12-26 18:03:50 - /usr/local/bin/svn stat /src
TB --- 2013-12-26 18:04:12 - At svn revision 259914
TB --- 2013-12-26 18:04:13 - building world
TB --- 2013-12-26 18:04:13 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-26 18:04:13 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-26 18:04:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-26 18:04:13 - SRCCONF=/dev/null
TB --- 2013-12-26 18:04:13 - TARGET=pc98
TB --- 2013-12-26 18:04:13 - TARGET_ARCH=i386
TB --- 2013-12-26 18:04:13 - TZ=UTC
TB --- 2013-12-26 18:04:13 - __MAKE_CONF=/dev/null
TB --- 2013-12-26 18:04:13 - cd /src
TB --- 2013-12-26 18:04:13 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Thu Dec 26 18:04:21 UTC 2013
 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
[...]
gcc: unrecognized option '-Qunused-arguments'
ld -static -N --gc-sections -nostdlib -Ttext 0x2000 -o boot2.out 
/obj/pc98.i386/src/sys/boot/pc98/boot2/../btx/lib/crt0.o boot2.o sio.o
objcopy -S -O binary boot2.out boot2.bin
btxld -v -E 0x2000 -f bin -b 
/obj/pc98.i386/src/sys/boot/pc98/boot2/../btx/btx/btx -l boot2.ldr  -o boot2.ld 
-P 1 boot2.bin
kernel: ver=1.02 size=6d0 load=9000 entry=9010 map=16M pgctl=1:1
client: fmt=bin size=162d text=0 data=0 bss=0 entry=0
output: fmt=bin size=1e11 text=114 data=1cfd org=0 entry=0
-17 bytes available
*** Error code 1

Stop.
bmake[5]: stopped in /src/sys/boot/pc98/boot2
*** Error code 1

Stop.
bmake[4]: stopped in /src/sys/boot/pc98
*** Error code 1

Stop.
bmake[3]: stopped in /src/sys/boot
*** Error code 1

Stop.
bmake[2]: stopped in /src/sys
*** Error code 1

Stop.
bmake[1]: stopped in /src
*** Error code 1

Stop.
bmake: stopped in /src
*** Error code 1

Stop in /src.
TB --- 2013-12-26 21:09:46 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-12-26 21:09:46 - ERROR: failed to build world
TB --- 2013-12-26 21:09:46 - 9250.01 user 1190.43 system 11156.37 real


http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-i386-pc98.full
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: FreeBSD 10.0-RC3 Now Available

2013-12-26 Thread Joe Nosay
On Thu, Dec 26, 2013 at 11:25 AM, Glen Barber g...@freebsd.org wrote:

 The third RC build of the 10.0-RELEASE release cycle is now available
 on the FTP servers for the amd64, i386, ia64, powerpc, powerpc64 and
 sparc64 architectures.

 The image checksums follow at the end of this email.

 ISO images and, for architectures that support it, the memory stick images
 are available here (or any of the FreeBSD mirror sites):

 ftp://ftp.freebsd.org/pub/FreeBSD/releases/ISO-IMAGES/10.0/

 If you notice problems you can report them through the normal GNATS PR
 system or here on the -stable mailing list.

 If you would like to use SVN to do a source based update of an existing
 system, use the releng/10.0 branch.

 Important note to freebsd-update(8) users:  Please be sure to follow the
 instructions in the following FreeBSD Errata Notices before upgrading
 the system to 10.0-RC3:

   - EN-13:04.freebsd-update:

 http://www.freebsd.org/security/advisories/FreeBSD-EN-13:04.freebsd-update.asc

   - EN-13:05.freebsd-update:

 http://www.freebsd.org/security/advisories/FreeBSD-EN-13:05.freebsd-update.asc

 Pre-installed virtual machine images for 10.0-RC3 are also available
 for amd64 and i386 architectures.

 The images are located under the 'snapshots' directory on FTP, here:

 ftp://ftp.freebsd.org/pub/FreeBSD/snapshots/VM-IMAGES/10.0-RC3/

 The disk images are available in both QCOW2, VHD, and VMDK format.  The
 image download size is approximately 135 MB, which decompress to a 20GB
 sparse image.

 The partition layout is:

 - 512k - freebsd-boot GPT partition type (bootfs GPT label)
 - 1GB  - freebsd-swap GPT partition type (swapfs GPT label)
 - ~17GB - freebsd-ufs GPT partition type (rootfs GPT label)

 Changes between -RC2 and -RC3 include:

  - Several minor bugfixes and functionality enhancements to bhyve.
  - Add new sysctl, kern.supported_archs, containing the list of
FreeBSD MACHINE_ARCH values whose binaries this kernel can run.
  - Add a pkg(8) repository configuration file for cdrom-based package
installation.
  - Implement a fix to allow bsdconfig(8) to be able to install
packages included on the DVD.
  - Fix pkg(8) multi-repository support by properly respecting 'enabled'
flag.
  - Fix Xen build without INET.
  - Several bugfixes to bsdinstall(8).
  - Fix a ZFS-related panic triggered by an incorrect assertion.
  - Fix mountroot prompt eating most of the characters by not enabling
RXRDY interrupts in the attach routine.
  - Fix a regression in ng_ksocket(4).
  - Apply patch from upstream Heimdal for encoding fix

 The freebsd-update(8) utility supports binary upgrades of amd64 and i386
 systems running earlier FreeBSD releases.  Systems running earlier
 FreeBSD releases can upgrade as follows:

 # freebsd-update upgrade -r 10.0-RC3

 During this process, freebsd-update(8) may ask the user to help by
 merging some configuration files or by confirming that the automatically
 performed merging was done correctly.

 # freebsd-update install

 The system must be rebooted with the newly installed kernel before
 continuing.

 # shutdown -r now

 After rebooting, freebsd-update needs to be run again to install the new
 userland components:

 # freebsd-update install

 It is recommended to rebuild and install all applications if possible,
 especially if upgrading from an earlier FreeBSD release, for example,
 FreeBSD 9.x.  Alternatively, the user can install misc/compat9x and
 other compatibility libraries, afterwards the system must be rebooted
 into the new userland:

 # shutdown -r now

 Finally, after rebooting, freebsd-update needs to be run again to remove
 stale files:

 # freebsd-update install


 == ISO CHECKSUMS ==

 - 10.0-RC3 amd64:
 SHA256 (FreeBSD-10.0-RC3-amd64-bootonly.iso) =
 a446af2ca4da7b5a5f7513f025fc5727abf0dac051540b1f04596223700e60cd
 SHA256 (FreeBSD-10.0-RC3-amd64-disc1.iso) =
 a4b16d3e4e04f1dbb9184fdbe18d6587124a6ea2a1794f79122d57373865ab6b
 SHA256 (FreeBSD-10.0-RC3-amd64-dvd1.iso) =
 ce4edab5d5b485f6478e6171c1de64e9b337109256c5eb5257aceccd78224255
 SHA256 (FreeBSD-10.0-RC3-amd64-memstick.img) =
 642ff8ad66ead06b18bcf171be79f3f42e6c36bbe0b741c6d98d32a89fb6724a

 MD5 (FreeBSD-10.0-RC3-amd64-bootonly.iso) =
 584745fc67ca974c146065aa3b3a9a94
 MD5 (FreeBSD-10.0-RC3-amd64-disc1.iso) =
 fc93de26dc0b2ca1e88cc2fcda18ec05
 MD5 (FreeBSD-10.0-RC3-amd64-dvd1.iso) =
 ed93640aca43b484697d203c7b6f0ab3
 MD5 (FreeBSD-10.0-RC3-amd64-memstick.img) =
 416ca9f9973e405afba58c11a90c6d7a


 - 10.0-RC3 i386:
 SHA256 (FreeBSD-10.0-RC3-i386-bootonly.iso) =
 1c191afa34e4a8119362c7b08b4e6265fcb0017afd508b060c49de7bcbd5ece3
 SHA256 (FreeBSD-10.0-RC3-i386-disc1.iso) =
 2d03929465da9042a5424cf97577c4811500a0df4a454631a2aaef41350fe211
 SHA256 (FreeBSD-10.0-RC3-i386-dvd1.iso) =
 517aced324eac22fe6e65716d63b6d112c0fbac33c243ff327f97e7b6b7cd584
 SHA256 

Re: FreeBSD 10.0-RC3 Now Available

2013-12-26 Thread Glen Barber
On Thu, Dec 26, 2013 at 04:17:27PM -0500, Joe Nosay wrote:
 I take it that building world and kernel from source should present no
 problems, right?
 Is the latest CLang at 3.5 being used or will I need to hack the Makefile
 in /usr/ports/lang to build it?

Both world and kernel are built with clang by default.

Glen



pgp70eH4pPDIK.pgp
Description: PGP signature


Re: latest openjdk7 triggers kernel panic

2013-12-26 Thread Dmitry Samersoff
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Antonie,

Do you know which java process is running (if any) when kernel panics?

Please, look around - is there any hs_err_pid.log files in your system.

jvm do some tricky things when setting up stack guard pages and it
worth to take a look at it.

- -Dmitry

On 2013-12-26 22:51, Antoine Brodin wrote:
 On Thu, Dec 26, 2013 at 7:33 PM, Peter Wemm pe...@wemm.org
 wrote:
 On Thu, Dec 26, 2013 at 7:39 AM, Antoine Brodin
 anto...@freebsd.org wrote:
 On Thu, Dec 26, 2013 at 1:04 PM, Andriy Gapon a...@freebsd.org
 wrote:
 ...
 Hello,
 
 FWIW,  I had a similar panic today on 9.2-RELEASE with a
 GENERIC kernel: panic: Bad entry start/end for new stack entry 
 cpuid = 1 KDB: stack backtrace: #0 0x80947986 at
 kdb_backtrace+0x66 #1 0x8090d9ae at panic+0x1ce #2
 0x80b81314 at vm_map_stack+0x274 #3 0x80b83584
 at vm_mmap+0x674 #4 0x80b83d2f at sys_mmap+0x1cf #5
 0x80cf187a at amd64_syscall+0x5ea #6 0x80cdbff7
 at Xfast_syscall+0xf7
 
 It looks like the box was compiling java related ports
 (java/jaxen and devel/antlr) when it panic'ed.
 
 This is troubling.  I'm wondering what's changed and why we
 haven't seen this before.
 
 Just so I'm clear, you're building 9.2 ports on a 9.2-REL
 kernel, right?  and not something like building 9.2-REL ports
 inside a jail on a 10.x or 11.x host?  10.x / 11.x are not
 involved and you're seeing this?
 
 
 This is 9.2-REL host and kernel. The only thing new is the ports
 tree,  ports tree from 20 december didn't make the box panic while
 ports tree from 26 december does. (and there was an openjdk update
 between)
 
 Cheers,
 
 Antoine ___ 
 freebsd-j...@freebsd.org mailing list 
 http://lists.freebsd.org/mailman/listinfo/freebsd-java To
 unsubscribe, send any mail to
 freebsd-java-unsubscr...@freebsd.org
 


- -- 
Dmitry Samersoff
Saint Petersburg, Russia, http://devnull.samersoff.net
* There will come soft rains  ...
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.20 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJSvJpEAAoJEHEy08c4gIAByzUH/17kE0Cod8PimaCoS//APCk8
dCw9UJpFPDxp6s6pHrQFvZib4vFLBo0p/MMBvw6iiwsZeA4btvYQRwwZ89fM671t
uw6Ysu/W1REhN/9wdlyp+DABS/kE4Fig/rEu5qJjjFYbJv1fK9CJgD1NdZRuRapl
yphxCDkipYF6utSgwSApHXUgAUiRP4GyfMgYvEeo/SCtq5YWsxgAptoSeHQJRYO9
P05uzAfP3U2WmRlruvYkxyrGpk/ZulQpxNCaJXri9EbKcM3RvybjX2vhv8J4sGPe
fHkrVXyGuoCoWDo/ONOn7qIdi8i8S8kT3GXQ1yltDqOquSRYPYML0T+/5VIMcpg=
=CRQH
-END PGP SIGNATURE-
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: [head tinderbox] failure on i386/pc98

2013-12-26 Thread Dimitry Andric
On 26 Dec 2013, at 22:09, FreeBSD Tinderbox tinder...@freebsd.org wrote:
 TB --- 2013-12-26 18:03:50 - tinderbox 2.20 running on 
 freebsd-current.sentex.ca
 TB --- 2013-12-26 18:03:50 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
 FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
 d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
 TB --- 2013-12-26 18:03:50 - starting HEAD tinderbox run for i386/pc98
...
 gcc: unrecognized option '-Qunused-arguments'
 ld -static -N --gc-sections -nostdlib -Ttext 0x2000 -o boot2.out 
 /obj/pc98.i386/src/sys/boot/pc98/boot2/../btx/lib/crt0.o boot2.o sio.o
 objcopy -S -O binary boot2.out boot2.bin
 btxld -v -E 0x2000 -f bin -b 
 /obj/pc98.i386/src/sys/boot/pc98/boot2/../btx/btx/btx -l boot2.ldr  -o 
 boot2.ld -P 1 boot2.bin
 kernel: ver=1.02 size=6d0 load=9000 entry=9010 map=16M pgctl=1:1
 client: fmt=bin size=162d text=0 data=0 bss=0 entry=0
 output: fmt=bin size=1e11 text=114 data=1cfd org=0 entry=0
 -17 bytes available
 *** Error code 1

My bad, this should be fixed by r259927.

-Dimitry



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: latest openjdk7 triggers kernel panic

2013-12-26 Thread Mathieu Arnold
+--On 26 décembre 2013 16:05:00 +0200 Konstantin Belousov
kostik...@gmail.com wrote:
| But there were no core dump available, and I think that your note is also
| valid.  I do not see why cow should be cleared from the stack direction
| bits.

I can provide what I have in /var/crash from a 10.0-RC3, if you like.

Regards,

-- 
Mathieu Arnold
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Re: FreeBSD 10.0-RC3 Now Available

2013-12-26 Thread Zenny
Much awaited release, thanks!. However, does the freebsd-update from
the earlier version bork in case of ZFS on Root? Or is there a safe
way to upgrade without borking. I had a very bad experience when I
upgraded from FreeBSD-10B3 to RC1. Thanks!

On 12/26/13, Glen Barber g...@freebsd.org wrote:
 On Thu, Dec 26, 2013 at 04:17:27PM -0500, Joe Nosay wrote:
 I take it that building world and kernel from source should present no
 problems, right?
 Is the latest CLang at 3.5 being used or will I need to hack the
 Makefile
 in /usr/ports/lang to build it?

 Both world and kernel are built with clang by default.

 Glen


___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: FreeBSD 10.0-RC3 Now Available

2013-12-26 Thread Mathieu Arnold
+--On 27 décembre 2013 00:42:36 +0100 Zenny garbytr...@gmail.com wrote:
| Much awaited release, thanks!. However, does the freebsd-update from
| the earlier version bork in case of ZFS on Root? Or is there a safe
| way to upgrade without borking. I had a very bad experience when I
| upgraded from FreeBSD-10B3 to RC1. Thanks!

I upgraded from 9.2 to 10.0-RC1, 10.0-RC2 and 10.0-RC3 with freebsd-update
using zfs only boxes, never had any problem. The only thing is, if you run
zpool upgrade, do remember to do what it tells you about updating the
bootcode.

-- 
Mathieu Arnold
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

[head tinderbox] failure on armv6/arm

2013-12-26 Thread FreeBSD Tinderbox
TB --- 2013-12-27 00:40:22 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-12-27 00:40:22 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-12-27 00:40:22 - starting HEAD tinderbox run for armv6/arm
TB --- 2013-12-27 00:40:22 - cleaning the object tree
TB --- 2013-12-27 00:40:22 - /usr/local/bin/svn stat /src
TB --- 2013-12-27 00:40:27 - At svn revision 259928
TB --- 2013-12-27 00:40:28 - building world
TB --- 2013-12-27 00:40:28 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 00:40:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 00:40:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 00:40:28 - SRCCONF=/dev/null
TB --- 2013-12-27 00:40:28 - TARGET=arm
TB --- 2013-12-27 00:40:28 - TARGET_ARCH=armv6
TB --- 2013-12-27 00:40:28 - TZ=UTC
TB --- 2013-12-27 00:40:28 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 00:40:28 - cd /src
TB --- 2013-12-27 00:40:28 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Dec 27 00:40:37 UTC 2013
 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 Dec 27 03:41:31 UTC 2013
TB --- 2013-12-27 03:41:31 - generating LINT kernel config
TB --- 2013-12-27 03:41:31 - cd /src/sys/arm/conf
TB --- 2013-12-27 03:41:31 - /usr/bin/make -B LINT
TB --- 2013-12-27 03:41:31 - cd /src/sys/arm/conf
TB --- 2013-12-27 03:41:31 - /usr/sbin/config -m LINT
TB --- 2013-12-27 03:41:31 - skipping LINT kernel
TB --- 2013-12-27 03:41:31 - cd /src/sys/arm/conf
TB --- 2013-12-27 03:41:31 - /usr/sbin/config -m AC100
TB --- 2013-12-27 03:41:31 - building AC100 kernel
TB --- 2013-12-27 03:41:31 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 03:41:31 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 03:41:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 03:41:31 - SRCCONF=/dev/null
TB --- 2013-12-27 03:41:31 - TARGET=arm
TB --- 2013-12-27 03:41:31 - TARGET_ARCH=armv6
TB --- 2013-12-27 03:41:31 - TZ=UTC
TB --- 2013-12-27 03:41:31 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 03:41:31 - cd /src
TB --- 2013-12-27 03:41:31 - /usr/bin/make -B buildkernel KERNCONF=AC100
 Kernel build for AC100 started on Fri Dec 27 03:41:31 UTC 2013
 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 -g -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  -Wno-error-tautological-compare 
-Wno-error-empty-body  -Wno-error-parentheses-equality  -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  -funwind-tables 
-ffreestanding -Werror  /src/sys/geom/part/g_part.c
awk -f /src/sys/tools/makeobjops.awk /src/sys/geom/part/g_part_if.m -c ;  cc  
-c -O -pipe  -std=c99 -g -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  -Wno-error-tautological-compare 
-Wno-error-empty-body  -Wno-error-parentheses-equality  -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  -funwind-tables 
-ffreestanding -Werror  g_part_if.c
cc  -c -O -pipe  -std=c99 -g -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  -Wno-error-tautological-compare 
-Wno-error-empty-body  -Wno-error-parentheses-equality  -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  -funwind-tables 
-ffreestanding -Werror  /src/sys/geom/part/g_part_bsd.c
cc  -c -O -pipe  -std=c99 -g -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  -Wno-error-tautological-compare 
-Wno-error-empty-body  -Wno-error-parentheses-equality  -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  -funwind-tables 

[head tinderbox] failure on arm/arm

2013-12-26 Thread FreeBSD Tinderbox
TB --- 2013-12-27 00:40:22 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-12-27 00:40:22 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-12-27 00:40:22 - starting HEAD tinderbox run for arm/arm
TB --- 2013-12-27 00:40:22 - cleaning the object tree
TB --- 2013-12-27 00:40:22 - /usr/local/bin/svn stat /src
TB --- 2013-12-27 00:40:27 - At svn revision 259928
TB --- 2013-12-27 00:40:28 - building world
TB --- 2013-12-27 00:40:28 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 00:40:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 00:40:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 00:40:28 - SRCCONF=/dev/null
TB --- 2013-12-27 00:40:28 - TARGET=arm
TB --- 2013-12-27 00:40:28 - TARGET_ARCH=arm
TB --- 2013-12-27 00:40:28 - TZ=UTC
TB --- 2013-12-27 00:40:28 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 00:40:28 - cd /src
TB --- 2013-12-27 00:40:28 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Dec 27 00:40:37 UTC 2013
 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 Dec 27 03:41:31 UTC 2013
TB --- 2013-12-27 03:41:31 - generating LINT kernel config
TB --- 2013-12-27 03:41:31 - cd /src/sys/arm/conf
TB --- 2013-12-27 03:41:31 - /usr/bin/make -B LINT
TB --- 2013-12-27 03:41:31 - cd /src/sys/arm/conf
TB --- 2013-12-27 03:41:31 - /usr/sbin/config -m LINT
TB --- 2013-12-27 03:41:31 - building LINT kernel
TB --- 2013-12-27 03:41:31 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 03:41:31 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 03:41:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 03:41:31 - SRCCONF=/dev/null
TB --- 2013-12-27 03:41:31 - TARGET=arm
TB --- 2013-12-27 03:41:31 - TARGET_ARCH=arm
TB --- 2013-12-27 03:41:31 - TZ=UTC
TB --- 2013-12-27 03:41:31 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 03:41:31 - cd /src
TB --- 2013-12-27 03:41:31 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Fri Dec 27 03:41:31 UTC 2013
 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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -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-builtin -funwind-tables 
-ffreestanding -Werror  /src/sys/geom/part/g_part_apm.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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -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-builtin -funwind-tables 
-ffreestanding -Werror  /src/sys/geom/part/g_part_bsd.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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -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-builtin -funwind-tables 
-ffreestanding -Werror  /src/sys/geom/part/g_part_ebr.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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -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-builtin -funwind-tables 
-ffreestanding -Werror  /src/sys/geom/part/g_part_gpt.c

[head tinderbox] failure on i386/i386

2013-12-26 Thread FreeBSD Tinderbox
TB --- 2013-12-27 00:40:22 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-12-27 00:40:22 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-12-27 00:40:22 - starting HEAD tinderbox run for i386/i386
TB --- 2013-12-27 00:40:22 - cleaning the object tree
TB --- 2013-12-27 00:40:22 - /usr/local/bin/svn stat /src
TB --- 2013-12-27 00:40:27 - At svn revision 259928
TB --- 2013-12-27 00:40:28 - building world
TB --- 2013-12-27 00:40:28 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 00:40:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 00:40:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 00:40:28 - SRCCONF=/dev/null
TB --- 2013-12-27 00:40:28 - TARGET=i386
TB --- 2013-12-27 00:40:28 - TARGET_ARCH=i386
TB --- 2013-12-27 00:40:28 - TZ=UTC
TB --- 2013-12-27 00:40:28 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 00:40:28 - cd /src
TB --- 2013-12-27 00:40:28 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Dec 27 00:40:37 UTC 2013
 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 Dec 27 03:49:52 UTC 2013
TB --- 2013-12-27 03:49:52 - generating LINT kernel config
TB --- 2013-12-27 03:49:52 - cd /src/sys/i386/conf
TB --- 2013-12-27 03:49:52 - /usr/bin/make -B LINT
TB --- 2013-12-27 03:49:52 - cd /src/sys/i386/conf
TB --- 2013-12-27 03:49:52 - /usr/sbin/config -m LINT
TB --- 2013-12-27 03:49:52 - building LINT kernel
TB --- 2013-12-27 03:49:52 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 03:49:52 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 03:49:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 03:49:52 - SRCCONF=/dev/null
TB --- 2013-12-27 03:49:52 - TARGET=i386
TB --- 2013-12-27 03:49:52 - TARGET_ARCH=i386
TB --- 2013-12-27 03:49:52 - TZ=UTC
TB --- 2013-12-27 03:49:52 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 03:49:52 - cd /src
TB --- 2013-12-27 03:49:52 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Fri Dec 27 03:49:52 UTC 2013
 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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -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 -DGPROF -DGPROF4 -DGUPROF 
-fno-builtin -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding 
-fstack-protector -Werror -pg /src/sys/geom/part/g_part_apm.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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -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 -DGPROF -DGPROF4 -DGUPROF 
-fno-builtin -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding 
-fstack-protector -Werror -pg /src/sys/geom/part/g_part_bsd.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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -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 -DGPROF -DGPROF4 -DGUPROF 
-fno-builtin -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding 
-fstack-protector -Werror -pg /src/sys/geom/part/g_part_ebr.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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  

[head tinderbox] failure on amd64/amd64

2013-12-26 Thread FreeBSD Tinderbox
TB --- 2013-12-27 00:40:22 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-12-27 00:40:22 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-12-27 00:40:22 - starting HEAD tinderbox run for amd64/amd64
TB --- 2013-12-27 00:40:22 - cleaning the object tree
TB --- 2013-12-27 00:40:22 - /usr/local/bin/svn stat /src
TB --- 2013-12-27 00:40:27 - At svn revision 259928
TB --- 2013-12-27 00:40:28 - building world
TB --- 2013-12-27 00:40:28 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 00:40:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 00:40:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 00:40:28 - SRCCONF=/dev/null
TB --- 2013-12-27 00:40:28 - TARGET=amd64
TB --- 2013-12-27 00:40:28 - TARGET_ARCH=amd64
TB --- 2013-12-27 00:40:28 - TZ=UTC
TB --- 2013-12-27 00:40:28 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 00:40:28 - cd /src
TB --- 2013-12-27 00:40:28 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Dec 27 00:40:37 UTC 2013
 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 Dec 27 04:23:18 UTC 2013
TB --- 2013-12-27 04:23:18 - generating LINT kernel config
TB --- 2013-12-27 04:23:18 - cd /src/sys/amd64/conf
TB --- 2013-12-27 04:23:18 - /usr/bin/make -B LINT
TB --- 2013-12-27 04:23:18 - cd /src/sys/amd64/conf
TB --- 2013-12-27 04:23:18 - /usr/sbin/config -m LINT
TB --- 2013-12-27 04:23:18 - building LINT kernel
TB --- 2013-12-27 04:23:18 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 04:23:18 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 04:23:18 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 04:23:18 - SRCCONF=/dev/null
TB --- 2013-12-27 04:23:18 - TARGET=amd64
TB --- 2013-12-27 04:23:18 - TARGET_ARCH=amd64
TB --- 2013-12-27 04:23:18 - TZ=UTC
TB --- 2013-12-27 04:23:18 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 04:23:18 - cd /src
TB --- 2013-12-27 04:23:18 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Fri Dec 27 04:23:18 UTC 2013
 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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -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 -DGPROF -DGPROF4 -DGUPROF 
-fno-builtin -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes 
-mno-avx -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  
-fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg 
/src/sys/geom/part/g_part_apm.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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -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 -DGPROF -DGPROF4 -DGUPROF 
-fno-builtin -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes 
-mno-avx -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  
-fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror -pg 
/src/sys/geom/part/g_part_bsd.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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -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 -DGPROF -DGPROF4 -DGUPROF 
-fno-builtin -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes 
-mno-avx -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  
-fno-asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror 

[head tinderbox] failure on ia64/ia64

2013-12-26 Thread FreeBSD Tinderbox
TB --- 2013-12-27 03:52:25 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-12-27 03:52:25 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-12-27 03:52:25 - starting HEAD tinderbox run for ia64/ia64
TB --- 2013-12-27 03:52:25 - cleaning the object tree
TB --- 2013-12-27 03:52:25 - /usr/local/bin/svn stat /src
TB --- 2013-12-27 03:52:29 - At svn revision 259928
TB --- 2013-12-27 03:52:30 - building world
TB --- 2013-12-27 03:52:30 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 03:52:30 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 03:52:30 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 03:52:30 - SRCCONF=/dev/null
TB --- 2013-12-27 03:52:30 - TARGET=ia64
TB --- 2013-12-27 03:52:30 - TARGET_ARCH=ia64
TB --- 2013-12-27 03:52:30 - TZ=UTC
TB --- 2013-12-27 03:52:30 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 03:52:30 - cd /src
TB --- 2013-12-27 03:52:30 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Dec 27 03:52:37 UTC 2013
 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 Dec 27 05:27:33 UTC 2013
TB --- 2013-12-27 05:27:33 - generating LINT kernel config
TB --- 2013-12-27 05:27:33 - cd /src/sys/ia64/conf
TB --- 2013-12-27 05:27:33 - /usr/bin/make -B LINT
TB --- 2013-12-27 05:27:33 - cd /src/sys/ia64/conf
TB --- 2013-12-27 05:27:33 - /usr/sbin/config -m LINT
TB --- 2013-12-27 05:27:33 - building LINT kernel
TB --- 2013-12-27 05:27:33 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 05:27:33 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 05:27:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 05:27:33 - SRCCONF=/dev/null
TB --- 2013-12-27 05:27:33 - TARGET=ia64
TB --- 2013-12-27 05:27:33 - TARGET_ARCH=ia64
TB --- 2013-12-27 05:27:33 - TZ=UTC
TB --- 2013-12-27 05:27:33 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 05:27:33 - cd /src
TB --- 2013-12-27 05:27:33 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Fri Dec 27 05:27:33 UTC 2013
 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/geom/nop/g_nop.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/geom/part/g_part.c
awk -f /src/sys/tools/makeobjops.awk /src/sys/geom/part/g_part_if.m -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  g_part_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 -I/src/sys/contrib/ia64/libuwx/src -D_KERNEL 

[head tinderbox] failure on mips/mips

2013-12-26 Thread FreeBSD Tinderbox
TB --- 2013-12-27 04:04:08 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-12-27 04:04:08 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-12-27 04:04:08 - starting HEAD tinderbox run for mips/mips
TB --- 2013-12-27 04:04:08 - cleaning the object tree
TB --- 2013-12-27 04:04:08 - /usr/local/bin/svn stat /src
TB --- 2013-12-27 04:04:11 - At svn revision 259928
TB --- 2013-12-27 04:04:12 - building world
TB --- 2013-12-27 04:04:12 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 04:04:12 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 04:04:12 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 04:04:12 - SRCCONF=/dev/null
TB --- 2013-12-27 04:04:12 - TARGET=mips
TB --- 2013-12-27 04:04:12 - TARGET_ARCH=mips
TB --- 2013-12-27 04:04:12 - TZ=UTC
TB --- 2013-12-27 04:04:12 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 04:04:12 - cd /src
TB --- 2013-12-27 04:04:12 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Dec 27 04:04:19 UTC 2013
 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 Dec 27 05:05:29 UTC 2013
TB --- 2013-12-27 05:05:29 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:05:29 - /usr/sbin/config -m ADM5120
TB --- 2013-12-27 05:05:29 - skipping ADM5120 kernel
TB --- 2013-12-27 05:05:29 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:05:29 - /usr/sbin/config -m ALCHEMY
TB --- 2013-12-27 05:05:29 - skipping ALCHEMY kernel
TB --- 2013-12-27 05:05:29 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:05:29 - /usr/sbin/config -m ALFA_HORNET_UB
TB --- 2013-12-27 05:05:29 - building ALFA_HORNET_UB kernel
TB --- 2013-12-27 05:05:29 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 05:05:29 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 05:05:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 05:05:29 - SRCCONF=/dev/null
TB --- 2013-12-27 05:05:29 - TARGET=mips
TB --- 2013-12-27 05:05:29 - TARGET_ARCH=mips
TB --- 2013-12-27 05:05:29 - TZ=UTC
TB --- 2013-12-27 05:05:29 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 05:05:29 - cd /src
TB --- 2013-12-27 05:05:29 - /usr/bin/make -B buildkernel 
KERNCONF=ALFA_HORNET_UB
 Kernel build for ALFA_HORNET_UB started on Fri Dec 27 05:05:30 UTC 2013
 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 ALFA_HORNET_UB completed on Fri Dec 27 05:08:43 UTC 2013
TB --- 2013-12-27 05:08:43 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:08:43 - /usr/sbin/config -m AP121
TB --- 2013-12-27 05:08:43 - building AP121 kernel
TB --- 2013-12-27 05:08:43 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 05:08:43 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 05:08:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 05:08:43 - SRCCONF=/dev/null
TB --- 2013-12-27 05:08:43 - TARGET=mips
TB --- 2013-12-27 05:08:43 - TARGET_ARCH=mips
TB --- 2013-12-27 05:08:43 - TZ=UTC
TB --- 2013-12-27 05:08:43 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 05:08:43 - cd /src
TB --- 2013-12-27 05:08:43 - /usr/bin/make -B buildkernel KERNCONF=AP121
 Kernel build for AP121 started on Fri Dec 27 05:08:43 UTC 2013
 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 AP121 completed on Fri Dec 27 05:11:38 UTC 2013
TB --- 2013-12-27 05:11:38 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:11:38 - /usr/sbin/config -m AP91
TB --- 2013-12-27 05:11:39 - building AP91 kernel
TB --- 2013-12-27 05:11:39 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 05:11:39 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 05:11:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 05:11:39 - SRCCONF=/dev/null
TB --- 2013-12-27 05:11:39 - TARGET=mips
TB --- 2013-12-27 05:11:39 - TARGET_ARCH=mips
TB --- 2013-12-27 05:11:39 - TZ=UTC
TB --- 2013-12-27 05:11:39 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 05:11:39 - cd /src
TB --- 2013-12-27 05:11:39 - /usr/bin/make -B buildkernel KERNCONF=AP91
 Kernel build for AP91 started on Fri Dec 27 05:11:39 UTC 2013
 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 AP91 completed on Fri Dec 27 05:15:53 UTC 2013
TB --- 2013-12-27 05:15:53 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:15:53 - /usr/sbin/config -m AP93
TB --- 2013-12-27 

[head tinderbox] failure on mips64/mips

2013-12-26 Thread FreeBSD Tinderbox
TB --- 2013-12-27 04:36:54 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-12-27 04:36:54 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-12-27 04:36:54 - starting HEAD tinderbox run for mips64/mips
TB --- 2013-12-27 04:36:54 - cleaning the object tree
TB --- 2013-12-27 04:36:54 - /usr/local/bin/svn stat /src
TB --- 2013-12-27 04:36:57 - At svn revision 259928
TB --- 2013-12-27 04:36:58 - building world
TB --- 2013-12-27 04:36:58 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 04:36:58 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 04:36:58 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 04:36:58 - SRCCONF=/dev/null
TB --- 2013-12-27 04:36:58 - TARGET=mips
TB --- 2013-12-27 04:36:58 - TARGET_ARCH=mips64
TB --- 2013-12-27 04:36:58 - TZ=UTC
TB --- 2013-12-27 04:36:58 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 04:36:58 - cd /src
TB --- 2013-12-27 04:36:58 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Dec 27 04:37:05 UTC 2013
 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 Dec 27 05:38:11 UTC 2013
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m ADM5120
TB --- 2013-12-27 05:38:11 - skipping ADM5120 kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m ALCHEMY
TB --- 2013-12-27 05:38:11 - skipping ALCHEMY kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m ALFA_HORNET_UB
TB --- 2013-12-27 05:38:11 - skipping ALFA_HORNET_UB kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m AP121
TB --- 2013-12-27 05:38:11 - skipping AP121 kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m AP91
TB --- 2013-12-27 05:38:11 - skipping AP91 kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m AP93
TB --- 2013-12-27 05:38:11 - skipping AP93 kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m AP94
TB --- 2013-12-27 05:38:11 - skipping AP94 kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m AP96
TB --- 2013-12-27 05:38:11 - skipping AP96 kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m AR71XX_BASE
TB --- 2013-12-27 05:38:11 - skipping AR71XX_BASE kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m AR724X_BASE
TB --- 2013-12-27 05:38:11 - skipping AR724X_BASE kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m AR91XX_BASE
TB --- 2013-12-27 05:38:11 - skipping AR91XX_BASE kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m AR933X_BASE
TB --- 2013-12-27 05:38:11 - skipping AR933X_BASE kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m AR934X_BASE
TB --- 2013-12-27 05:38:11 - skipping AR934X_BASE kernel
TB --- 2013-12-27 05:38:11 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:38:11 - /usr/sbin/config -m BERI_DE4_BASE
TB --- 2013-12-27 05:38:11 - building BERI_DE4_BASE kernel
TB --- 2013-12-27 05:38:11 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 05:38:11 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 05:38:11 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 05:38:11 - SRCCONF=/dev/null
TB --- 2013-12-27 05:38:11 - TARGET=mips
TB --- 2013-12-27 05:38:11 - TARGET_ARCH=mips64
TB --- 2013-12-27 05:38:11 - TZ=UTC
TB --- 2013-12-27 05:38:11 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 05:38:11 - cd /src
TB --- 2013-12-27 05:38:11 - /usr/bin/make -B buildkernel KERNCONF=BERI_DE4_BASE
 Kernel build for BERI_DE4_BASE started on Fri Dec 27 05:38:11 UTC 2013
 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 BERI_DE4_BASE completed on Fri Dec 27 05:40:55 UTC 2013
TB --- 2013-12-27 05:40:55 - cd /src/sys/mips/conf
TB --- 2013-12-27 05:40:55 - /usr/sbin/config -m BERI_DE4_MDROOT
TB --- 2013-12-27 05:40:55 - building BERI_DE4_MDROOT kernel
TB --- 2013-12-27 05:40:55 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 05:40:55 - MAKEOBJDIRPREFIX=/obj
TB --- 

[head tinderbox] failure on i386/pc98

2013-12-26 Thread FreeBSD Tinderbox
TB --- 2013-12-27 03:42:18 - tinderbox 2.20 running on freebsd-current.sentex.ca
TB --- 2013-12-27 03:42:18 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE 
FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 
d...@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-12-27 03:42:18 - starting HEAD tinderbox run for i386/pc98
TB --- 2013-12-27 03:42:18 - cleaning the object tree
TB --- 2013-12-27 03:43:26 - /usr/local/bin/svn stat /src
TB --- 2013-12-27 03:43:33 - At svn revision 259928
TB --- 2013-12-27 03:43:34 - building world
TB --- 2013-12-27 03:43:34 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 03:43:34 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 03:43:34 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 03:43:34 - SRCCONF=/dev/null
TB --- 2013-12-27 03:43:34 - TARGET=pc98
TB --- 2013-12-27 03:43:34 - TARGET_ARCH=i386
TB --- 2013-12-27 03:43:34 - TZ=UTC
TB --- 2013-12-27 03:43:34 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 03:43:34 - cd /src
TB --- 2013-12-27 03:43:34 - /usr/bin/make -B buildworld
 Building an up-to-date make(1)
 World build started on Fri Dec 27 03:43:42 UTC 2013
 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 Dec 27 07:01:48 UTC 2013
TB --- 2013-12-27 07:01:48 - generating LINT kernel config
TB --- 2013-12-27 07:01:48 - cd /src/sys/pc98/conf
TB --- 2013-12-27 07:01:48 - /usr/bin/make -B LINT
TB --- 2013-12-27 07:01:48 - cd /src/sys/pc98/conf
TB --- 2013-12-27 07:01:48 - /usr/sbin/config -m LINT
TB --- 2013-12-27 07:01:48 - building LINT kernel
TB --- 2013-12-27 07:01:48 - CROSS_BUILD_TESTING=YES
TB --- 2013-12-27 07:01:48 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-12-27 07:01:48 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-12-27 07:01:48 - SRCCONF=/dev/null
TB --- 2013-12-27 07:01:48 - TARGET=pc98
TB --- 2013-12-27 07:01:48 - TARGET_ARCH=i386
TB --- 2013-12-27 07:01:48 - TZ=UTC
TB --- 2013-12-27 07:01:48 - __MAKE_CONF=/dev/null
TB --- 2013-12-27 07:01:48 - cd /src
TB --- 2013-12-27 07:01:48 - /usr/bin/make -B buildkernel KERNCONF=LINT
 Kernel build for LINT started on Fri Dec 27 07:01:48 UTC 2013
 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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -nostdinc  -I. -I/src/sys 
-I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include 
opt_global.h -DGPROF -DGPROF4 -DGUPROF -fno-builtin -mno-aes -mno-avx -mno-mmx 
-mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg 
/src/sys/geom/part/g_part_apm.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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -nostdinc  -I. -I/src/sys 
-I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include 
opt_global.h -DGPROF -DGPROF4 -DGUPROF -fno-builtin -mno-aes -mno-avx -mno-mmx 
-mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg 
/src/sys/geom/part/g_part_bsd.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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -nostdinc  -I. -I/src/sys 
-I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include 
opt_global.h -DGPROF -DGPROF4 -DGUPROF -fno-builtin -mno-aes -mno-avx -mno-mmx 
-mno-sse -msoft-float -ffreestanding -fstack-protector -Werror -pg 
/src/sys/geom/part/g_part_ebr.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  
-Wno-error-tautological-compare -Wno-error-empty-body  
-Wno-error-parentheses-equality  -nostdinc  -I. -I/src/sys 
-I/src/sys/contrib/altq -D_KERNEL