Re: zpool labelclear destroys GPT data

2013-06-14 Thread Tom Evans
On Fri, Jun 14, 2013 at 4:49 PM, John Baldwin  wrote:
> Well, you could have zpool check if there is a valid ZFS label and prompt/warn
> if it doesn't find one on whatever device it's about to wipe.  That doesn't
> fix the gmirror/gpt case, but it might make zpool more intuitive to use.

One of the uses of zpool labelclear is to completely wipe the portions
of the disk that ZFS will look at for label information. There is no
pre-condition, the post-condition is that the label areas of the
supplied device will be cleared.

The aim of the command is that the relevant parts of the device are
cleared, regardless of its content, such that they are ready to use as
pristine disks in a vdev.

I suppose if labelclear was made to check for the existence of a
pre-existing ZFS label, the force flag could be used to force the
change… I still don't like it, the command is not called
labelclear-only-if-the-label-area-already-has-sane-data.

Cheers

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

Re: zpool labelclear destroys GPT data

2013-06-14 Thread John Baldwin
On Friday, June 14, 2013 4:21:08 am Daniel O'Connor wrote:
> 
> On 14/06/2013, at 17:48, Alban Hertroys  wrote:
> > IMHO it would be helpful to verify what's there first and warn the user 
about it if such an operation will overwrite a different type of label than 
what is about to get written there.
> > Perhaps it should even refuse to write (by issuing an error stating that 
there is already a label there - and preferably also what type) until the 
label that's already there gets explicitly cleared by the user or until the 
command gets forced.
> > Does that make sense?
> 
> The problem with this is that then each label tool needs to know about every 
other label format you want to detect for..
> 
> If a label format has a checksum then you could ignore a request to nuke the 
label if there is no valid checksum (with a flag to force). No idea how many 
have checksums though..

Well, you could have zpool check if there is a valid ZFS label and prompt/warn 
if it doesn't find one on whatever device it's about to wipe.  That doesn't 
fix the gmirror/gpt case, but it might make zpool more intuitive to use.

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


Re: ACPI Warning, then hang

2013-06-14 Thread John Baldwin
On Monday, June 10, 2013 10:18:47 pm Bryce Edwards wrote:
> Verbose boot:
> 
> https://www.dropbox.com/s/obm8rtavro68ea8/acpi-verbose.jpg

That is odd.  I had expected it to output some other messages.

Hmm, the line two lines up shows your RSDP (list of ACPI tables)
seems to be garbage as well.  I think the BIOS is just broken
I'm afraid. :(

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


Re: Help! :( ZFS panic on boot, importing pool after server crash.

2013-06-14 Thread Volodymyr Kostyrko

14.06.2013 15:51, Dr Josef Karthauser:

On 14 Jun 2013, at 12:00, Volodymyr Kostyrko  wrote:


14.06.2013 12:55, Dr Josef Karthauser:

Hi, I'm a bit at the end of my tether.



p.s. the config, btw, is a ZFS mirror on two ad devices. It's got a ZFS root 
file system.


If you are fairly sure about your devices you can:

1. Remove second disk from pool or create another pool on top of it.

2. Recreate all FS structure on the second disk. You can dump al your FS with 
something like:



Great. Thanks for that.

Have you got a hint as to how I can get access to the root file system? It's 
currently set to have a legacy mount point.  Which means that when I import the 
pool:

# zfs import -o readonly=on -o altroot=/tmp/zfs -f poolname

the root filesystem is missing.  Then if I try and set the mount point:

#zfs set mountpoint=/tmp/zfs2 poolname

it just sits there; probably because the command is blocking on the R/O pool, 
or something.

How do I temporarily remount the root filesystem so that I can get access to 
the files?


mount -t zfs  

Personally when I need to work with such pools I first import the pool 
with -N (nomount) option, then I mount root fs by hand and after that 
goes `zfs mount -a` which handles everything else.


--
Sphinx of black quartz, judge my vow.
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: installworld dtrace problems

2013-06-14 Thread George Neville-Neil

On Jun 14, 2013, at 3:25 , Daniel Braniss  wrote:

> with the latest changes to dtrace, make installworld has problems,
> some directories are not created:
>   /usr/share/dtrace
>   /usr/share/dtrace/toolkit
> 
> creating them is a workaround.
> 

Pointy hat to me.  If no one else addresses this I'll take care of it on Monday.

Best,
George


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


Re: Help! :( ZFS panic on boot, importing pool after server crash.

2013-06-14 Thread Dr Josef Karthauser
On 14 Jun 2013, at 12:00, Volodymyr Kostyrko  wrote:

> 14.06.2013 12:55, Dr Josef Karthauser:
>> Hi, I'm a bit at the end of my tether.

>> p.s. the config, btw, is a ZFS mirror on two ad devices. It's got a ZFS root 
>> file system.
> 
> If you are fairly sure about your devices you can:
> 
> 1. Remove second disk from pool or create another pool on top of it.
> 
> 2. Recreate all FS structure on the second disk. You can dump al your FS with 
> something like:
> 

Great. Thanks for that.

Have you got a hint as to how I can get access to the root file system? It's 
currently set to have a legacy mount point.  Which means that when I import the 
pool:

# zfs import -o readonly=on -o altroot=/tmp/zfs -f poolname

the root filesystem is missing.  Then if I try and set the mount point:

#zfs set mountpoint=/tmp/zfs2 poolname

it just sits there; probably because the command is blocking on the R/O pool, 
or something.

How do I temporarily remount the root filesystem so that I can get access to 
the files?

Thanks,
Joe

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


[releng_8 tinderbox] failure on sparc64/sparc64

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 10:15:09 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 10:15:09 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 10:15:09 - starting RELENG_8 tinderbox run for sparc64/sparc64
TB --- 2013-06-14 10:15:09 - cleaning the object tree
TB --- 2013-06-14 10:15:10 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 10:15:12 - At svn revision 251744
TB --- 2013-06-14 10:15:13 - building world
TB --- 2013-06-14 10:15:13 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 10:15:13 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 10:15:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 10:15:13 - SRCCONF=/dev/null
TB --- 2013-06-14 10:15:13 - TARGET=sparc64
TB --- 2013-06-14 10:15:13 - TARGET_ARCH=sparc64
TB --- 2013-06-14 10:15:13 - TZ=UTC
TB --- 2013-06-14 10:15:13 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 10:15:13 - cd /src
TB --- 2013-06-14 10:15:13 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 10:15:13 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/sparc64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/sparc/sparc.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/sparc64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/sparc64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/sparc64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 10:19:32 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 10:19:32 - ERROR: failed to build world
TB --- 2013-06-14 10:19:32 - 225.12 user 36.28 system 263.32 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-sparc64-sparc64.full
___
freebsd-stable@freebsd.org mailing list
htt

[releng_8 tinderbox] failure on powerpc/powerpc

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 10:14:55 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 10:14:55 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 10:14:55 - starting RELENG_8 tinderbox run for powerpc/powerpc
TB --- 2013-06-14 10:14:55 - cleaning the object tree
TB --- 2013-06-14 10:14:56 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 10:14:59 - At svn revision 251744
TB --- 2013-06-14 10:15:00 - building world
TB --- 2013-06-14 10:15:00 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 10:15:00 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 10:15:00 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 10:15:00 - SRCCONF=/dev/null
TB --- 2013-06-14 10:15:00 - TARGET=powerpc
TB --- 2013-06-14 10:15:00 - TARGET_ARCH=powerpc
TB --- 2013-06-14 10:15:00 - TZ=UTC
TB --- 2013-06-14 10:15:00 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 10:15:00 - cd /src
TB --- 2013-06-14 10:15:00 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 10:15:00 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
[...]
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/rs6000/sysv4.h:285:1: 
warning: "PTRDIFF_TYPE" redefined
In file included from 
/obj/powerpc/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools/tm.h:11,
 from 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:26:
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/freebsd.h:76:1: 
warning: this is the location of the previous definition
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 10:20:06 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 10:20:06 - ERROR: failed to build world
TB --- 2013-06-14 10:20:06 - 270.45 user 37.16 system 310.46 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-powerpc-powerpc.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: Help! :( ZFS panic on boot, importing pool after server crash.

2013-06-14 Thread Volodymyr Kostyrko

14.06.2013 12:55, Dr Josef Karthauser:

Hi, I'm a bit at the end of my tether.

We had a ZFS panic last night on a machine that hosts all my mail and web; it 
was rebooted and it now panics mounting the ZFS root filesystem.

The call stack info is:

solaris assert: ss == NULL, file: 
/usr/src/sys/modules/zfs/../../cddl/contrib/opensource/uts/common/fs/zfs/space_map.c,
 line: 109

kdb_backtrace
panic
space_map_add
space_map_load
metaslab_activate
metaslab_allocate
zio_dva_allocate
zio_execute
taskqueue_run_locked
taskqueue_thread_loop
fork_exit
fork_trampoline

I can boot from the live DVD filesystem, but I can only mount the pool 
read-only without getting the same kernel panic.  This is with FreeBSD 9.0.

The machine is remote, and I don't have access other than through a DRAC 
console port (so I can't cut and paste; sorry for the poor stack trace).

Is anyone here in the position to advice me how I might process to get this 
machine mounting and running again in multi-user mode?


There's no official way.


p.s. the config, btw, is a ZFS mirror on two ad devices. It's got a ZFS root 
file system.


If you are fairly sure about your devices you can:

1. Remove second disk from pool or create another pool on top of it.

2. Recreate all FS structure on the second disk. You can dump al your FS 
with something like:


zfs list -Ho name | xargs -n1 zfs get -H all | awk 
'BEGIN{shard="";output=""}{if(shard!=$1 && shard!=""){output="zfs 
create";for(param in params)output=output" -o "param"="params[param];print
output" "shard;delete 
params;shard=""}}$4~/local/{params[$2]=$3;shard=$1;next}$2~/type/{shard=$1}END{output="zfs 
create";for(param in params)output=output" -o 
"param"="params[param];print output" "shard;}'


Be sure to rename the pool and change the first line.

3. Rsync all data to the second disk.

4. Try to boot from the second disk.

If everything worked you are free to attach first disk to second one to 
create a mirror again.


--
Sphinx of black quartz, judge my vow.
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on amd64/amd64

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 10:10:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 10:10:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 10:10:12 - starting RELENG_8 tinderbox run for amd64/amd64
TB --- 2013-06-14 10:10:12 - cleaning the object tree
TB --- 2013-06-14 10:10:15 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 10:10:19 - At svn revision 251744
TB --- 2013-06-14 10:10:20 - building world
TB --- 2013-06-14 10:10:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 10:10:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 10:10:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 10:10:20 - SRCCONF=/dev/null
TB --- 2013-06-14 10:10:20 - TARGET=amd64
TB --- 2013-06-14 10:10:20 - TARGET_ARCH=amd64
TB --- 2013-06-14 10:10:20 - TZ=UTC
TB --- 2013-06-14 10:10:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 10:10:20 - cd /src
TB --- 2013-06-14 10:10:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 10:10:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/amd64/src/tmp/usr\" 
-I/obj/amd64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/amd64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/i386/i386.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/amd64/src/tmp/usr\" 
-I/obj/amd64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/amd64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/amd64/src/tmp/usr\" 
-I/obj/amd64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/amd64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/amd64/src/tmp/usr\" 
-I/obj/amd64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/amd64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 10:16:21 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 10:16:21 - ERROR: failed to build world
TB --- 2013-06-14 10:16:21 - 317.47 user 45.60 system 369.86 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-amd64-amd64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable

[releng_8 tinderbox] failure on i386/i386

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 10:10:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 10:10:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 10:10:12 - starting RELENG_8 tinderbox run for i386/i386
TB --- 2013-06-14 10:10:12 - cleaning the object tree
TB --- 2013-06-14 10:10:15 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 10:10:19 - At svn revision 251744
TB --- 2013-06-14 10:10:20 - building world
TB --- 2013-06-14 10:10:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 10:10:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 10:10:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 10:10:20 - SRCCONF=/dev/null
TB --- 2013-06-14 10:10:20 - TARGET=i386
TB --- 2013-06-14 10:10:20 - TARGET_ARCH=i386
TB --- 2013-06-14 10:10:20 - TZ=UTC
TB --- 2013-06-14 10:10:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 10:10:20 - cd /src
TB --- 2013-06-14 10:10:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 10:10:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/i386/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/i386/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/i386/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/i386/i386.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/i386/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/i386/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/i386/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/i386/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/i386/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/i386/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/i386/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/i386/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/i386/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 10:15:46 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 10:15:46 - ERROR: failed to build world
TB --- 2013-06-14 10:15:46 - 285.94 user 42.51 system 334.12 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-i386-i386.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To

[releng_8 tinderbox] failure on i386/pc98

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 10:10:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 10:10:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 10:10:12 - starting RELENG_8 tinderbox run for i386/pc98
TB --- 2013-06-14 10:10:12 - cleaning the object tree
TB --- 2013-06-14 10:10:15 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 10:10:19 - At svn revision 251744
TB --- 2013-06-14 10:10:20 - building world
TB --- 2013-06-14 10:10:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 10:10:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 10:10:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 10:10:20 - SRCCONF=/dev/null
TB --- 2013-06-14 10:10:20 - TARGET=pc98
TB --- 2013-06-14 10:10:20 - TARGET_ARCH=i386
TB --- 2013-06-14 10:10:20 - TZ=UTC
TB --- 2013-06-14 10:10:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 10:10:20 - cd /src
TB --- 2013-06-14 10:10:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 10:10:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/pc98/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/pc98/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/pc98/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/i386/i386.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/pc98/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/pc98/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/pc98/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/pc98/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/pc98/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/pc98/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/pc98/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/pc98/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/pc98/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 10:15:45 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 10:15:45 - ERROR: failed to build world
TB --- 2013-06-14 10:15:45 - 286.27 user 41.81 system 333.84 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-i386-pc98.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To

[releng_8 tinderbox] failure on ia64/ia64

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 10:10:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 10:10:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 10:10:12 - starting RELENG_8 tinderbox run for ia64/ia64
TB --- 2013-06-14 10:10:12 - cleaning the object tree
TB --- 2013-06-14 10:10:15 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 10:10:19 - At svn revision 251744
TB --- 2013-06-14 10:10:20 - building world
TB --- 2013-06-14 10:10:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 10:10:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 10:10:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 10:10:20 - SRCCONF=/dev/null
TB --- 2013-06-14 10:10:20 - TARGET=ia64
TB --- 2013-06-14 10:10:20 - TARGET_ARCH=ia64
TB --- 2013-06-14 10:10:20 - TZ=UTC
TB --- 2013-06-14 10:10:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 10:10:20 - cd /src
TB --- 2013-06-14 10:10:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 10:10:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/ia64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/ia64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/ia64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/ia64/ia64-c.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/ia64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/ia64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/ia64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/ia64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/ia64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/ia64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/ia64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/ia64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/ia64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 10:15:18 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 10:15:18 - ERROR: failed to build world
TB --- 2013-06-14 10:15:18 - 258.98 user 41.10 system 306.12 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-ia64-ia64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable

[releng_8 tinderbox] failure on mips/mips

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 10:10:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 10:10:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 10:10:12 - starting RELENG_8 tinderbox run for mips/mips
TB --- 2013-06-14 10:10:12 - cleaning the object tree
TB --- 2013-06-14 10:10:15 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 10:10:19 - At svn revision 251744
TB --- 2013-06-14 10:10:20 - building world
TB --- 2013-06-14 10:10:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 10:10:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 10:10:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 10:10:20 - SRCCONF=/dev/null
TB --- 2013-06-14 10:10:20 - TARGET=mips
TB --- 2013-06-14 10:10:20 - TARGET_ARCH=mips
TB --- 2013-06-14 10:10:20 - TZ=UTC
TB --- 2013-06-14 10:10:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 10:10:20 - cd /src
TB --- 2013-06-14 10:10:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 10:10:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/mips/src/tmp/usr\" 
-DCROSS_COMPILE -DTARGET_ENDIAN_DEFAULT=0 -DMIPS_ABI_DEFAULT=ABI_32 
-DMIPS_CPU_STRING_DEFAULT=\"mips3\" 
-I/obj/mips/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/mips/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/mips/mips.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/mips/src/tmp/usr\" 
-DCROSS_COMPILE -DTARGET_ENDIAN_DEFAULT=0 -DMIPS_ABI_DEFAULT=ABI_32 
-DMIPS_CPU_STRING_DEFAULT=\"mips3\" 
-I/obj/mips/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/mips/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/mips/src/tmp/usr\" 
-DCROSS_COMPILE -DTARGET_ENDIAN_DEFAULT=0 -DMIPS_ABI_DEFAULT=ABI_32 
-DMIPS_CPU_STRING_DEFAULT=\"mips3\" 
-I/obj/mips/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/mips/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/mips/src/tmp/usr\" 
-DCROSS_COMPILE -DTARGET_ENDIAN_DEFAULT=0 -DMIPS_ABI_DEFAULT=ABI_32 
-DMIPS_CPU_STRING_DEFAULT=\"mips3\" 
-I/obj/mips/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/mips/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 10:15:09 - WARNING: /usr/bin/make returned exit 

[releng_8 tinderbox] failure on arm/arm

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 10:10:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 10:10:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 10:10:12 - starting RELENG_8 tinderbox run for arm/arm
TB --- 2013-06-14 10:10:12 - cleaning the object tree
TB --- 2013-06-14 10:10:15 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 10:10:19 - At svn revision 251744
TB --- 2013-06-14 10:10:20 - building world
TB --- 2013-06-14 10:10:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 10:10:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 10:10:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 10:10:20 - SRCCONF=/dev/null
TB --- 2013-06-14 10:10:20 - TARGET=arm
TB --- 2013-06-14 10:10:20 - TARGET_ARCH=arm
TB --- 2013-06-14 10:10:20 - TZ=UTC
TB --- 2013-06-14 10:10:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 10:10:20 - cd /src
TB --- 2013-06-14 10:10:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 10:10:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/arm/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/arm/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/arm/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/arm/arm.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/arm/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/arm/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/arm/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/arm/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/arm/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/arm/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/arm/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/arm/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/arm/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 10:14:54 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 10:14:54 - ERROR: failed to build world
TB --- 2013-06-14 10:14:54 - 236.96 user 39.35 system 282.76 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-arm-arm.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send a

Re: Suggesting a new experimental fork for ports tree

2013-06-14 Thread Jože Zobec
Sorry for not replying earlier, I had a lot of work to do.

We had the discussion about extra fork for ports on the FreeBSD forums too
(few days ago) and they suggested redports. I didn't know before that such
a thing already existed, so it's okay. I apologize for not reasearching the
matter more thoroughly before.

The arguments that John presented are sound and good. I understand now, why
you don't want to officially endorse such an idea. I will give reports a
chance and see what goes.

In any case, thanks for the replies!

Jože


2013/6/13 Julian H. Stacey 

> Hi, Reference:
> > From: =?ISO-8859-2?Q?Jo=BEe_Zobec?= 
> > Date: Wed, 12 Jun 2013 20:04:30 +0200
>
> > Apart from the maintainer of the port, there would also be "sub"
> > maintainerswhich would be those people who helped patch the port into the
> > good shape:
> >
> > # make -C /usr/ports/section/someport maintainer
> >
> > would return the maintainer (1st address) and additional addresses to
> turn
> > for questions. When the port would be committed to the "good" ports tree,
> > sub-maintainers would be left out.
>
> Maybe it'd help to break jozze.zepl's suggestions in to 2 parts ?
> - Working & non working ports tree
> (No comment from me on that)
>
> - Multiple maintainers
>
> I believe MAINTAINER= value is currently a unitary mail address, which
> is [usually] an individual or a freebsd mail list.
> I recall before we've discussed adding names of alternates/ extras,
> (perhaps comma seperated), & that some who maintain
> .mk macros & shell scripts pointed out some difficulties if changed.
>
> Even within the current unchanged syntax,
> handfulls of maintainers might already co-operate on a per port basis,
> with eg
>   MAINTAINER=port_xyz_maintain...@their-domain.com
>
>   their-domain.com /etc/mail/aliases:
> port_xyz_maintainers: port_xyz_maint0, port_xyz_maint1
> port_xyz_maint0:j...@upthehill.com
> port_xyz_maint1:j...@downthehill.com
>
> 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.  No quoted-printable, HTML, base64,
> multipart/alternative.
>
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Help! :( ZFS panic on boot, importing pool after server crash.

2013-06-14 Thread Dr Josef Karthauser
Hi, I'm a bit at the end of my tether.

We had a ZFS panic last night on a machine that hosts all my mail and web; it 
was rebooted and it now panics mounting the ZFS root filesystem.

The call stack info is:

solaris assert: ss == NULL, file: 
/usr/src/sys/modules/zfs/../../cddl/contrib/opensource/uts/common/fs/zfs/space_map.c,
 line: 109

kdb_backtrace
panic
space_map_add
space_map_load
metaslab_activate
metaslab_allocate
zio_dva_allocate
zio_execute
taskqueue_run_locked
taskqueue_thread_loop
fork_exit
fork_trampoline

I can boot from the live DVD filesystem, but I can only mount the pool 
read-only without getting the same kernel panic.  This is with FreeBSD 9.0.

The machine is remote, and I don't have access other than through a DRAC 
console port (so I can't cut and paste; sorry for the poor stack trace).

Is anyone here in the position to advice me how I might process to get this 
machine mounting and running again in multi-user mode?

Thanks so much.
Joe

p.s. the config, btw, is a ZFS mirror on two ad devices. It's got a ZFS root 
file system.
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: zpool labelclear destroys GPT data

2013-06-14 Thread Daniel O'Connor

On 14/06/2013, at 18:16, Alban Hertroys  wrote:
>> The problem with this is that then each label tool needs to know about every 
>> other label format you want to detect for..
> 
> Isn't it possible to add such information to labels, so that the tools at 
> least know "who" to ask what they're dealing with?
> 
Not really, the format of the labels is fixed, and there is no standard way 
they are arranged.

> If there is no guaranteed method of identifying "data" on the disk as a 
> label, then you can't warn the user in all cases. That's not particularly 
> helpful for those cases where you can't warn the user. That's possibly a 
> worse situation than what started this thread.

Being warned some of the time seems better than none of the time.

--
Daniel O'Connor software and network engineer
for Genesis Software - http://www.gsoft.com.au
"The nice thing about standards is that there
are so many of them to choose from."
  -- Andrew Tanenbaum
GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C






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


Re: zpool labelclear destroys GPT data

2013-06-14 Thread Alban Hertroys
On 14 June 2013 10:21, Daniel O'Connor  wrote:

>
> On 14/06/2013, at 17:48, Alban Hertroys  wrote:
> > IMHO it would be helpful to verify what's there first and warn the user
> about it if such an operation will overwrite a different type of label than
> what is about to get written there.
> > Perhaps it should even refuse to write (by issuing an error stating that
> there is already a label there - and preferably also what type) until the
> label that's already there gets explicitly cleared by the user or until the
> command gets forced.
> > Does that make sense?
>
> The problem with this is that then each label tool needs to know about
> every other label format you want to detect for..
>

Isn't it possible to add such information to labels, so that the tools at
least know "who" to ask what they're dealing with?

>
> If a label format has a checksum then you could ignore a request to nuke
> the label if there is no valid checksum (with a flag to force). No idea how
> many have checksums though..
>

If there is no guaranteed method of identifying "data" on the disk as a
label, then you can't warn the user in all cases. That's not particularly
helpful for those cases where you can't warn the user. That's possibly a
worse situation than what started this thread.

-- 
If you can't see the forest for the trees,
Cut the trees and you'll see there is no forest.
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: zpool labelclear destroys GPT data

2013-06-14 Thread Daniel O'Connor

On 14/06/2013, at 17:48, Alban Hertroys  wrote:
> IMHO it would be helpful to verify what's there first and warn the user about 
> it if such an operation will overwrite a different type of label than what is 
> about to get written there.
> Perhaps it should even refuse to write (by issuing an error stating that 
> there is already a label there - and preferably also what type) until the 
> label that's already there gets explicitly cleared by the user or until the 
> command gets forced.
> Does that make sense?

The problem with this is that then each label tool needs to know about every 
other label format you want to detect for..

If a label format has a checksum then you could ignore a request to nuke the 
label if there is no valid checksum (with a flag to force). No idea how many 
have checksums though..

--
Daniel O'Connor software and network engineer
for Genesis Software - http://www.gsoft.com.au
"The nice thing about standards is that there
are so many of them to choose from."
  -- Andrew Tanenbaum
GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C






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


Re: zpool labelclear destroys GPT data

2013-06-14 Thread Alban Hertroys
On 14 June 2013 10:02, Daniel O'Connor  wrote:

>
> On 14/06/2013, at 17:05, Johan Hendriks  wrote:
> >> Of course, zpool(8) will do exactly what you tell it to do. It does
> >> not know about any partitioning schemes and assumes that the user
> >> knows that using labelclear on a the whole disk will potentially
> >> destroy all data on it including any partitioning information.
> >>
> > Well as i found out, zpool(8) does not know what it clears. ! :D
> >
> > I think an adjustment to the man page is in order here.
> > The man page clearly state it removes ZFS labels, not GPT, gmirror and
> glabel labels.
> > It should mention it will remove labels from the disk/device, and that
> it clears ALL labels.
> >
> > If a user reads the man page it now looks save to use labelclear.
> > I thougt that zpool would know if there was zpool label information on
> the disk, and if i a case there is no ZFS label information it will tell me
> that!
> > In my case i did not loose anything, so no big deal but there will
> proberbly be someone who gets bitten by this.
> >
> > A plus is that  i found a new way to clear my disks fast ! ;)
>
>
> It only clears ZFS labels, just because GPT & gmirror information sits in
> a similar place doesn't make that incorrect.
>
> You are saying the equivalent of..
> Why does "dd if=/dev/zero of=/dev/da0" erase my whole disk, not just the
> first partition?
>
> ie you are giving the tool bad options and then complaining when it
> doesn't do what you meant :)
>
> Perhaps it should be modified to check if there is valid ZFS data there
> before proceeding (although that could be annoying unless there is a way to
> force it), and/or the man page could be amended to say it doesn't do any
> checks before erasing things.
>

The same goes for several geom labels. For example, if you write a
geom_mirror label to a GPT-partitioned disk (as opposed to writing it to a
partition within that disk), you overwrite the backup GPT table. I got
recently warned not to do that (it didn't apply in my case, but still).

IMHO it would be helpful to verify what's there first and warn the user
about it if such an operation will overwrite a different type of label than
what is about to get written there.
Perhaps it should even refuse to write (by issuing an error stating that
there is already a label there - and preferably also what type) until the
label that's already there gets explicitly cleared by the user or until the
command gets forced.
Does that make sense?

If you can't see the forest for the trees,
Cut the trees and you'll see there is no forest.
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


Re: zpool labelclear destroys GPT data

2013-06-14 Thread Daniel O'Connor

On 14/06/2013, at 17:05, Johan Hendriks  wrote:
>> Of course, zpool(8) will do exactly what you tell it to do. It does
>> not know about any partitioning schemes and assumes that the user
>> knows that using labelclear on a the whole disk will potentially
>> destroy all data on it including any partitioning information.
>> 
> Well as i found out, zpool(8) does not know what it clears. ! :D
> 
> I think an adjustment to the man page is in order here.
> The man page clearly state it removes ZFS labels, not GPT, gmirror and glabel 
> labels.
> It should mention it will remove labels from the disk/device, and that it 
> clears ALL labels.
> 
> If a user reads the man page it now looks save to use labelclear.
> I thougt that zpool would know if there was zpool label information on the 
> disk, and if i a case there is no ZFS label information it will tell me that!
> In my case i did not loose anything, so no big deal but there will proberbly 
> be someone who gets bitten by this.
> 
> A plus is that  i found a new way to clear my disks fast ! ;)


It only clears ZFS labels, just because GPT & gmirror information sits in a 
similar place doesn't make that incorrect.

You are saying the equivalent of..
Why does "dd if=/dev/zero of=/dev/da0" erase my whole disk, not just the first 
partition?

ie you are giving the tool bad options and then complaining when it doesn't do 
what you meant :)

Perhaps it should be modified to check if there is valid ZFS data there before 
proceeding (although that could be annoying unless there is a way to force it), 
and/or the man page could be amended to say it doesn't do any checks before 
erasing things.

--
Daniel O'Connor software and network engineer
for Genesis Software - http://www.gsoft.com.au
"The nice thing about standards is that there
are so many of them to choose from."
  -- Andrew Tanenbaum
GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C






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


[releng_8 tinderbox] failure on powerpc/powerpc

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 07:44:57 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 07:44:57 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 07:44:57 - starting RELENG_8 tinderbox run for powerpc/powerpc
TB --- 2013-06-14 07:44:57 - cleaning the object tree
TB --- 2013-06-14 07:44:58 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 07:45:00 - At svn revision 251736
TB --- 2013-06-14 07:45:01 - building world
TB --- 2013-06-14 07:45:01 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 07:45:01 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 07:45:01 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 07:45:01 - SRCCONF=/dev/null
TB --- 2013-06-14 07:45:01 - TARGET=powerpc
TB --- 2013-06-14 07:45:01 - TARGET_ARCH=powerpc
TB --- 2013-06-14 07:45:01 - TZ=UTC
TB --- 2013-06-14 07:45:01 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 07:45:01 - cd /src
TB --- 2013-06-14 07:45:01 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 07:45:02 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
[...]
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/rs6000/sysv4.h:285:1: 
warning: "PTRDIFF_TYPE" redefined
In file included from 
/obj/powerpc/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools/tm.h:11,
 from 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:26:
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/freebsd.h:76:1: 
warning: this is the location of the previous definition
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 07:50:10 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 07:50:10 - ERROR: failed to build world
TB --- 2013-06-14 07:50:10 - 270.98 user 38.86 system 312.99 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-powerpc-powerpc.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"


[releng_8 tinderbox] failure on sparc64/sparc64

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 07:45:11 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 07:45:11 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 07:45:11 - starting RELENG_8 tinderbox run for sparc64/sparc64
TB --- 2013-06-14 07:45:11 - cleaning the object tree
TB --- 2013-06-14 07:45:12 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 07:45:14 - At svn revision 251736
TB --- 2013-06-14 07:45:15 - building world
TB --- 2013-06-14 07:45:15 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 07:45:15 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 07:45:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 07:45:15 - SRCCONF=/dev/null
TB --- 2013-06-14 07:45:15 - TARGET=sparc64
TB --- 2013-06-14 07:45:15 - TARGET_ARCH=sparc64
TB --- 2013-06-14 07:45:15 - TZ=UTC
TB --- 2013-06-14 07:45:15 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 07:45:15 - cd /src
TB --- 2013-06-14 07:45:15 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 07:45:16 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/sparc64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/sparc/sparc.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/sparc64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/sparc64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/sparc64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 07:49:36 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 07:49:36 - ERROR: failed to build world
TB --- 2013-06-14 07:49:36 - 226.46 user 36.68 system 265.01 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-sparc64-sparc64.full
___
freebsd-stable@freebsd.org mailing list
htt

[releng_8 tinderbox] failure on amd64/amd64

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 07:40:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 07:40:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 07:40:12 - starting RELENG_8 tinderbox run for amd64/amd64
TB --- 2013-06-14 07:40:12 - cleaning the object tree
TB --- 2013-06-14 07:40:14 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 07:40:19 - At svn revision 251736
TB --- 2013-06-14 07:40:20 - building world
TB --- 2013-06-14 07:40:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 07:40:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 07:40:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 07:40:20 - SRCCONF=/dev/null
TB --- 2013-06-14 07:40:20 - TARGET=amd64
TB --- 2013-06-14 07:40:20 - TARGET_ARCH=amd64
TB --- 2013-06-14 07:40:20 - TZ=UTC
TB --- 2013-06-14 07:40:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 07:40:20 - cd /src
TB --- 2013-06-14 07:40:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 07:40:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/amd64/src/tmp/usr\" 
-I/obj/amd64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/amd64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/i386/i386.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/amd64/src/tmp/usr\" 
-I/obj/amd64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/amd64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/amd64/src/tmp/usr\" 
-I/obj/amd64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/amd64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/amd64/src/tmp/usr\" 
-I/obj/amd64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/amd64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 07:46:26 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 07:46:26 - ERROR: failed to build world
TB --- 2013-06-14 07:46:26 - 319.22 user 47.92 system 373.97 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-amd64-amd64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable

[releng_8 tinderbox] failure on i386/i386

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 07:40:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 07:40:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 07:40:12 - starting RELENG_8 tinderbox run for i386/i386
TB --- 2013-06-14 07:40:12 - cleaning the object tree
TB --- 2013-06-14 07:40:14 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 07:40:19 - At svn revision 251736
TB --- 2013-06-14 07:40:20 - building world
TB --- 2013-06-14 07:40:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 07:40:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 07:40:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 07:40:20 - SRCCONF=/dev/null
TB --- 2013-06-14 07:40:20 - TARGET=i386
TB --- 2013-06-14 07:40:20 - TARGET_ARCH=i386
TB --- 2013-06-14 07:40:20 - TZ=UTC
TB --- 2013-06-14 07:40:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 07:40:20 - cd /src
TB --- 2013-06-14 07:40:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 07:40:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/i386/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/i386/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/i386/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/i386/i386.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/i386/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/i386/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/i386/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/i386/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/i386/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/i386/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/i386/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/i386/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/i386/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 07:45:49 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 07:45:49 - ERROR: failed to build world
TB --- 2013-06-14 07:45:49 - 288.24 user 43.66 system 337.11 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-i386-i386.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To

[releng_8 tinderbox] failure on i386/pc98

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 07:40:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 07:40:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 07:40:12 - starting RELENG_8 tinderbox run for i386/pc98
TB --- 2013-06-14 07:40:12 - cleaning the object tree
TB --- 2013-06-14 07:40:14 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 07:40:19 - At svn revision 251736
TB --- 2013-06-14 07:40:20 - building world
TB --- 2013-06-14 07:40:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 07:40:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 07:40:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 07:40:20 - SRCCONF=/dev/null
TB --- 2013-06-14 07:40:20 - TARGET=pc98
TB --- 2013-06-14 07:40:20 - TARGET_ARCH=i386
TB --- 2013-06-14 07:40:20 - TZ=UTC
TB --- 2013-06-14 07:40:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 07:40:20 - cd /src
TB --- 2013-06-14 07:40:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 07:40:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/pc98/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/pc98/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/pc98/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/i386/i386.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/pc98/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/pc98/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/pc98/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/pc98/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/pc98/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/pc98/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/pc98/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/pc98/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/pc98/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 07:45:48 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 07:45:48 - ERROR: failed to build world
TB --- 2013-06-14 07:45:48 - 288.15 user 43.35 system 336.80 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-i386-pc98.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To

[releng_8 tinderbox] failure on ia64/ia64

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 07:40:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 07:40:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 07:40:12 - starting RELENG_8 tinderbox run for ia64/ia64
TB --- 2013-06-14 07:40:12 - cleaning the object tree
TB --- 2013-06-14 07:40:14 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 07:40:19 - At svn revision 251736
TB --- 2013-06-14 07:40:20 - building world
TB --- 2013-06-14 07:40:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 07:40:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 07:40:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 07:40:20 - SRCCONF=/dev/null
TB --- 2013-06-14 07:40:20 - TARGET=ia64
TB --- 2013-06-14 07:40:20 - TARGET_ARCH=ia64
TB --- 2013-06-14 07:40:20 - TZ=UTC
TB --- 2013-06-14 07:40:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 07:40:20 - cd /src
TB --- 2013-06-14 07:40:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 07:40:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/ia64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/ia64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/ia64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/ia64/ia64-c.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/ia64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/ia64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/ia64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/ia64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/ia64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/ia64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/ia64/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/ia64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/ia64/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 07:45:20 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 07:45:20 - ERROR: failed to build world
TB --- 2013-06-14 07:45:20 - 260.26 user 42.66 system 308.53 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-ia64-ia64.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable

[releng_8 tinderbox] failure on mips/mips

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 07:40:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 07:40:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 07:40:12 - starting RELENG_8 tinderbox run for mips/mips
TB --- 2013-06-14 07:40:12 - cleaning the object tree
TB --- 2013-06-14 07:40:14 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 07:40:19 - At svn revision 251736
TB --- 2013-06-14 07:40:20 - building world
TB --- 2013-06-14 07:40:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 07:40:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 07:40:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 07:40:20 - SRCCONF=/dev/null
TB --- 2013-06-14 07:40:20 - TARGET=mips
TB --- 2013-06-14 07:40:20 - TARGET_ARCH=mips
TB --- 2013-06-14 07:40:20 - TZ=UTC
TB --- 2013-06-14 07:40:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 07:40:20 - cd /src
TB --- 2013-06-14 07:40:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 07:40:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/mips/src/tmp/usr\" 
-DCROSS_COMPILE -DTARGET_ENDIAN_DEFAULT=0 -DMIPS_ABI_DEFAULT=ABI_32 
-DMIPS_CPU_STRING_DEFAULT=\"mips3\" 
-I/obj/mips/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/mips/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/mips/mips.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/mips/src/tmp/usr\" 
-DCROSS_COMPILE -DTARGET_ENDIAN_DEFAULT=0 -DMIPS_ABI_DEFAULT=ABI_32 
-DMIPS_CPU_STRING_DEFAULT=\"mips3\" 
-I/obj/mips/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/mips/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/mips/src/tmp/usr\" 
-DCROSS_COMPILE -DTARGET_ENDIAN_DEFAULT=0 -DMIPS_ABI_DEFAULT=ABI_32 
-DMIPS_CPU_STRING_DEFAULT=\"mips3\" 
-I/obj/mips/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/mips/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/mips/src/tmp/usr\" 
-DCROSS_COMPILE -DTARGET_ENDIAN_DEFAULT=0 -DMIPS_ABI_DEFAULT=ABI_32 
-DMIPS_CPU_STRING_DEFAULT=\"mips3\" 
-I/obj/mips/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/mips/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 07:45:11 - WARNING: /usr/bin/make returned exit 

[releng_8 tinderbox] failure on arm/arm

2013-06-14 Thread FreeBSD Tinderbox
TB --- 2013-06-14 07:40:12 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca
TB --- 2013-06-14 07:40:12 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE 
FreeBSD 9.1-RELEASE #0 r243825: Tue Dec  4 09:23:10 UTC 2012 
r...@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  amd64
TB --- 2013-06-14 07:40:12 - starting RELENG_8 tinderbox run for arm/arm
TB --- 2013-06-14 07:40:12 - cleaning the object tree
TB --- 2013-06-14 07:40:14 - /usr/local/bin/svn stat /src
TB --- 2013-06-14 07:40:19 - At svn revision 251736
TB --- 2013-06-14 07:40:20 - building world
TB --- 2013-06-14 07:40:20 - CROSS_BUILD_TESTING=YES
TB --- 2013-06-14 07:40:20 - MAKEOBJDIRPREFIX=/obj
TB --- 2013-06-14 07:40:20 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2013-06-14 07:40:20 - SRCCONF=/dev/null
TB --- 2013-06-14 07:40:20 - TARGET=arm
TB --- 2013-06-14 07:40:20 - TARGET_ARCH=arm
TB --- 2013-06-14 07:40:20 - TZ=UTC
TB --- 2013-06-14 07:40:20 - __MAKE_CONF=/dev/null
TB --- 2013-06-14 07:40:20 - cd /src
TB --- 2013-06-14 07:40:20 - /usr/bin/make -B buildworld
>>> World build started on Fri Jun 14 07:40:20 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
[...]
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/arm/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/arm/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/arm/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/arm/arm.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/arm/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/arm/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/arm/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/arm/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/arm/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/arm/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c
cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/arm/src/tmp/usr\" 
-DCROSS_COMPILE -I/obj/arm/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../cc_tools 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include 
-I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber   
-I/obj/arm/src/tmp/legacy/usr/include -c 
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 
'interpret_float':
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 
'CPP_N_DEFAULT' undeclared (first use in this function)
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each 
undeclared identifier is reported only once
/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each 
function it appears in.)
*** [c-lex.o] Error code 1

Stop in /src/gnu/usr.bin/cc/cc_int.
*** [all] Error code 1

Stop in /src/gnu/usr.bin/cc.
*** [cross-tools] Error code 1

Stop in /src.
*** [_cross-tools] Error code 1

Stop in /src.
*** [buildworld] Error code 1

Stop in /src.
TB --- 2013-06-14 07:44:57 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2013-06-14 07:44:57 - ERROR: failed to build world
TB --- 2013-06-14 07:44:57 - 239.15 user 40.03 system 285.28 real


http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-arm-arm.full
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send a

Re: zpool labelclear destroys GPT data

2013-06-14 Thread Florent Peterschmitt
Le 14/06/2013 09:35, Johan Hendriks a écrit :
> Kimmo Paasiala schreef:
>> On Fri, Jun 14, 2013 at 12:22 AM, Johan Hendriks
>>  wrote:
>>> Op 13-6-2013 14:40, Kimmo Paasiala schreef:
>>>
 The 'device' can be a partition as well as the whole disk, use 'zpool
 labelclear' on the freebsd-zfs partition instead of the whole disk.

 -Kimmo

 On Thu, Jun 13, 2013 at 3:29 PM, Johan Hendriks
 
 wrote:
> When i use zpool labelclear, it wipes the whole disk including gpt
> data.
> So the whole disk is empty and i need to create the gpt partitions
> again.
>
> Is this supposed to work like this?
> The man page suggests that it only wipes the ZFS metadata.
>
> zpool labelclear [-f] device
>
>Removes ZFS label information from the specified device.
> The
> device
>must not be part of an active pool configuration.
>
>-v  Treat exported or foreign devices as inactive.
>
> This is on FreeBSD 9.1 stable r251213 memstick install.
>
> regards
>
> Johan Hendriks
> Neuteboom Automatisering
> ___
> freebsd-stable@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-stable
> To unsubscribe, send any mail to
> "freebsd-stable-unsubscr...@freebsd.org"
>>> Thanks for your reply.
>>> I will try it on the actual zfs partition.
>>>
>>> But imho it is a bad thing that it destroys the whole disk layout.
>>> It does not remove ZFS label information, it removes ALL label
>>> information
>>> on the disk or device you give it
>>>
>>>
>>> regards
>>> Johan Hendriks
>>> Neuteboom Automatisering
>>>
>> Of course, zpool(8) will do exactly what you tell it to do. It does
>> not know about any partitioning schemes and assumes that the user
>> knows that using labelclear on a the whole disk will potentially
>> destroy all data on it including any partitioning information.
>>
>> -Kimmo
> Well as i found out, zpool(8) does not know what it clears. ! :D
> 
> I think an adjustment to the man page is in order here.
> The man page clearly state it removes ZFS labels, not GPT, gmirror and
> glabel labels.
> It should mention it will remove labels from the disk/device, and that
> it clears ALL labels.

I agree with that, I thought too that zpool cleared only ZFS related
labels. Thankfully no damage for me because it was in a script that wipe
out the entire disk.

> regards
> Johan Hendriks

-- 
Florent Peterschmitt   | Please:
flor...@peterschmitt.fr|  * Avoid HTML/RTF in E-mail.
+33 (0)6 64 33 97 92   |  * Send PDF for documents.
http://florent.peterschmitt.fr | Thank you :)



signature.asc
Description: OpenPGP digital signature


installworld dtrace problems

2013-06-14 Thread Daniel Braniss
with the latest changes to dtrace, make installworld has problems,
some directories are not created:
/usr/share/dtrace
/usr/share/dtrace/toolkit

creating them is a workaround.

danny


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


Re: zpool labelclear destroys GPT data

2013-06-14 Thread Johan Hendriks

Kimmo Paasiala schreef:

On Fri, Jun 14, 2013 at 12:22 AM, Johan Hendriks  wrote:

Op 13-6-2013 14:40, Kimmo Paasiala schreef:


The 'device' can be a partition as well as the whole disk, use 'zpool
labelclear' on the freebsd-zfs partition instead of the whole disk.

-Kimmo

On Thu, Jun 13, 2013 at 3:29 PM, Johan Hendriks 
wrote:

When i use zpool labelclear, it wipes the whole disk including gpt data.
So the whole disk is empty and i need to create the gpt partitions again.

Is this supposed to work like this?
The man page suggests that it only wipes the ZFS metadata.

zpool labelclear [-f] device

   Removes ZFS label information from the specified device. The
device
   must not be part of an active pool configuration.

   -v  Treat exported or foreign devices as inactive.

This is on FreeBSD 9.1 stable r251213 memstick install.

regards

Johan Hendriks
Neuteboom Automatisering
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"

Thanks for your reply.
I will try it on the actual zfs partition.

But imho it is a bad thing that it destroys the whole disk layout.
It does not remove ZFS label information, it removes ALL label information
on the disk or device you give it


regards
Johan Hendriks
Neuteboom Automatisering


Of course, zpool(8) will do exactly what you tell it to do. It does
not know about any partitioning schemes and assumes that the user
knows that using labelclear on a the whole disk will potentially
destroy all data on it including any partitioning information.

-Kimmo

Well as i found out, zpool(8) does not know what it clears. ! :D

I think an adjustment to the man page is in order here.
The man page clearly state it removes ZFS labels, not GPT, gmirror and 
glabel labels.
It should mention it will remove labels from the disk/device, and that 
it clears ALL labels.


If a user reads the man page it now looks save to use labelclear.
I thougt that zpool would know if there was zpool label information on 
the disk, and if i a case there is no ZFS label information it will tell 
me that!
In my case i did not loose anything, so no big deal but there will 
proberbly be someone who gets bitten by this.


A plus is that  i found a new way to clear my disks fast ! ;)

regards
Johan Hendriks
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"