Re: rc.d script to load kernel modules

2011-06-12 Thread Buganini
If kldload could work in parallel,
this https://github.com/buganini/brackets may help.


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


Re: rc.d script to load kernel modules

2011-06-12 Thread Gustau Pérez
Al 12/06/11 10:56, En/na Jason Hellenthal ha escrit:
>
> umass for one I could see how it would speed up your boot since you
> would not have to probe for USB devices to possibly mount root from but
> not a big show stopper for those who don't need that so this would come
> in handy in that case but could also be handled by devd more elequently.
>
> coretemp ichwd linux nvidia if_wpi: I can't really see how this would
> speed up booting at all since the same initialization is going to be
> done after root is mounted or before root is mounted. Whats the
> difference here ?
>
>
> Cutting modules out of the kernel in general does help speed up booting
> but loading those same modules later in the boot process will just lead
> you back to the same boot time. So all in all this would be just
> subverting what loader.conf already does quite nicely... just loads.
>

  I wouldn't say that. There are cases where kldloading modules from
loader.conf take longer than kldloading them from rc.d scripts.

  For example, in my case, I'm booting from a zfs-only installation.
Kldloading a ten or twelve modules in loader.conf takes a long time
compared to a UFS-only installation. Moving them to a rc.d script would
allow me to save a lot of time during the boot process.

  I do agree that it is dangerous to move certain modules like umass
from loader.conf. For example, a NAS or pfsense installation would like
to mount a umass device as the root filesystem. So I think this case is
a little bit complicated. A brief messages explaining that umass needs
to be kldloaded from loader.conf in the case of a usb as the root
filesystem would be enough.

  So if we plan to have the possibility to do zfs-only installations in
a near future (I think pcbsd people would love this) I think it is not a
bad idea to move the kldloading of certain modules from loader.conf to
the rc infrastructure.

  Best regards,

  Gustau

  


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


FreeBSD 9.0-CUR/amd64 CLANG: howto use gcc __builtin_ia32?

2011-06-12 Thread Hartmann, O.
I use some numerical code utilizing the SIMD units of modern X86 
architectures. Code compiles well using gcc/gcc46,
but clang does not know about the __builtin_ia32_x() statements. How 
to treat those in clang and how to make

C code compiling with clang utilizing those __builtin_ia32 statements?

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


Re: rc.d script to load kernel modules

2011-06-12 Thread Doug Barton

On 6/12/2011 1:56 AM, Jason Hellenthal wrote:


Cutting modules out of the kernel in general does help speed up booting
but loading those same modules later in the boot process will just lead
you back to the same boot time.


Loading modules via loader.conf is many times slower than doing it from 
disk after the system is partially booted. (As in, 2-3 seconds per 
module vs. nearly instantaneous for all 6.)


I didn't offer my list as an example of what to do, I offered it as a 
syntax example. I would of course expect people to use appropriate 
discretion to load things in loader.conf that are necessary for boot. 
(Of course, the fact that people can easily get this wrong is a strike 
against the technique.)


There is no point in having an _enable for this script because if the 
kld_list is empty, nothing happens.



--

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

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


Re: rc.d script to load kernel modules

2011-06-12 Thread Doug Barton

On 6/12/2011 11:56 AM, Jason Hellenthal wrote:


So technically here a ZFS only install is lacking the speed in which
modules are loaded.


It has nothing to do with zfs. It has to do with how the kernel and 
modules are loaded at boot time, vs. after the disks are up. Please read 
the threads on -arch and the svn list before proceeding.



I would prefer to find out why and fix that before
we go about adding new functionality to rcNG.


It's rc.d. It isn't "next generation" anymore.


Personally after giving this some more thought I would not mind seeing
the same syntax as in loader.conf brought to rc.conf.


Absolutely not. That would not fit into the way we do things at all, and 
would essentially require /etc/rc to do the processing, which is a huge 
step in the wrong direction.



--

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

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


Re: rc.d script to load kernel modules

2011-06-12 Thread Doug Barton

On 6/12/2011 12:05 PM, Jason Hellenthal wrote:

Any opposition for keeping the syntax of loader.conf ?

nullfs_load="YES"


Yes, see my other message on this point.


--

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

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


Re: rc.d script to load kernel modules

2011-06-12 Thread Gary Palmer
On Sun, Jun 12, 2011 at 02:56:31PM -0400, Jason Hellenthal wrote:
> So technically here a ZFS only install is lacking the speed in which
> modules are loaded. I would prefer to find out why and fix that before
> we go about adding new functionality to rcNG.

As I believe Doug has already said, its not just loading modules from ZFS.
In my experience, loading modules via loader.conf from UFS on i386 is
significantly slower than once the kernel has booted on both of my systems
here.  I think I've tried it and its not a disk thing as its slow loading from
flash media also.

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


Re: rc.d script to load kernel modules

2011-06-12 Thread Doug Barton

On 6/12/2011 12:16 PM, Jason Hellenthal wrote:


Doug,

On Sun, Jun 12, 2011 at 12:00:56PM -0700, Doug Barton wrote:


Absolutely not. That would not fit into the way we do things at all, and
would essentially require /etc/rc to do the processing, which is a huge
step in the wrong direction.



Ok can you explain this ? I am not seeing how /etc/rc would all of a
sudden have to jump in to do the proccessing anymore than it would with
the original patch ?


Ok, what do you propose the mechanism should be to process all of the 
*_load variables? And why do you think it's preferable to do it that way 
rather than simply listing the modules to load? (Other than, "that's the 
way it's done in loader.conf" which I don't think is important.) Oh, and 
btw, one benefit of the list (albeit a minor one) is being able to load 
them in order. An additional problem with *_load in rc.conf is that it 
prevents any other rc.d script from using ${name}_load as an option 
(which should be a hint as to another reason why this is a very bad idea).



"That would not fit into the way we do things at all" funny because
thats exactly how we have been doing things in loader.conf for some odd
umpteen years plus. Unless I misunderstood how you meant this ?.


What do loader.conf and rc.conf have to do with one another? I'll save 
you the time, absolutely nothing (except ".conf" of course). They are 
completely different mechanisms processed by completely different back 
ends.


I'm actually not trying to be rude here, this is just such a terrible 
idea that I'm surprised someone as smart as you are suggested it. If 
this explanation isn't sufficient, feel free to submit a diff that 
implements your suggestion. Maybe working through it will make it more 
clear.


--

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

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


Re: rc.d script to load kernel modules

2011-06-12 Thread Garrett Cooper
On Sun, Jun 12, 2011 at 12:24 PM, Gary Palmer  wrote:
> On Sun, Jun 12, 2011 at 02:56:31PM -0400, Jason Hellenthal wrote:
>> So technically here a ZFS only install is lacking the speed in which
>> modules are loaded. I would prefer to find out why and fix that before
>> we go about adding new functionality to rcNG.
>
> As I believe Doug has already said, its not just loading modules from ZFS.
> In my experience, loading modules via loader.conf from UFS on i386 is
> significantly slower than once the kernel has booted on both of my systems
> here.  I think I've tried it and its not a disk thing as its slow loading from
> flash media also.

Dumb questions:
1. Has anyone benchmarked the two methods in parallel? If so
what's the delta?
2. Has anyone tried to determine why it is that way?
Thanks,
-Garrett
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Re: rc.d script to load kernel modules

2011-06-12 Thread Doug Barton

On 6/12/2011 12:34 PM, Garrett Cooper wrote:

On Sun, Jun 12, 2011 at 12:24 PM, Gary Palmer  wrote:

On Sun, Jun 12, 2011 at 02:56:31PM -0400, Jason Hellenthal wrote:

So technically here a ZFS only install is lacking the speed in which
modules are loaded. I would prefer to find out why and fix that before
we go about adding new functionality to rcNG.


As I believe Doug has already said, its not just loading modules from ZFS.
In my experience, loading modules via loader.conf from UFS on i386 is
significantly slower than once the kernel has booted on both of my systems
here.  I think I've tried it and its not a disk thing as its slow loading from
flash media also.


 Dumb questions:


0. Does anyone actually read what I write?


 1. Has anyone benchmarked the two methods in parallel? If so
what's the delta?


As I've said several times now ... Loading modules in the boot loader 
takes an average of 2 seconds per module. Loading 6 of them from disk 
happens so fast I can't read the probe messages in real time. (I.e., 
less than 1 second total for all 6.)



 2. Has anyone tried to determine why it is that way?


Repeating myself again ... read the threads on -arch and the svn list. 
There you will find the answers from people a lot smarter than I. Short 
version, it's a known issue that cannot be changed.


--

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

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


Re: rc.d script to load kernel modules

2011-06-12 Thread Doug Barton

On 6/12/2011 12:42 PM, Jason Hellenthal wrote:


Yes I agree. I was just stating that simply for the previous post
implying where ZFS was slower than UFS.


No, it wasn't. You completely fail to understand the problem. Stop 
writing, and start reading. As in, read the threads on both -arch and 
the svn list, and this entire thread again, then wait an hour or two 
before posting anything else. (Yes, I'm serious)


--

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

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


Re: rc.d script to load kernel modules

2011-06-12 Thread Kevin Oberman
> Date: Sun, 12 Jun 2011 12:42:28 -0700
> From: Doug Barton 
> Sender: owner-freebsd-curr...@freebsd.org
> 
> On 6/12/2011 12:34 PM, Garrett Cooper wrote:
> > On Sun, Jun 12, 2011 at 12:24 PM, Gary Palmer  wrote:
> >> On Sun, Jun 12, 2011 at 02:56:31PM -0400, Jason Hellenthal wrote:
> >>> So technically here a ZFS only install is lacking the speed in which
> >>> modules are loaded. I would prefer to find out why and fix that before
> >>> we go about adding new functionality to rcNG.
> >>
> >> As I believe Doug has already said, its not just loading modules from ZFS.
> >> In my experience, loading modules via loader.conf from UFS on i386 is
> >> significantly slower than once the kernel has booted on both of my systems
> >> here.  I think I've tried it and its not a disk thing as its slow loading 
> >> from
> >> flash media also.
> >
> >  Dumb questions:
> 
> 0. Does anyone actually read what I write?
> 
> >  1. Has anyone benchmarked the two methods in parallel? If so
> > what's the delta?
> 
> As I've said several times now ... Loading modules in the boot loader 
> takes an average of 2 seconds per module. Loading 6 of them from disk 
> happens so fast I can't read the probe messages in real time. (I.e., 
> less than 1 second total for all 6.)
> 
> >  2. Has anyone tried to determine why it is that way?
> 
> Repeating myself again ... read the threads on -arch and the svn list. 
> There you will find the answers from people a lot smarter than I. Short 
> version, it's a known issue that cannot be changed.

I think some people are missing a point that Doug assumes is obvious. (I
did, too, until this last question pointed out that I was wrong.)

The deal is that the loader is loading modules BEFORE the kernel is
loaded. FreeBSD is NOT running and a very limited tool (please read the
loader(8) man page) is doing the work. It knows UFS just well enough to
do the job, but is nothing approaching efficient or optimal. It was not
intended to be. It originally just loaded and started the kernel.
Modules came later and putting a real VFS or anything else into the
loader is just not sane, so...

If modules are loaded by the loader, it is VERY slow. As the modularity
of FreeBSD has increased, this has become a significant issue and is
likely to get worse. Hence Doug's approach to loading modules not
needed to boot the kernel to rc.
-- 
R. Kevin Oberman, Network Engineer
Energy Sciences Network (ESnet)
Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab)
E-mail: ober...@es.net  Phone: +1 510 486-8634
Last work day before retirement is Jun 17, 2011
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Re: rc.d script to load kernel modules

2011-06-12 Thread Doug Barton

On 6/12/2011 1:43 PM, Jason Hellenthal wrote:


Doug,

On Sun, Jun 12, 2011 at 12:46:58PM -0700, Doug Barton wrote:

On 6/12/2011 12:42 PM, Jason Hellenthal wrote:


Yes I agree. I was just stating that simply for the previous post
implying where ZFS was slower than UFS.


No, it wasn't. You completely fail to understand the problem. Stop
writing, and start reading. As in, read the threads on both -arch and
the svn list, and this entire thread again, then wait an hour or two
before posting anything else. (Yes, I'm serious)



Yes, it, was. This was not to your post. This was to another fellows
which don't recall his name ATM but would please be as kind as to
discard the unuseful comments. I was agree'ing with Gary that its not a
problem with ZFS/UFS or any mix or match of the two. Perhaps a pause in
both of our replies would be duly needed.


Gustau's post said in part:


  For example, in my case, I'm booting from a zfs-only installation.
Kldloading a ten or twelve modules in loader.conf takes a long time
compared to a UFS-only installation. Moving them to a rc.d script would
allow me to save a lot of time during the boot process.


http://lists.freebsd.org/pipermail/freebsd-current/2011-June/025132.html

zfs vs. ufs is entirely irrelevant to the matter at hand, which is 
entirely related to the fact that loading modules from the boot loader 
is always going to be many many times slower than loading them from the 
disk after the system is booted. Kevin was kind enough to elaborate, 
hopefully his explanation is better than mine, and will help you 
understand the problem better.


Meanwhile, to address Gustau's original point, the modules related to 
getting zfs up and running would still have to be loaded in loader.conf. 
My solution is only effective for those modules which are not related to 
getting the local disks on line (which fortunately is the vast majority 
of them).



Doug

--

Nothin' ever doesn't change, but nothin' changes much.
-- OK Go

Breadth of IT experience, and depth of knowledge in the DNS.
Yours for the right price.  :)  http://SupersetSolutions.com/

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


[head tinderbox] failure on arm/arm

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-12 21:10:01 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-12 21:10:01 - starting HEAD tinderbox run for arm/arm
TB --- 2011-06-12 21:10:01 - cleaning the object tree
TB --- 2011-06-12 21:10:16 - cvsupping the source tree
TB --- 2011-06-12 21:10:16 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/arm/arm/supfile
TB --- 2011-06-12 21:10:50 - building world
TB --- 2011-06-12 21:10:50 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-12 21:10:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-12 21:10:50 - TARGET=arm
TB --- 2011-06-12 21:10:50 - TARGET_ARCH=arm
TB --- 2011-06-12 21:10:50 - TZ=UTC
TB --- 2011-06-12 21:10:50 - __MAKE_CONF=/dev/null
TB --- 2011-06-12 21:10:50 - cd /src
TB --- 2011-06-12 21:10:50 - /usr/bin/make -B buildworld
>>> World build started on Sun Jun 12 21:10:50 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O -pipe  -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O -pipe  -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O -pipe  -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
cc1: warnings being treated as errors
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51:
/obj/arm.arm/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: data 
definition has no type or storage class
/obj/arm.arm/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: parameter 
names (without types) in function declaration
/obj/arm.arm/src/tmp/usr/include/ufs/ffs/ffs_extern.h:172: error: expected 
specifier-qualifier-list before 'LIST_ENTRY'
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-12 22:00:56 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-12 22:00:56 - ERROR: failed to build world
TB --- 2011-06-12 22:00:56 - 2188.07 user 626.59 system 3055.30 real


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


Re: rc.d script to load kernel modules

2011-06-12 Thread Gustau Pérez

> Yeah his message was around what I was thinking was wrong with loader or
> not neccesarily wrong but what it was limited to that was similiar to
> one of my previous messages stating contention, limitation, etc...

   Sorry if my post was understood wrong. I did mean to say the culprit
was zfs, I was trying to state that a zfs-only installation makes the
problem even worse. An UFS installation with many modules loaded by the
loader do also take quite long to start.

   Right now, there are some cases where the modules must be loaded
before the kernel. VirtualBox support for hostonly interfaces comes to
my mind right now (vboxnetadp and vboxnetflt must be loaded before the
kernel). Others like fuse are loaded by an rc script.
 
   So I would go with a kernel with all the support compiled in (even
with opensolaris.ko and zfs.ko in my case) to boot and then load the
rest of the modules with an rc script. I think this is a quite big move
because it would mean removing the responsability of loading modules by
the loader before the kernel. The loader would be resposible of loading
the kernel and setting some configs that can only be set before booting.

   Hope I'm not saying anything incorrect. Sorry for the noise.

   Best regards,

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


[head tinderbox] failure on i386/pc98

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-12 21:10:01 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-12 21:10:01 - starting HEAD tinderbox run for i386/pc98
TB --- 2011-06-12 21:10:01 - cleaning the object tree
TB --- 2011-06-12 21:10:18 - cvsupping the source tree
TB --- 2011-06-12 21:10:18 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/pc98/supfile
TB --- 2011-06-12 21:10:50 - building world
TB --- 2011-06-12 21:10:50 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-12 21:10:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-12 21:10:50 - TARGET=pc98
TB --- 2011-06-12 21:10:50 - TARGET_ARCH=i386
TB --- 2011-06-12 21:10:50 - TZ=UTC
TB --- 2011-06-12 21:10:50 - __MAKE_CONF=/dev/null
TB --- 2011-06-12 21:10:50 - cd /src
TB --- 2011-06-12 21:10:50 - /usr/bin/make -B buildworld
>>> World build started on Sun Jun 12 21:10:50 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
cc1: warnings being treated as errors
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51:
/obj/pc98.i386/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: data 
definition has no type or storage class
/obj/pc98.i386/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: parameter 
names (without types) in function declaration
/obj/pc98.i386/src/tmp/usr/include/ufs/ffs/ffs_extern.h:172: error: expected 
specifier-qualifier-list before 'LIST_ENTRY'
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-12 23:04:07 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-12 23:04:07 - ERROR: failed to build world
TB --- 2011-06-12 23:04:07 - 5525.88 user 918.15 system 6846.77 real


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


[head tinderbox] failure on amd64/amd64

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-12 21:10:01 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-12 21:10:01 - starting HEAD tinderbox run for amd64/amd64
TB --- 2011-06-12 21:10:01 - cleaning the object tree
TB --- 2011-06-12 21:10:28 - cvsupping the source tree
TB --- 2011-06-12 21:10:28 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2011-06-12 21:10:50 - building world
TB --- 2011-06-12 21:10:50 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-12 21:10:50 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-12 21:10:50 - TARGET=amd64
TB --- 2011-06-12 21:10:50 - TARGET_ARCH=amd64
TB --- 2011-06-12 21:10:50 - TZ=UTC
TB --- 2011-06-12 21:10:50 - __MAKE_CONF=/dev/null
TB --- 2011-06-12 21:10:50 - cd /src
TB --- 2011-06-12 21:10:50 - /usr/bin/make -B buildworld
>>> World build started on Sun Jun 12 21:10:50 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
cc1: warnings being treated as errors
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51:
/obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: data definition has 
no type or storage class
/obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: parameter names 
(without types) in function declaration
/obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:172: error: expected 
specifier-qualifier-list before 'LIST_ENTRY'
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-12 23:04:28 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-12 23:04:28 - ERROR: failed to build world
TB --- 2011-06-12 23:04:28 - 5563.59 user 909.05 system 6867.80 real


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


[head tinderbox] failure on i386/i386

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-12 21:10:01 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-12 21:10:01 - starting HEAD tinderbox run for i386/i386
TB --- 2011-06-12 21:10:01 - cleaning the object tree
TB --- 2011-06-12 21:10:28 - cvsupping the source tree
TB --- 2011-06-12 21:10:28 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/i386/supfile
TB --- 2011-06-12 21:15:57 - building world
TB --- 2011-06-12 21:15:57 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-12 21:15:57 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-12 21:15:57 - TARGET=i386
TB --- 2011-06-12 21:15:57 - TARGET_ARCH=i386
TB --- 2011-06-12 21:15:57 - TZ=UTC
TB --- 2011-06-12 21:15:57 - __MAKE_CONF=/dev/null
TB --- 2011-06-12 21:15:57 - cd /src
TB --- 2011-06-12 21:15:57 - /usr/bin/make -B buildworld
>>> World build started on Sun Jun 12 21:15:57 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
cc1: warnings being treated as errors
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51:
/obj/i386.i386/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: data 
definition has no type or storage class
/obj/i386.i386/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: parameter 
names (without types) in function declaration
/obj/i386.i386/src/tmp/usr/include/ufs/ffs/ffs_extern.h:172: error: expected 
specifier-qualifier-list before 'LIST_ENTRY'
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-12 23:09:55 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-12 23:09:55 - ERROR: failed to build world
TB --- 2011-06-12 23:09:55 - 5572.20 user 885.16 system 7194.91 real


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


[head tinderbox] failure on ia64/ia64

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-12 22:00:57 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-12 22:00:57 - starting HEAD tinderbox run for ia64/ia64
TB --- 2011-06-12 22:00:57 - cleaning the object tree
TB --- 2011-06-12 22:01:09 - cvsupping the source tree
TB --- 2011-06-12 22:01:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/ia64/ia64/supfile
TB --- 2011-06-12 22:01:25 - building world
TB --- 2011-06-12 22:01:25 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-12 22:01:25 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-12 22:01:25 - TARGET=ia64
TB --- 2011-06-12 22:01:25 - TARGET_ARCH=ia64
TB --- 2011-06-12 22:01:25 - TZ=UTC
TB --- 2011-06-12 22:01:25 - __MAKE_CONF=/dev/null
TB --- 2011-06-12 22:01:25 - cd /src
TB --- 2011-06-12 22:01:25 - /usr/bin/make -B buildworld
>>> World build started on Sun Jun 12 22:01:28 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
cc1: warnings being treated as errors
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51:
/obj/ia64.ia64/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: data 
definition has no type or storage class
/obj/ia64.ia64/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: parameter 
names (without types) in function declaration
/obj/ia64.ia64/src/tmp/usr/include/ufs/ffs/ffs_extern.h:172: error: expected 
specifier-qualifier-list before 'LIST_ENTRY'
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-12 23:22:17 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-12 23:22:17 - ERROR: failed to build world
TB --- 2011-06-12 23:22:17 - 3884.73 user 676.42 system 4880.05 real


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


[head tinderbox] failure on mips/mips

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-12 23:04:08 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-12 23:04:08 - starting HEAD tinderbox run for mips/mips
TB --- 2011-06-12 23:04:08 - cleaning the object tree
TB --- 2011-06-12 23:04:15 - cvsupping the source tree
TB --- 2011-06-12 23:04:15 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/mips/mips/supfile
TB --- 2011-06-12 23:04:41 - building world
TB --- 2011-06-12 23:04:41 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-12 23:04:41 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-12 23:04:41 - TARGET=mips
TB --- 2011-06-12 23:04:41 - TARGET_ARCH=mips
TB --- 2011-06-12 23:04:41 - TZ=UTC
TB --- 2011-06-12 23:04:41 - __MAKE_CONF=/dev/null
TB --- 2011-06-12 23:04:41 - cd /src
TB --- 2011-06-12 23:04:41 - /usr/bin/make -B buildworld
>>> World build started on Sun Jun 12 23:04:42 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O -pipe -G0  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O -pipe -G0  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O -pipe -G0  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
cc1: warnings being treated as errors
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51:
/obj/mips.mipsel/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: data 
definition has no type or storage class
/obj/mips.mipsel/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: 
parameter names (without types) in function declaration
/obj/mips.mipsel/src/tmp/usr/include/ufs/ffs/ffs_extern.h:172: error: expected 
specifier-qualifier-list before 'LIST_ENTRY'
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-12 23:57:37 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-12 23:57:37 - ERROR: failed to build world
TB --- 2011-06-12 23:57:38 - 2320.23 user 604.88 system 3209.24 real


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


[head tinderbox] failure on powerpc64/powerpc

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-12 23:09:56 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-12 23:09:56 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2011-06-12 23:09:56 - cleaning the object tree
TB --- 2011-06-12 23:10:11 - cvsupping the source tree
TB --- 2011-06-12 23:10:11 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc64/powerpc/supfile
TB --- 2011-06-12 23:10:26 - building world
TB --- 2011-06-12 23:10:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-12 23:10:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-12 23:10:26 - TARGET=powerpc
TB --- 2011-06-12 23:10:26 - TARGET_ARCH=powerpc64
TB --- 2011-06-12 23:10:26 - TZ=UTC
TB --- 2011-06-12 23:10:26 - __MAKE_CONF=/dev/null
TB --- 2011-06-12 23:10:26 - cd /src
TB --- 2011-06-12 23:10:26 - /usr/bin/make -B buildworld
>>> World build started on Sun Jun 12 23:10:30 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
cc1: warnings being treated as errors
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51:
/obj/powerpc.powerpc64/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: 
data definition has no type or storage class
/obj/powerpc.powerpc64/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: 
parameter names (without types) in function declaration
/obj/powerpc.powerpc64/src/tmp/usr/include/ufs/ffs/ffs_extern.h:172: error: 
expected specifier-qualifier-list before 'LIST_ENTRY'
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-13 00:12:59 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-13 00:12:59 - ERROR: failed to build world
TB --- 2011-06-13 00:12:59 - 2918.64 user 628.77 system 3782.83 real


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


[head tinderbox] failure on sparc64/sparc64

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-12 23:22:17 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-12 23:22:17 - starting HEAD tinderbox run for sparc64/sparc64
TB --- 2011-06-12 23:22:17 - cleaning the object tree
TB --- 2011-06-12 23:22:31 - cvsupping the source tree
TB --- 2011-06-12 23:22:31 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/sparc64/sparc64/supfile
TB --- 2011-06-12 23:22:46 - building world
TB --- 2011-06-12 23:22:46 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-12 23:22:46 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-12 23:22:46 - TARGET=sparc64
TB --- 2011-06-12 23:22:46 - TARGET_ARCH=sparc64
TB --- 2011-06-12 23:22:46 - TZ=UTC
TB --- 2011-06-12 23:22:46 - __MAKE_CONF=/dev/null
TB --- 2011-06-12 23:22:46 - cd /src
TB --- 2011-06-12 23:22:46 - /usr/bin/make -B buildworld
>>> World build started on Sun Jun 12 23:22:46 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
cc1: warnings being treated as errors
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51:
/obj/sparc64.sparc64/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: 
data definition has no type or storage class
/obj/sparc64.sparc64/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: 
parameter names (without types) in function declaration
/obj/sparc64.sparc64/src/tmp/usr/include/ufs/ffs/ffs_extern.h:172: error: 
expected specifier-qualifier-list before 'LIST_ENTRY'
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-13 00:19:43 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-13 00:19:43 - ERROR: failed to build world
TB --- 2011-06-13 00:19:43 - 2662.22 user 591.94 system 3445.93 real


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


[head tinderbox] failure on powerpc/powerpc

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-12 23:04:29 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-12 23:04:29 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2011-06-12 23:04:29 - cleaning the object tree
TB --- 2011-06-12 23:04:39 - cvsupping the source tree
TB --- 2011-06-12 23:04:39 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc/powerpc/supfile
TB --- 2011-06-12 23:04:52 - building world
TB --- 2011-06-12 23:04:52 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-12 23:04:52 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-12 23:04:52 - TARGET=powerpc
TB --- 2011-06-12 23:04:52 - TARGET_ARCH=powerpc
TB --- 2011-06-12 23:04:52 - TZ=UTC
TB --- 2011-06-12 23:04:52 - __MAKE_CONF=/dev/null
TB --- 2011-06-12 23:04:52 - cd /src
TB --- 2011-06-12 23:04:52 - /usr/bin/make -B buildworld
>>> World build started on Sun Jun 12 23:05:01 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
cc1: warnings being treated as errors
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:51:
/obj/powerpc.powerpc/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: 
data definition has no type or storage class
/obj/powerpc.powerpc/src/tmp/usr/include/ufs/ffs/ffs_extern.h:169: warning: 
parameter names (without types) in function declaration
/obj/powerpc.powerpc/src/tmp/usr/include/ufs/ffs/ffs_extern.h:172: error: 
expected specifier-qualifier-list before 'LIST_ENTRY'
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-13 00:45:00 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-13 00:45:00 - ERROR: failed to build world
TB --- 2011-06-13 00:45:01 - 5083.48 user 810.09 system 6031.80 real


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


[head tinderbox] failure on arm/arm

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-13 00:50:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-13 00:50:00 - starting HEAD tinderbox run for arm/arm
TB --- 2011-06-13 00:50:00 - cleaning the object tree
TB --- 2011-06-13 00:50:09 - cvsupping the source tree
TB --- 2011-06-13 00:50:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/arm/arm/supfile
TB --- 2011-06-13 00:50:53 - building world
TB --- 2011-06-13 00:50:53 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-13 00:50:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-13 00:50:53 - TARGET=arm
TB --- 2011-06-13 00:50:53 - TARGET_ARCH=arm
TB --- 2011-06-13 00:50:53 - TZ=UTC
TB --- 2011-06-13 00:50:53 - __MAKE_CONF=/dev/null
TB --- 2011-06-13 00:50:53 - cd /src
TB --- 2011-06-13 00:50:53 - /usr/bin/make -B buildworld
>>> World build started on Mon Jun 13 00:50:53 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O -pipe  -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_conversion.c
cc -O -pipe  -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/iso9660_rrip.c
cc -O -pipe  -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_archimedes.c
cc -O -pipe  -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O -pipe  -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O -pipe  -I/src/usr.sbin/makefs -I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:52:
/obj/arm.arm/src/tmp/usr/include/ufs/ffs/ffs_extern.h:176: error: field 
'sn_lock' has incomplete type
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-13 01:40:44 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-13 01:40:44 - ERROR: failed to build world
TB --- 2011-06-13 01:40:44 - 2193.52 user 615.91 system 3044.25 real


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


[head tinderbox] failure on i386/i386

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-13 00:50:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-13 00:50:00 - starting HEAD tinderbox run for i386/i386
TB --- 2011-06-13 00:50:00 - cleaning the object tree
TB --- 2011-06-13 00:50:09 - cvsupping the source tree
TB --- 2011-06-13 00:50:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/i386/supfile
TB --- 2011-06-13 00:50:53 - building world
TB --- 2011-06-13 00:50:53 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-13 00:50:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-13 00:50:53 - TARGET=i386
TB --- 2011-06-13 00:50:53 - TARGET_ARCH=i386
TB --- 2011-06-13 00:50:53 - TZ=UTC
TB --- 2011-06-13 00:50:53 - __MAKE_CONF=/dev/null
TB --- 2011-06-13 00:50:53 - cd /src
TB --- 2011-06-13 00:50:53 - /usr/bin/make -B buildworld
>>> World build started on Mon Jun 13 00:50:53 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_conversion.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/iso9660_rrip.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_archimedes.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:52:
/obj/i386.i386/src/tmp/usr/include/ufs/ffs/ffs_extern.h:176: error: field 
'sn_lock' has incomplete type
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-13 02:42:34 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-13 02:42:35 - ERROR: failed to build world
TB --- 2011-06-13 02:42:35 - 5489.95 user 877.39 system 6754.38 real


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


[head tinderbox] failure on amd64/amd64

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-13 00:50:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-13 00:50:00 - starting HEAD tinderbox run for amd64/amd64
TB --- 2011-06-13 00:50:00 - cleaning the object tree
TB --- 2011-06-13 00:50:09 - cvsupping the source tree
TB --- 2011-06-13 00:50:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2011-06-13 00:50:53 - building world
TB --- 2011-06-13 00:50:53 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-13 00:50:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-13 00:50:53 - TARGET=amd64
TB --- 2011-06-13 00:50:53 - TARGET_ARCH=amd64
TB --- 2011-06-13 00:50:53 - TZ=UTC
TB --- 2011-06-13 00:50:53 - __MAKE_CONF=/dev/null
TB --- 2011-06-13 00:50:53 - cd /src
TB --- 2011-06-13 00:50:53 - /usr/bin/make -B buildworld
>>> World build started on Mon Jun 13 00:50:53 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_conversion.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/iso9660_rrip.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_archimedes.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:52:
/obj/src/tmp/usr/include/ufs/ffs/ffs_extern.h:176: error: field 'sn_lock' has 
incomplete type
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-13 02:42:41 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-13 02:42:41 - ERROR: failed to build world
TB --- 2011-06-13 02:42:41 - 5482.20 user 889.91 system 6760.98 real


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


[head tinderbox] failure on i386/pc98

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-13 00:50:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-13 00:50:00 - starting HEAD tinderbox run for i386/pc98
TB --- 2011-06-13 00:50:00 - cleaning the object tree
TB --- 2011-06-13 00:50:09 - cvsupping the source tree
TB --- 2011-06-13 00:50:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/pc98/supfile
TB --- 2011-06-13 00:55:33 - building world
TB --- 2011-06-13 00:55:33 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-13 00:55:33 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-13 00:55:33 - TARGET=pc98
TB --- 2011-06-13 00:55:33 - TARGET_ARCH=i386
TB --- 2011-06-13 00:55:33 - TZ=UTC
TB --- 2011-06-13 00:55:33 - __MAKE_CONF=/dev/null
TB --- 2011-06-13 00:55:33 - cd /src
TB --- 2011-06-13 00:55:33 - /usr/bin/make -B buildworld
>>> World build started on Mon Jun 13 00:55:34 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_conversion.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/iso9660_rrip.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_archimedes.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:52:
/obj/pc98.i386/src/tmp/usr/include/ufs/ffs/ffs_extern.h:176: error: field 
'sn_lock' has incomplete type
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-13 02:47:35 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-13 02:47:35 - ERROR: failed to build world
TB --- 2011-06-13 02:47:36 - 5454.41 user 890.21 system 7055.29 real


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


[head tinderbox] failure on ia64/ia64

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-13 01:40:45 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-13 01:40:45 - starting HEAD tinderbox run for ia64/ia64
TB --- 2011-06-13 01:40:45 - cleaning the object tree
TB --- 2011-06-13 01:40:50 - cvsupping the source tree
TB --- 2011-06-13 01:40:50 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/ia64/ia64/supfile
TB --- 2011-06-13 01:41:04 - building world
TB --- 2011-06-13 01:41:04 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-13 01:41:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-13 01:41:04 - TARGET=ia64
TB --- 2011-06-13 01:41:04 - TARGET_ARCH=ia64
TB --- 2011-06-13 01:41:04 - TZ=UTC
TB --- 2011-06-13 01:41:04 - __MAKE_CONF=/dev/null
TB --- 2011-06-13 01:41:04 - cd /src
TB --- 2011-06-13 01:41:04 - /usr/bin/make -B buildworld
>>> World build started on Mon Jun 13 01:41:05 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_conversion.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/iso9660_rrip.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_archimedes.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:52:
/obj/ia64.ia64/src/tmp/usr/include/ufs/ffs/ffs_extern.h:176: error: field 
'sn_lock' has incomplete type
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-13 03:00:23 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-13 03:00:23 - ERROR: failed to build world
TB --- 2011-06-13 03:00:23 - 3805.62 user 661.70 system 4777.58 real


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


[head tinderbox] failure on mips/mips

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-13 02:42:35 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-13 02:42:35 - starting HEAD tinderbox run for mips/mips
TB --- 2011-06-13 02:42:35 - cleaning the object tree
TB --- 2011-06-13 02:42:43 - cvsupping the source tree
TB --- 2011-06-13 02:42:43 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/mips/mips/supfile
TB --- 2011-06-13 02:42:56 - building world
TB --- 2011-06-13 02:42:56 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-13 02:42:56 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-13 02:42:56 - TARGET=mips
TB --- 2011-06-13 02:42:56 - TARGET_ARCH=mips
TB --- 2011-06-13 02:42:56 - TZ=UTC
TB --- 2011-06-13 02:42:56 - __MAKE_CONF=/dev/null
TB --- 2011-06-13 02:42:56 - cd /src
TB --- 2011-06-13 02:42:56 - /usr/bin/make -B buildworld
>>> World build started on Mon Jun 13 02:42:57 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O -pipe -G0  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_conversion.c
cc -O -pipe -G0  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/iso9660_rrip.c
cc -O -pipe -G0  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_archimedes.c
cc -O -pipe -G0  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O -pipe -G0  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O -pipe -G0  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -Wsystem-headers -Werror -Wall 
-Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:52:
/obj/mips.mipsel/src/tmp/usr/include/ufs/ffs/ffs_extern.h:176: error: field 
'sn_lock' has incomplete type
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-13 03:35:36 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-13 03:35:36 - ERROR: failed to build world
TB --- 2011-06-13 03:35:36 - 2292.31 user 601.05 system 3180.69 real


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


[head tinderbox] failure on powerpc/powerpc

2011-06-12 Thread FreeBSD Tinderbox
TB --- 2011-06-13 02:42:42 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-06-13 02:42:42 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2011-06-13 02:42:42 - cleaning the object tree
TB --- 2011-06-13 02:42:48 - cvsupping the source tree
TB --- 2011-06-13 02:42:48 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc/powerpc/supfile
TB --- 2011-06-13 02:43:04 - building world
TB --- 2011-06-13 02:43:04 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-06-13 02:43:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-06-13 02:43:04 - TARGET=powerpc
TB --- 2011-06-13 02:43:04 - TARGET_ARCH=powerpc
TB --- 2011-06-13 02:43:04 - TZ=UTC
TB --- 2011-06-13 02:43:04 - __MAKE_CONF=/dev/null
TB --- 2011-06-13 02:43:04 - cd /src
TB --- 2011-06-13 02:43:04 - /usr/bin/make -B buildworld
>>> World build started on Mon Jun 13 02:43:04 UTC 2011
>>> Rebuilding the temporary build tree
>>> stage 1.1: legacy release compatibility shims
>>> stage 1.2: bootstrap tools
>>> stage 2.1: cleaning up the object tree
>>> stage 2.2: rebuilding the object tree
>>> stage 2.3: build tools
>>> stage 3: cross tools
>>> stage 4.1: building includes
>>> stage 4.2: building libraries
>>> stage 4.3: make dependencies
>>> stage 4.4: building everything
[...]
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_conversion.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/iso9660_rrip.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/cd9660/cd9660_archimedes.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_alloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_balloc.c
cc -O2 -pipe  -I/src/usr.sbin/makefs 
-I/src/usr.sbin/makefs/../../sys/fs/cd9660/ 
-I/src/usr.sbin/makefs/../../sys/ufs/ffs -I/src/usr.sbin/makefs/compat 
-DHAVE_STRUCT_STAT_ST_FLAGS=1 -DHAVE_STRUCT_STAT_ST_GEN=1 
-I/src/usr.sbin/makefs/../mtree -std=gnu99 -fstack-protector -Wsystem-headers 
-Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c 
/src/usr.sbin/makefs/ffs/ffs_bswap.c
In file included from /src/usr.sbin/makefs/ffs/ffs_bswap.c:52:
/obj/powerpc.powerpc/src/tmp/usr/include/ufs/ffs/ffs_extern.h:176: error: field 
'sn_lock' has incomplete type
*** Error code 1

Stop in /src/usr.sbin/makefs.
*** Error code 1

Stop in /src/usr.sbin.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-06-13 04:23:05 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-06-13 04:23:05 - ERROR: failed to build world
TB --- 2011-06-13 04:23:05 - 5028.39 user 833.21 system 6023.19 real


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


Re: rc.d script to load kernel modules

2011-06-12 Thread Eir Nym
On 11 June 2011 22:17, Doug Barton  wrote:
> Howdy,
>
> Per discussion on -arch and the svn list about improving boot time and
> stripping down the kernel to just that-which-cannot-be-modularized I created
> the attached script to kldload modules that don't need to be in loader.conf.
> It cut quite a bit of time off my boot, so hopefully it will be useful to
> others as well.
>
> To use it just put everything that is being _load'ed in loader.conf into
> kld_list in rc.conf[.local]. For example, mine has:
>
> kld_list='umass coretemp ichwd linux nvidia if_wpi'
>
> If there is agreement that this is a good direction to go I'll be happy to
> commit this along with the relevant /etc/defaults/rc.conf and rc.conf.5
> changes.
>

How do you would suggest set tunables, which are readonly or have no
sysctl(8) equivalent after boot-time? AFAIK loader can't set tunable
if module is not loaded at boot-time.

>
> hth,
>
> Doug
>
> --
>
>        Nothin' ever doesn't change, but nothin' changes much.
>                        -- OK Go
>
>        Breadth of IT experience, and depth of knowledge in the DNS.
>        Yours for the right price.  :)  http://SupersetSolutions.com/
>
>
> ___
> freebsd-current@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-current
> To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"
>
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Re: rc.d script to load kernel modules

2011-06-12 Thread Garrett Cooper
On Sun, Jun 12, 2011 at 11:11 PM, Eir Nym  wrote:
> On 11 June 2011 22:17, Doug Barton  wrote:
>> Howdy,
>>
>> Per discussion on -arch and the svn list about improving boot time and
>> stripping down the kernel to just that-which-cannot-be-modularized I created
>> the attached script to kldload modules that don't need to be in loader.conf.
>> It cut quite a bit of time off my boot, so hopefully it will be useful to
>> others as well.
>>
>> To use it just put everything that is being _load'ed in loader.conf into
>> kld_list in rc.conf[.local]. For example, mine has:
>>
>> kld_list='umass coretemp ichwd linux nvidia if_wpi'
>>
>> If there is agreement that this is a good direction to go I'll be happy to
>> commit this along with the relevant /etc/defaults/rc.conf and rc.conf.5
>> changes.
>>
>
> How do you would suggest set tunables, which are readonly or have no
> sysctl(8) equivalent after boot-time? AFAIK loader can't set tunable
> if module is not loaded at boot-time.

Not true. Kernel tunables are really not that different (in
concept) from kernel-level environment variables. Certainly, they
would have less value if one's loading modules at boot (depending when
things are done -- i.e. how closely the sysctl pseudo service is run
to the proposed kld pseudo service), but sysctls can't be set until
the module (or respective OID leaf) has been created by the kernel
(somehow, i.e. via driver initialization, etc).
Thanks,
-Garrett
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Re: rc.d script to load kernel modules

2011-06-12 Thread Daniel Braniss
> On 6/12/2011 1:56 AM, Jason Hellenthal wrote:
> 
> > Cutting modules out of the kernel in general does help speed up booting
> > but loading those same modules later in the boot process will just lead
> > you back to the same boot time.
> 
> Loading modules via loader.conf is many times slower than doing it from 
> disk after the system is partially booted. (As in, 2-3 seconds per 
> module vs. nearly instantaneous for all 6.)
> 
> I didn't offer my list as an example of what to do, I offered it as a 
> syntax example. I would of course expect people to use appropriate 
> discretion to load things in loader.conf that are necessary for boot. 
> (Of course, the fact that people can easily get this wrong is a strike 
> against the technique.)
> 
> There is no point in having an _enable for this script because if the 
> kld_list is empty, nothing happens.
> 
Doug's solution is what we have been using for a very long time!

the loader.conf solution is not practical when it's shared among many
hosts -like here where most of the hosts are dataless-, so, moving the not
essential ones to rc.conf was the obvious solution.

my .5

danny



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