Re: New installation script

2011-08-07 Thread Mark Linimon
On Sat, Aug 06, 2011 at 01:18:02PM -0400, Garrett Wollman wrote:
> I initially chose "traditional Unix workstation", which was unusable.
> (Never did find the control or escape key, which made vi particularly
> difficult to use.)

It should probably be labeled "old-fart Unix user" which would have
instantly told me that it put the Control key back in the pre-IMB-PC
location (where the idiotic and counter-productive 'Caps Lock' key is
now, sigh).

But that battle was lost several decades ago.

mcl
___
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: resolvconf script overwrites entries in resolv.conf - RDNSS/DNSSL related

2011-08-07 Thread Mattia Rossi

On 05/08/2011 16:52, Doug Barton wrote:

On 08/04/2011 22:59, Mattia Rossi wrote:

Hi all,

I've finally patched my 8.2 IPv6 gateway with the RDNSS/DNSSL patches
and I'm distributing DNS servers that way now. Works fine, my box
running CURRENT picks up the DNS servers and search domains and writes
them into /etc/resolv.conf using the resolvconf script.

The script anyhow overwrites my previous manual entries in
/etc/resolv.conf which I need for my manual IPv4 setup...

I think it's an easily fixable bug - haven't looked into it that close
atm., but given that the resolvconf script is going to be
rewritten/enhanced anyways, that's something to keep in mind.
I think that manual entries should always be preferred.


Check 'man resolvconf.conf' for information on name_servers_append. It
would probably be nice if there was a _prepend equivalent.



Okay, finally got around to read that manpage (which I didn't realise 
that it existed). So For RDNSS/DNSSL we have now the following manpages 
related to resolv.conf: resolvconf(8), resolv.conf(5) (aka. resolver(5)) 
and resolvconf.conf(5)... Lot's of resolvconfs :-)


Anyhow, the manpage is really not clear about name_servers_append, and 
it's not working as expected either:


1) If I put in a comma separated list of nameservers, I'll find that 
comma separated list in /etc/resolv.conf under a single "nameserver" 
tag. That doesn't work, as it's not a valid entry. Each nameserver needs 
to have a "nameserver " entry.


2) If I use multiple name_servers_append entries in 
/etc/resolvconf.conf, then only the last entry is used. I don't want 
only one DNS server there though, I want all three of them, as I already 
had the problem that one or the other didn't work properly.


3) If I read the description for name_servers in resolvconf.conf(5), I 
understand that this tag prepends the nameserver to my list. This is not 
what happens. Still not sure what actually happens there...


How do I get my 3 manual DNS entries properly into my resolv.conf ?

Mat

___
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: bsdtar(1) can't extract new ISO images

2011-08-07 Thread Tim Kientzle
On Aug 7, 2011, at 9:23 AM, Bruce Cran wrote:
> On 06/08/2011 18:02, Martin Matuska wrote:
>> The error is in FreeBSD ISO images.
>> They are created using makefs and that doesn't create ISO files that
>> strictly comple to the ECMA-119 (ISO9660 standard).
>> 
>> I have already filed a PR at NetBSD (bin/45217):
>> http://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=45217
>> 
>> The volume_set_id doesn't have to be filled with 0x20 characters, too.
>> I am also preparing a patch for libarchive (different things), but that
>> won't fix that one bug - makefs needs to be fixed.
> 
> Thanks for the information - I suspect this is also the problem I saw a few 
> weeks ago on OS X Lion when trying to extract an ISO of Windows Server 2003 
> R2:
> 
> neutrino:tmp brucec$ tar -xvf 
> en_win_srv_2003_r2_standard_with_sp2_cd2_X13-68583.iso
> neutrino:tmp brucec$ echo $?
> 0
> 
> It would be nice if bsdtar exited with a non-zero code in this case.

I agree, it would be nice.

ISO images frequently begin with a large block of zero bytes that looks exactly 
like a tar end-of-file marker.  So if libarchive doesn't recognize it as an 
ISO, it will often recognize the file as a valid empty tar archive that has a 
bunch of garbage after the end-of-archive marker.  So it successfully extracts 
no files.

This sort of problem should become less common as we continue to refine the 
bidding heuristics used in libarchive.  If you have ideas for further improving 
them, I'm definitely interested.  (At a minimum, I'm always interested in 
seeing at least the first 32k or so of any file that "tar -tvvvf" gives the 
wrong format for.)

Tim

___
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: [patch] Problem with two NIC on same NET (in_scrubprefix: err=17, new prefix add failed)

2011-08-07 Thread Kevin Lo
Hi Andrew,

I just committed Svatopluk's fix to HEAD, thanks!

Kevin

On Wed, 2011-08-03 at 11:11 -0400, Andrew Boyer wrote:
> We found and fixed a similar issue with an identical patch.  It has been 
> working fine for us under stable/8.
> 
> Unfortunately I am weeks and weeks behind on pushing fixes back to the tree, 
> so you had to duplicate the work.  If it can be committed (and MFC'd to 8, 
> please) it would save others the trouble.
> 
> -Andrew
> 
> On Aug 3, 2011, at 10:51 AM, Svatopluk Kraus wrote:
> 
> > I have two NIC on same NET (both are up). If a NIC which installs
> > network route is going down then an error happens during network route
> > replacement (in_scrubprefix: err=17, new prefix add failed).
> > 
> >  I've done a little bit investigation. In rtinit1(), before
> > rtrequest1_fib() is called, info.rti_flags is initialized by flags
> > (function argument) or-ed with ifa->ifa_flags. Both NIC has a loopback
> > route to itself, so IFA_RTSELF is set on ifa(s). As IFA_RTSELF is
> > defined by RTF_HOST, rtrequest1_fib() is called with RTF_HOST flag
> > even if netmask is not NULL. Consequently, netmask is set to zero in
> > rtrequest1_fib(), and request to add network route is changed under
> > hands to request to add host route. It is the reason of logged info
> > and my problem.
> > 
> >  When I've done more investigation, it looks similar to
> > http://svnweb.freebsd.org/base?view=revision&revision=201543. So, I
> > propose the following patch.
> > 
> > Index: sys/net/route.c
> > ===
> > --- sys/net/route.c (revision 224635)
> > +++ sys/net/route.c (working copy)
> > @@ -1478,7 +1478,7 @@
> >  */
> > bzero((caddr_t)&info, sizeof(info));
> > info.rti_ifa = ifa;
> > -   info.rti_flags = flags | ifa->ifa_flags;
> > +   info.rti_flags = flags | (ifa->ifa_flags & ~IFA_RTSELF);
> > info.rti_info[RTAX_DST] = dst;
> > /*
> >  * doing this for compatibility reason
> > 
> > 
> >  Is the patch sufficient?
> > 
> >  Svata
> > ___
> > 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"
> 
> --
> Andrew Boyer  abo...@averesystems.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"


USB keyboard problems at mountroot

2011-08-07 Thread Daniel O'Connor
Hi,
I installed current on a PC with a USB keyboard and found that the keyboard 
doesn't come up until after mountroot which is a bit of a problem when I bugger 
up the fstab :)

I note there is a PR on this http://www.freebsd.org/cgi/query-pr.cgi?pr=133989 
but it hasn't seen much action..

I also recall a thread recently but my google-fu fails me for the moment.. Does 
anyone have a work around for it?

Thanks.

--
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-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Re: [head tinderbox] failure on powerpc/powerpc

2011-08-07 Thread Gary Palmer
On Sun, Aug 07, 2011 at 02:15:00PM -0400, Super Bisquit wrote:
> Tinderbox doesn't build in the examples given as a normal user would.
> Buildworld should be ran from /usr/src and doesn't need the
> "/usr/bin/make -b" command.

make -B just makes sure that it is not running in -j mode, so the
output makes more sense as it is not running multi-process.

> Where is the buildkernel output?

buildkernel comes after buildworld.

Regards,

Gary


> 
> On 8/7/11, FreeBSD Tinderbox  wrote:
> > TB --- 2011-08-07 12:16:11 - tinderbox 2.7 running on
> > freebsd-current.sentex.ca
> > TB --- 2011-08-07 12:16:11 - starting HEAD tinderbox run for powerpc/powerpc
> > TB --- 2011-08-07 12:16:11 - cleaning the object tree
> > TB --- 2011-08-07 12:16:15 - cvsupping the source tree
> > TB --- 2011-08-07 12:16:15 - /usr/bin/csup -z -r 3 -g -L 1 -h
> > cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile
> > TB --- 2011-08-07 12:16:29 - building world
> > TB --- 2011-08-07 12:16:29 - MAKEOBJDIRPREFIX=/obj
> > TB --- 2011-08-07 12:16:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
> > TB --- 2011-08-07 12:16:29 - TARGET=powerpc
> > TB --- 2011-08-07 12:16:29 - TARGET_ARCH=powerpc
> > TB --- 2011-08-07 12:16:29 - TZ=UTC
> > TB --- 2011-08-07 12:16:29 - __MAKE_CONF=/dev/null
> > TB --- 2011-08-07 12:16:29 - cd /src
> > TB --- 2011-08-07 12:16:29 - /usr/bin/make -B buildworld
>  World build started on Sun Aug  7 12:16: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
> > [...]
> > /src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
> > /src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of
> > 'thr_pread_long' from incompatible pointer type
> > /src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
> > /src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of
> > 'thr_pread_long' from incompatible pointer type
> > /src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
> > /src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of
> > 'thr_pread_long' from incompatible pointer type
> > /src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
> > /src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of
> > 'thr_pread_long' from incompatible pointer type
> > *** Error code 1
> >
> > Stop in /src/lib/libthread_db.
> > *** Error code 1
> >
> > Stop in /src/lib.
> > *** Error code 1
> >
> > Stop in /src.
> > *** Error code 1
> >
> > Stop in /src.
> > *** Error code 1
> >
> > Stop in /src.
> > *** Error code 1
> >
> > Stop in /src.
> > TB --- 2011-08-07 12:52:33 - WARNING: /usr/bin/make returned exit code  1
> > TB --- 2011-08-07 12:52:33 - ERROR: failed to build world
> > TB --- 2011-08-07 12:52:33 - 1592.72 user 392.42 system 2181.87 real
> >
> >
> > http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full
> > ___
> > freebsd-...@freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-ppc
> > To unsubscribe, send any mail to "freebsd-ppc-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"
> 
> 
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Re: [head tinderbox] failure on powerpc/powerpc

2011-08-07 Thread Super Bisquit
Tinderbox doesn't build in the examples given as a normal user would.
Buildworld should be ran from /usr/src and doesn't need the
"/usr/bin/make -b" command.
Where is the buildkernel output?

On 8/7/11, FreeBSD Tinderbox  wrote:
> TB --- 2011-08-07 12:16:11 - tinderbox 2.7 running on
> freebsd-current.sentex.ca
> TB --- 2011-08-07 12:16:11 - starting HEAD tinderbox run for powerpc/powerpc
> TB --- 2011-08-07 12:16:11 - cleaning the object tree
> TB --- 2011-08-07 12:16:15 - cvsupping the source tree
> TB --- 2011-08-07 12:16:15 - /usr/bin/csup -z -r 3 -g -L 1 -h
> cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile
> TB --- 2011-08-07 12:16:29 - building world
> TB --- 2011-08-07 12:16:29 - MAKEOBJDIRPREFIX=/obj
> TB --- 2011-08-07 12:16:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
> TB --- 2011-08-07 12:16:29 - TARGET=powerpc
> TB --- 2011-08-07 12:16:29 - TARGET_ARCH=powerpc
> TB --- 2011-08-07 12:16:29 - TZ=UTC
> TB --- 2011-08-07 12:16:29 - __MAKE_CONF=/dev/null
> TB --- 2011-08-07 12:16:29 - cd /src
> TB --- 2011-08-07 12:16:29 - /usr/bin/make -B buildworld
 World build started on Sun Aug  7 12:16: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
> [...]
> /src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
> /src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of
> 'thr_pread_long' from incompatible pointer type
> /src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
> /src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of
> 'thr_pread_long' from incompatible pointer type
> /src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
> /src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of
> 'thr_pread_long' from incompatible pointer type
> /src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
> /src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of
> 'thr_pread_long' from incompatible pointer type
> *** Error code 1
>
> Stop in /src/lib/libthread_db.
> *** Error code 1
>
> Stop in /src/lib.
> *** Error code 1
>
> Stop in /src.
> *** Error code 1
>
> Stop in /src.
> *** Error code 1
>
> Stop in /src.
> *** Error code 1
>
> Stop in /src.
> TB --- 2011-08-07 12:52:33 - WARNING: /usr/bin/make returned exit code  1
> TB --- 2011-08-07 12:52:33 - ERROR: failed to build world
> TB --- 2011-08-07 12:52:33 - 1592.72 user 392.42 system 2181.87 real
>
>
> http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full
> ___
> freebsd-...@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-ppc
> To unsubscribe, send any mail to "freebsd-ppc-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: ghost files

2011-08-07 Thread deeptec...@gmail.com
On Mon, Aug 8, 2011 at 12:57 AM, Doug Barton  wrote:
> On 08/06/2011 23:08, deeptec...@gmail.com wrote:
>> i'd note that the hard drive is kind of old (>7 years), and i recently
>> had the power cut during port build operations twice, although the
>> (UFS) filesystem is fsck-clean.
>
> Have you actually booted single user and run 'fsck -y'? That should
> probably be your next step.

yes i have already done that. but just for show i double-checked again
(single user mode, fsck -y), and the filesystem was reported to be
clean.
___
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: ghost files

2011-08-07 Thread Garrett Cooper
On Sun, Aug 7, 2011 at 2:48 PM, Super Biscuit  wrote:
> I suggest sprinkling holy water on your computer and then hitting a bong.

Who you gonna call :P?
-Garrett (I couldn't resist)
___
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: resolvconf script overwrites entries in resolv.conf - RDNSS/DNSSL related

2011-08-07 Thread Mattia Rossi

On 05/08/2011 20:30, J.R. Oldroyd wrote:

On Thu, 04 Aug 2011 23:52:54 -0700, Doug Barton  wrote:


On 08/04/2011 22:59, Mattia Rossi wrote:

I've finally patched my 8.2 IPv6 gateway with the RDNSS/DNSSL patches
The script anyhow overwrites my previous manual entries in
/etc/resolv.conf which I need for my manual IPv4 setup...


Check 'man resolvconf.conf' for information on name_servers_append. It
would probably be nice if there was a _prepend equivalent.



Mattia, when you say you have the patches, which ones?

To be clear, the RDNSS/DNSSL support that was committed to head was
very heavily modified from that which I proposed and which is on my
web site.  In particular, the resolvconf(8) tool that I offered was
not used at all; the version in head is the openresolv tool by Roy
Marples.  Doug's response is in regard to the resolvconf version
in head.


I'm using the patches from your website on my 8.2 box, which is the IPv6 
gateway and runs rtadvd. The problem with the resolv.conf is happening 
on my client though, which is a box running HEAD, so I'll try to follow 
Doug's advice, thanks.


FWIW, the resolvconf version from my site will use the most recent
nameservers received by from either dhclient-script or rtadvd but you
can also add "static" entries using standard resolv.conf syntax in the
/var/db/resolv.db file; see the man page with that version.


I'll remember to read the manpages more thoroughly :-)


I will update my RDNSS/DNSSL web page now to add a warning that my
patches have been superseded and that folk should use the committed
versions where possible.

Is there any chance that you could create a patch for 8.2 based on the 
commits in HEAD?

That would be great!

Thanks,

Mat

___
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: ghost files

2011-08-07 Thread Doug Barton
On 08/06/2011 23:08, deeptec...@gmail.com wrote:
> i'd note that the hard drive is kind of old (>7 years), and i recently
> had the power cut during port build operations twice, although the
> (UFS) filesystem is fsck-clean.

Have you actually booted single user and run 'fsck -y'? That should
probably be your next step.


-- 

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: ghost files

2011-08-07 Thread Super Biscuit
I suggest sprinkling holy water on your computer and then hitting a bong.

--- On Sun, 8/7/11, deeptec...@gmail.com  wrote:

From: deeptec...@gmail.com 
Subject: ghost files
To: freebsd-current@freebsd.org
Date: Sunday, August 7, 2011, 6:08 AM

as of recent times, some git rebase operations fail unexpectedly with
an error: "cannot create .git/index.lock: file exists". an
investigation session was something like the following:
$ ls -l .git
the index.lock file is not in the shown list.
$ ls -l .git/index.lock
the file is listed! it's a regular file, its size is ~60KiB.
$ cat .git/index.lock
some file content is shown.
$ mv .git/index.lock .git/someplace
moving fails with: index.lock: file does not exist.
$ ee .git/index.lock
some file content is shown, which i edit and save. then the
.git/index.lock file really disappears (cat, direct ls, ee, mv, etc.
do not find the file), and the content i put in the .git/index.lock
file via ee is now in .git/index.

H$X!111

i still have some git rebase operations (which are notably
disk-active) fail from time to time with "impossible" reasons (for
example: something like "cherry picking failed", or something like
"cannot move git-rebase-new to git-rebase-todo: file does not exist").

i'd note that the hard drive is kind of old (>7 years), and i recently
had the power cut during port build operations twice, although the
(UFS) filesystem is fsck-clean.

has anyone experienced anything like this?
what is the possibility of a filesystem/kernel bug or fsck bug?
___
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: gptzfsboot error using HP Smart Array P410i Controller

2011-08-07 Thread Xin LI
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On 08/01/11 06:07, Christoph Hoffmann wrote:
> Hello,
> 
> The initial reboot followed the installation of ZFS-only version 5/28
> system reports error:
> 
> Attempting Boot From Hard Drive (C:)
>  gptzfsboot: error 1 lba 32
>  gptzfsboot: error 1 lba 1
>  gptzfsboot: No ZFS pools located, can't boot
> 
> The same installation procedure on older ProLiant with Compaq Smart
> Array 5i do not cause any problems.

Looks like for some reason the drive number (%dl) didn't get passed
through ARGS (by pmbr.s).

Note that we shouldn't really pass the whole %dx here, as pmbr.s have
different understanding of %dh.  You may want to add a xor %dh, %dh
before the store line but after the main.2 label.

Please let us know if this helps or not.  Thanks in advance!

Cheers,
- -- 
Xin LI https://www.delphij.net/
FreeBSD - The Power to Serve!   Live free or die
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.18 (FreeBSD)

iQEcBAEBCAAGBQJOPwrDAAoJEATO+BI/yjfBIJ0IALzzDN/b0vfGLyqH8XgQSsqz
YDU3bxSRBVBcuZ76II0gOSaFZrWaH+bRcfjE/LNmS26TTWir67UVsoFk5gCaYkl+
L1oe76o5ISrp3Tr/mGNyKv/TN1WHeo8I0ExABfJUNw0NHIhXivtJMb7NLOJl5eed
/XfgYzHw8zAlnjbF7ZfMElEjjKUqTLl3VyHth+3KsUsK+zrZcU4gLzBHh7JnR31p
NvtyLxyMsQQTHKiaDtGVPGOgUPsDfTHdmAI77fgE26W6Z6FqCqV+xdEOuc+g5tRi
kC28HPUSijoX44vkDYp4B57988JUGauoJrKkTZ4L2LAh918ZAvuFhgRgtUpiHLY=
=O02h
-END PGP SIGNATURE-
Index: sys/boot/i386/pmbr/pmbr.s
===
--- sys/boot/i386/pmbr/pmbr.s   (revision 224700)
+++ sys/boot/i386/pmbr/pmbr.s   (working copy)
@@ -36,6 +36,7 @@
 
.set LOAD,0x7c00# Load address
.set EXEC,0x600 # Execution address
+   .set ARG,0x900  # Arguments
.set MAGIC,0xaa55   # Magic: bootable
.set SECSIZE,0x200  # Size of a single disk sector
.set DISKSIG,440# Disk signature offset
@@ -93,7 +94,8 @@ main.1:   movb $0x80,%dl  # Assume drive 
0x80
 #
 # Load the primary GPT header from LBA 1 and verify signature.
 #
-main.2:movw $GPT_ADDR,%bx
+main.2:mov %dx,ARG # Save drive number
+   movw $GPT_ADDR,%bx
movw $lba,%si
call read
cmpl $GPT_SIG_0,GPT_ADDR+GPT_SIG
___
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-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 17:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 17:40:00 - starting HEAD tinderbox run for amd64/amd64
TB --- 2011-08-07 17:40:00 - cleaning the object tree
TB --- 2011-08-07 17:40:17 - cvsupping the source tree
TB --- 2011-08-07 17:40:17 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2011-08-07 17:45:42 - building world
TB --- 2011-08-07 17:45:42 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 17:45:42 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 17:45:42 - TARGET=amd64
TB --- 2011-08-07 17:45:42 - TARGET_ARCH=amd64
TB --- 2011-08-07 17:45:42 - TZ=UTC
TB --- 2011-08-07 17:45:42 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 17:45:42 - cd /src
TB --- 2011-08-07 17:45:42 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 17:45: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
>>> stage 5.1: building 32 bit shim libraries
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 20:14:38 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 20:14:38 - ERROR: failed to build world
TB --- 2011-08-07 20:14:39 - 7027.64 user 1363.57 system 9278.88 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-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 17:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 17:40:00 - starting HEAD tinderbox run for i386/pc98
TB --- 2011-08-07 17:40:00 - cleaning the object tree
TB --- 2011-08-07 17:40:08 - cvsupping the source tree
TB --- 2011-08-07 17:40:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/pc98/supfile
TB --- 2011-08-07 17:40:31 - building world
TB --- 2011-08-07 17:40:31 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 17:40:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 17:40:31 - TARGET=pc98
TB --- 2011-08-07 17:40:31 - TARGET_ARCH=i386
TB --- 2011-08-07 17:40:31 - TZ=UTC
TB --- 2011-08-07 17:40:31 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 17:40:31 - cd /src
TB --- 2011-08-07 17:40:31 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 17:40:32 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 18:16:05 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 18:16:05 - ERROR: failed to build world
TB --- 2011-08-07 18:16:05 - 1585.66 user 422.45 system 2165.45 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 i386/i386

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 17:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 17:40:00 - starting HEAD tinderbox run for i386/i386
TB --- 2011-08-07 17:40:00 - cleaning the object tree
TB --- 2011-08-07 17:40:08 - cvsupping the source tree
TB --- 2011-08-07 17:40:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/i386/supfile
TB --- 2011-08-07 17:40:31 - building world
TB --- 2011-08-07 17:40:31 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 17:40:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 17:40:31 - TARGET=i386
TB --- 2011-08-07 17:40:31 - TARGET_ARCH=i386
TB --- 2011-08-07 17:40:31 - TZ=UTC
TB --- 2011-08-07 17:40:31 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 17:40:31 - cd /src
TB --- 2011-08-07 17:40:31 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 17:40:32 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 18:15:56 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 18:15:56 - ERROR: failed to build world
TB --- 2011-08-07 18:15:56 - 1587.06 user 408.05 system 2156.23 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 arm/arm

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 17:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 17:40:00 - starting HEAD tinderbox run for arm/arm
TB --- 2011-08-07 17:40:00 - cleaning the object tree
TB --- 2011-08-07 17:40:05 - cvsupping the source tree
TB --- 2011-08-07 17:40:05 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/arm/arm/supfile
TB --- 2011-08-07 17:40:31 - building world
TB --- 2011-08-07 17:40:31 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 17:40:31 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 17:40:31 - TARGET=arm
TB --- 2011-08-07 17:40:31 - TARGET_ARCH=arm
TB --- 2011-08-07 17:40:31 - TZ=UTC
TB --- 2011-08-07 17:40:31 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 17:40:31 - cd /src
TB --- 2011-08-07 17:40:31 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 17:40:32 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 18:06:05 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 18:06:05 - ERROR: failed to build world
TB --- 2011-08-07 18:06:05 - 1113.41 user 348.48 system 1565.45 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: ahci(4) breaks on MSI X58 Pro-E

2011-08-07 Thread Alexander Motin

On 06.08.2011 12:27, Ed Schouten wrote:

* Ed Schouten, 20110805 20:53:

The day before yesterday I upgraded a server of mine at Hetzner to
FreeBSD 9. It seems to use an MSI X58 Pro-E motherboard, having an ICH10
SATA-controller.

It seems that under high load, I get timeouts on the SATA controller. It
seems disabling MSI has no effect. Unfortunately it's a sort-of
production system, so I can't do a lot of testing with it and I also
don't have any hands-on console access.


False alarm. One of the hard disks of the server died, not long after I
upgraded to 9. They replaced the disk and the system runs fine again.

It should be noted that the ahci(4) driver made the system hang on
timeouts, whereas the ata(4) driver already observed timeouts during
startup and disabled the channel entirely. This allowed me to properly
boot with a single disk.


ata(4) always had more strict command timeout settings. That could allow 
to recover faster, but caused problems in some cases. About a week ago 
I've committed few patches to improve error recovery in case when device 
completely stops responding. On my tests hung device dropped within 2-3 
minutes. If device is not completely dead, repeating recovery may take 
more time, but obviously this case has no right solution. If you have 
some disk redundancy, you may try to reduce number of command retries to 
make system recover faster.


--
Alexander Motin
___
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-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 15:43:27 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 15:43:27 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2011-08-07 15:43:27 - cleaning the object tree
TB --- 2011-08-07 15:43:39 - cvsupping the source tree
TB --- 2011-08-07 15:43:39 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc64/powerpc/supfile
TB --- 2011-08-07 15:44:08 - building world
TB --- 2011-08-07 15:44:08 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 15:44:08 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 15:44:08 - TARGET=powerpc
TB --- 2011-08-07 15:44:08 - TARGET_ARCH=powerpc64
TB --- 2011-08-07 15:44:08 - TZ=UTC
TB --- 2011-08-07 15:44:08 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 15:44:08 - cd /src
TB --- 2011-08-07 15:44:08 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 15:44:09 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
>>> stage 5.1: building 32 bit shim libraries
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 17:19:50 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 17:19:50 - ERROR: failed to build world
TB --- 2011-08-07 17:19:50 - 4306.07 user 1022.40 system 5783.33 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 amd64/amd64

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 14:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 14:40:00 - starting HEAD tinderbox run for amd64/amd64
TB --- 2011-08-07 14:40:00 - cleaning the object tree
TB --- 2011-08-07 14:40:19 - cvsupping the source tree
TB --- 2011-08-07 14:40:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2011-08-07 14:45:44 - building world
TB --- 2011-08-07 14:45:44 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 14:45:44 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 14:45:44 - TARGET=amd64
TB --- 2011-08-07 14:45:44 - TARGET_ARCH=amd64
TB --- 2011-08-07 14:45:44 - TZ=UTC
TB --- 2011-08-07 14:45:44 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 14:45:44 - cd /src
TB --- 2011-08-07 14:45:44 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 14:45:44 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
>>> stage 5.1: building 32 bit shim libraries
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 17:14:34 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 17:14:34 - ERROR: failed to build world
TB --- 2011-08-07 17:14:34 - 7006.49 user 1362.31 system 9274.10 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"


Re: BETA1 IPv6 crash

2011-08-07 Thread Sergey Kandaurov
On 7 August 2011 17:11, Tom Vijlbrief  wrote:
> I installed BETA1 in a fresh ubuntu 11.04 KVM virtual machine with the
> new installer.
>
> Major issue I noticed was the missing /home.
>
> It took me quite some time to get IPv6 working in the guest (a Linux
> configuration issue), but now that it works
> BETA1 panics in about 50% of the boot attempts:
>
> testbsd dumped core - see /var/crash/vmcore.0
>
> Sun Aug  7 08:25:28 CEST 2011
>
> FreeBSD testbsd 9.0-BETA1 FreeBSD 9.0-BETA1 #0: Thu Jul 28 16:34:16
> UTC 2011     r...@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC
> i386
>
> panic: _mtx_lock_sleep: recursed on non-recursive mutex if_addr_mtx @
> /usr/src/sys/netinet6/mld6.c:1676
>
> GNU gdb 6.1.1 [FreeBSD]
> Copyright 2004 Free Software Foundation, Inc.
> GDB is free software, covered by the GNU General Public License, and you are
> welcome to change it and/or distribute copies of it under certain conditions.
> Type "show copying" to see the conditions.
> There is absolutely no warranty for GDB.  Type "show warranty" for details.
> This GDB was configured as "i386-marcel-freebsd"...
[..]
> panic: _mtx_lock_sleep: recursed on non-recursive mutex if_addr_mtx @
> /usr/src/sys/netinet6/mld6.c:1676
>
> cpuid = 0
> KDB: enter: panic
> Uptime: 28s
> Physical memory: 491 MB
> Dumping 45 MB: 30 14
>
> #0  doadump (textdump=1) at pcpu.h:244
> 244     pcpu.h: No such file or directory.
>        in pcpu.h
> (kgdb) #0  doadump (textdump=1) at pcpu.h:244
> #1  0xc0a04965 in kern_reboot (howto=260)
>    at /usr/src/sys/kern/kern_shutdown.c:430
> #2  0xc0a04291 in panic (fmt=Variable "fmt" is not available.
> ) at /usr/src/sys/kern/kern_shutdown.c:595
> #3  0xc09f4a4a in _mtx_lock_sleep (m=0xc35f3a28, tid=3278693824, opts=0,
>    file=0xc0f1ab65 "/usr/src/sys/netinet6/mld6.c", line=1676)
>    at /usr/src/sys/kern/kern_mutex.c:341
> #4  0xc09f4c67 in _mtx_lock_flags (m=0xc35f3a28, opts=0,
>    file=0xc0f1ab65 "/usr/src/sys/netinet6/mld6.c", line=1676)
>    at /usr/src/sys/kern/kern_mutex.c:203
> #5  0xc0bbf007 in mld_set_version (mli=0xc3589a00, version=Variable
> "version" is not available.
> )
>    at /usr/src/sys/netinet6/mld6.c:1676
> #6  0xc0bc0c00 in mld_input (m=0xc3951e00, off=48, icmp6len=24)
>    at /usr/src/sys/netinet6/mld6.c:690
> #7  0xc0ba5696 in icmp6_input (mp=0xc3313a54, offp=0xc3313a68, proto=58)
>    at /usr/src/sys/netinet6/icmp6.c:654
> #8  0xc0bba23a in ip6_input (m=0xc3951e00)
>    at /usr/src/sys/netinet6/ip6_input.c:964
> #9  0xc0ac9b1c in netisr_dispatch_src (proto=10, source=0, m=0xc3951e00)
>    at /usr/src/sys/net/netisr.c:1013
> #10 0xc0ac9da0 in netisr_dispatch (proto=10, m=0xc3951e00)
>    at /usr/src/sys/net/netisr.c:1104
> #11 0xc0abecf1 in ether_demux (ifp=0xc35f3800, m=0xc3951e00)
>    at /usr/src/sys/net/if_ethersubr.c:936
> #12 0xc0abf1b3 in ether_nh_input (m=0xc3951e00)
>    at /usr/src/sys/net/if_ethersubr.c:755
> #13 0xc0ac9b1c in netisr_dispatch_src (proto=9, source=0, m=0xc3951e00)
>    at /usr/src/sys/net/netisr.c:1013
> #14 0xc0ac9da0 in netisr_dispatch (proto=9, m=0xc3951e00)
>    at /usr/src/sys/net/netisr.c:1104
> #15 0xc0abe7f5 in ether_input (ifp=0xc35f3800, m=0xc3951e00)
>    at /usr/src/sys/net/if_ethersubr.c:796
> #16 0xc0672bc9 in lem_handle_rxtx (context=0xc3732000, pending=1)
>    at /usr/src/sys/dev/e1000/if_lem.c:3554
> #17 0xc0a468ab in taskqueue_run_locked (queue=0xc359ca80)
>    at /usr/src/sys/kern/subr_taskqueue.c:306
> #18 0xc0a47307 in taskqueue_thread_loop (arg=0xc37365ec)
>    at /usr/src/sys/kern/subr_taskqueue.c:495
> #19 0xc09d7af8 in fork_exit (callout=0xc0a472a0 ,
>    arg=0xc37365ec, frame=0xc3313d28) at /usr/src/sys/kern/kern_fork.c:941
> #20 0xc0d1d714 in fork_trampoline () at /usr/src/sys/i386/i386/exception.s:275
> (kgdb)
>

This is the same as in PR kern/158426.
Can you try the patch from PR followup and report us whether it helps?
Full link to PR with patch:
http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/158426

-- 
wbr,
pluknet
___
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: bsdtar(1) can't extract new ISO images

2011-08-07 Thread Bruce Cran

On 06/08/2011 18:02, Martin Matuska wrote:

The error is in FreeBSD ISO images.
They are created using makefs and that doesn't create ISO files that
strictly comple to the ECMA-119 (ISO9660 standard).

I have already filed a PR at NetBSD (bin/45217):
http://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=45217

The volume_set_id doesn't have to be filled with 0x20 characters, too.
I am also preparing a patch for libarchive (different things), but that
won't fix that one bug - makefs needs to be fixed.


Thanks for the information - I suspect this is also the problem I saw a 
few weeks ago on OS X Lion when trying to extract an ISO of Windows 
Server 2003 R2:


neutrino:tmp brucec$ tar -xvf 
en_win_srv_2003_r2_standard_with_sp2_cd2_X13-68583.iso

neutrino:tmp brucec$ echo $?
0

It would be nice if bsdtar exited with a non-zero code in this case.

--
Bruce Cran
___
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-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 15:16:05 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 15:16:05 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2011-08-07 15:16:05 - cleaning the object tree
TB --- 2011-08-07 15:16:09 - cvsupping the source tree
TB --- 2011-08-07 15:16:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc/powerpc/supfile
TB --- 2011-08-07 15:16:22 - building world
TB --- 2011-08-07 15:16:22 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 15:16:22 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 15:16:22 - TARGET=powerpc
TB --- 2011-08-07 15:16:22 - TARGET_ARCH=powerpc
TB --- 2011-08-07 15:16:22 - TZ=UTC
TB --- 2011-08-07 15:16:22 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 15:16:22 - cd /src
TB --- 2011-08-07 15:16:22 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 15:16:23 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 15:52:18 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 15:52:18 - ERROR: failed to build world
TB --- 2011-08-07 15:52:18 - 1593.00 user 391.39 system 2173.52 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 mips/mips

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 15:15:49 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 15:15:49 - starting HEAD tinderbox run for mips/mips
TB --- 2011-08-07 15:15:49 - cleaning the object tree
TB --- 2011-08-07 15:15:54 - cvsupping the source tree
TB --- 2011-08-07 15:15:54 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/mips/mips/supfile
TB --- 2011-08-07 15:16:07 - building world
TB --- 2011-08-07 15:16:07 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 15:16:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 15:16:07 - TARGET=mips
TB --- 2011-08-07 15:16:07 - TARGET_ARCH=mips
TB --- 2011-08-07 15:16:07 - TZ=UTC
TB --- 2011-08-07 15:16:07 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 15:16:07 - cd /src
TB --- 2011-08-07 15:16:07 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 15:16:07 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 15:43:26 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 15:43:26 - ERROR: failed to build world
TB --- 2011-08-07 15:43:26 - 1152.99 user 337.45 system 1656.77 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 i386/pc98

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 14:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 14:40:00 - starting HEAD tinderbox run for i386/pc98
TB --- 2011-08-07 14:40:00 - cleaning the object tree
TB --- 2011-08-07 14:40:08 - cvsupping the source tree
TB --- 2011-08-07 14:40:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/pc98/supfile
TB --- 2011-08-07 14:40:26 - building world
TB --- 2011-08-07 14:40:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 14:40:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 14:40:26 - TARGET=pc98
TB --- 2011-08-07 14:40:26 - TARGET_ARCH=i386
TB --- 2011-08-07 14:40:26 - TZ=UTC
TB --- 2011-08-07 14:40:26 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 14:40:26 - cd /src
TB --- 2011-08-07 14:40:26 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 14:40:26 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 15:16:05 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 15:16:05 - ERROR: failed to build world
TB --- 2011-08-07 15:16:05 - 1585.08 user 422.07 system 2164.58 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 i386/i386

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 14:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 14:40:00 - starting HEAD tinderbox run for i386/i386
TB --- 2011-08-07 14:40:00 - cleaning the object tree
TB --- 2011-08-07 14:40:08 - cvsupping the source tree
TB --- 2011-08-07 14:40:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/i386/supfile
TB --- 2011-08-07 14:40:26 - building world
TB --- 2011-08-07 14:40:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 14:40:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 14:40:26 - TARGET=i386
TB --- 2011-08-07 14:40:26 - TARGET_ARCH=i386
TB --- 2011-08-07 14:40:26 - TZ=UTC
TB --- 2011-08-07 14:40:26 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 14:40:26 - cd /src
TB --- 2011-08-07 14:40:26 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 14:40:26 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 15:15:49 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 15:15:49 - ERROR: failed to build world
TB --- 2011-08-07 15:15:49 - 1582.80 user 411.32 system 2148.89 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 arm/arm

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 14:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 14:40:00 - starting HEAD tinderbox run for arm/arm
TB --- 2011-08-07 14:40:00 - cleaning the object tree
TB --- 2011-08-07 14:40:08 - cvsupping the source tree
TB --- 2011-08-07 14:40:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/arm/arm/supfile
TB --- 2011-08-07 14:40:26 - building world
TB --- 2011-08-07 14:40:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 14:40:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 14:40:26 - TARGET=arm
TB --- 2011-08-07 14:40:26 - TARGET_ARCH=arm
TB --- 2011-08-07 14:40:26 - TZ=UTC
TB --- 2011-08-07 14:40:26 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 14:40:26 - cd /src
TB --- 2011-08-07 14:40:26 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 14:40:26 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 15:05:50 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 15:05:50 - ERROR: failed to build world
TB --- 2011-08-07 15:05:50 - 1109.51 user 350.46 system 1549.76 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 powerpc64/powerpc

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 12:43:38 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 12:43:38 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2011-08-07 12:43:38 - cleaning the object tree
TB --- 2011-08-07 12:43:51 - cvsupping the source tree
TB --- 2011-08-07 12:43:51 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc64/powerpc/supfile
TB --- 2011-08-07 12:44:03 - building world
TB --- 2011-08-07 12:44:03 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 12:44:03 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 12:44:03 - TARGET=powerpc
TB --- 2011-08-07 12:44:03 - TARGET_ARCH=powerpc64
TB --- 2011-08-07 12:44:03 - TZ=UTC
TB --- 2011-08-07 12:44:03 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 12:44:03 - cd /src
TB --- 2011-08-07 12:44:03 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 12:44: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
>>> stage 5.1: building 32 bit shim libraries
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 14:19:47 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 14:19:47 - ERROR: failed to build world
TB --- 2011-08-07 14:19:47 - 4306.53 user 1022.33 system 5768.90 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 amd64/amd64

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 11:40:01 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 11:40:01 - starting HEAD tinderbox run for amd64/amd64
TB --- 2011-08-07 11:40:01 - cleaning the object tree
TB --- 2011-08-07 11:40:19 - cvsupping the source tree
TB --- 2011-08-07 11:40:19 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2011-08-07 11:45:43 - building world
TB --- 2011-08-07 11:45:43 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 11:45:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 11:45:43 - TARGET=amd64
TB --- 2011-08-07 11:45:43 - TARGET_ARCH=amd64
TB --- 2011-08-07 11:45:43 - TZ=UTC
TB --- 2011-08-07 11:45:43 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 11:45:43 - cd /src
TB --- 2011-08-07 11:45:43 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 11:45:44 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
>>> stage 5.1: building 32 bit shim libraries
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 14:14:34 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 14:14:34 - ERROR: failed to build world
TB --- 2011-08-07 14:14:34 - 7006.04 user 1362.70 system 9273.01 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"


BETA1 IPv6 crash

2011-08-07 Thread Tom Vijlbrief
I installed BETA1 in a fresh ubuntu 11.04 KVM virtual machine with the
new installer.

Major issue I noticed was the missing /home.

It took me quite some time to get IPv6 working in the guest (a Linux
configuration issue), but now that it works
BETA1 panics in about 50% of the boot attempts:

testbsd dumped core - see /var/crash/vmcore.0

Sun Aug  7 08:25:28 CEST 2011

FreeBSD testbsd 9.0-BETA1 FreeBSD 9.0-BETA1 #0: Thu Jul 28 16:34:16
UTC 2011 r...@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC
i386

panic: _mtx_lock_sleep: recursed on non-recursive mutex if_addr_mtx @
/usr/src/sys/netinet6/mld6.c:1676

GNU gdb 6.1.1 [FreeBSD]
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i386-marcel-freebsd"...

Unread portion of the kernel message buffer:
Copyright (c) 1992-2011 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 9.0-BETA1 #0: Thu Jul 28 16:34:16 UTC 2011
r...@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386
WARNING: WITNESS option enabled, expect reduced performance.
CPU: QEMU Virtual CPU version 0.14.0 (3013.63-MHz 686-class CPU)
  Origin = "AuthenticAMD"  Id = 0x623  Family = 6  Model = 2  Stepping = 3
  
Features=0x783fbfd
  Features2=0x80802001
  AMD Features=0x100800
  AMD Features2=0x61
real memory  = 536870912 (512 MB)
avail memory = 501788672 (478 MB)
Event timer "LAPIC" quality 400
ACPI APIC Table: 
ioapic0: Changing APIC ID to 1
ioapic0  irqs 0-23 on motherboard
kbd1 at kbdmux0
acpi0:  on motherboard
acpi0: Power Button (fixed)
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <24-bit timer at 3.579545MHz> port 0xb008-0xb00b on acpi0
cpu0:  on acpi0
pcib0:  port 0xcf8-0xcff on acpi0
pci0:  on pcib0
pci_link4: Unable to route IRQs: AE_NOT_FOUND
isab0:  at device 1.0 on pci0
isa0:  on isab0
atapci0:  port
0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xc580-0xc58f at device 1.1 on
pci0
ata0:  on atapci0
ata1:  on atapci0
uhci0:  port 0xc540-0xc55f irq
11 at device 1.2 on pci0
usbus0: controller did not stop
usbus0:  on uhci0
pci0:  at device 1.3 (no driver attached)
vgapci0:  mem
0xfc00-0xfdff,0xfebf-0xfebf0fff at device 2.0 on pci0
em0:  port
0xc500-0xc53f mem 0xfebc-0xfebd irq 11 at device 3.0 on pci0
em0: Memory Access and/or Bus Master bits were not set!
em0: Ethernet address: 52:54:00:d6:ff:9e
pcm0:  port 0xc000-0xc3ff,0xc400-0xc4ff irq 11 at
device 4.0 on pci0
pcm0: 
pci0:  at device 5.0 (no driver attached)
hpet0:  iomem 0xfed0-0xfed003ff on acpi0
Timecounter "HPET" frequency 1 Hz quality 950
atrtc0:  port 0x70-0x71,0x72-0x77 irq 8 on acpi0
Event timer "RTC" frequency 32768 Hz quality 0
atkbdc0:  port 0x60,0x64 irq 1 on acpi0
atkbd0:  irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
psm0:  irq 12 on atkbdc0
psm0: [GIANT-LOCKED]
psm0: model IntelliMouse Explorer, device ID 4
fdc0:  port 0x3f2-0x3f5,0x3f7 irq 6 drq 2 on acpi0
fdc0: does not respond
device_attach: fdc0 attach returned 6
pmtimer0 on isa0
sc0:  at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
vga0:  at port 0x3c0-0x3df iomem 0xa-0xb on isa0
attimer0:  at port 0x40 on isa0
Timecounter "i8254" frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
ppc0: parallel port not found.
uart0: <16550 or compatible> at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
Timecounters tick every 10.000 msec
pcm0: measured ac97 link rate at 64028 Hz
usbus0: 12Mbps Full Speed USB v1.0
ugen0.1:  at usbus0
uhub0:  on usbus0
ada0 at ata0 bus 0 scbus0 target 0 lun 0
ada0:  ATA-7 device
ada0: 16.700MB/s transfers (WDMA2, PIO 8192bytes)
ada0: 12288MB (25165824 512 byte sectors: 16H 63S/T 16383C)
ada0: Previously was known as ad0
cd0 at ata1 bus 0 scbus1 target 0 lun 0
cd0:  Removable CD-ROM SCSI-0 device
cd0: 16.700MB/s transfers (WDMA2, ATAPI 12bytes, PIO 65534bytes)
cd0: cd present [254792 x 2048 byte records]
Timecounter "TSC" frequency 3013632108 Hz quality 800
WARNING: WITNESS option enabled, expect reduced performance.
Root mount waiting for: usbus0
uhub0: 2 ports with 2 removable, self powered
Trying to mount root from ufs:/dev/ada0p2 [rw]...
WARNING: / was not properly dismounted
<118>Setting hostuuid: 06ffa4c2-9c9c-c26a-65d5-36b743860adc.
<118>Setting hostid: 0x0895d182.
<118>Entropy harvesting: interrupts ethernet point_to_point kickstart.
<118>Starting file system checks:
<118>** SU+J Recovering /dev/ada0p2
<118>** Reading 33554432 byte journal from inode 4.
<118>** Building recovery table.
<118>** Resolving unreferenced inode list.
<118>** Proce

Re: High Network Perfomance

2011-08-07 Thread Slawa Olhovchenkov
On Thu, Aug 04, 2011 at 08:39:17PM -0300, Victor Detoni wrote:

> Hi Guys,
> 
> I'm trying tunning a FreeBSD 8.2 to high perfomance network with pf. My
> server configuration is:
> 
> Dell 1950
> CPU: Intel(R) Xeon(R) CPU5130  @ 2.00GHz (1995.03-MHz K8-class
> CPU)
> 4 x CPU
> 2 NIC ( 1 NIC (em0: )
> 
> I want to reach the high processing of packets per second and use pf as
> synproxy and we still processor to handle others packets or flows.
> 
> I know that em drivers has MULTI_QUEUE implementation that helps high
> performance for Intel drivers, but I couldn't see more information about. We
> can reached 500k pps, but no more traffic was processed by this interface.
> 
> I've already enabled net.isr.direct but with Intel Drivers does not work and
> the most processors are in System instead of Interrupts, why? When I enable
> net.isr.direct the processing is balanced for on CPU in system and another
> in interrupt and I reached 1M pps, but the total perfomance is down, the
> load grow up too fast.
> 
> I've changed some parameter in sysctl for intel drivers, but it doesn't have
> effect.
> 
> Someone know what I can do to reach more packets performance? I want to use
> this FreeBSD as a router/firewall only.

FreeBSD (and em) need some tuning for high perfomance.

Next links in russian, sorry.

http://dadv.livejournal.com/138951.html
http://dadv.livejournal.com/139170.html
http://dadv.livejournal.com/139366.html

-- 
Slawa Olhovchenkov
___
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-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 12:16:11 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 12:16:11 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2011-08-07 12:16:11 - cleaning the object tree
TB --- 2011-08-07 12:16:15 - cvsupping the source tree
TB --- 2011-08-07 12:16:15 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc/powerpc/supfile
TB --- 2011-08-07 12:16:29 - building world
TB --- 2011-08-07 12:16:29 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 12:16:29 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 12:16:29 - TARGET=powerpc
TB --- 2011-08-07 12:16:29 - TARGET_ARCH=powerpc
TB --- 2011-08-07 12:16:29 - TZ=UTC
TB --- 2011-08-07 12:16:29 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 12:16:29 - cd /src
TB --- 2011-08-07 12:16:29 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 12:16: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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 12:52:33 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 12:52:33 - ERROR: failed to build world
TB --- 2011-08-07 12:52:33 - 1592.72 user 392.42 system 2181.87 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 mips/mips

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 12:15:57 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 12:15:57 - starting HEAD tinderbox run for mips/mips
TB --- 2011-08-07 12:15:57 - cleaning the object tree
TB --- 2011-08-07 12:16:02 - cvsupping the source tree
TB --- 2011-08-07 12:16:02 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/mips/mips/supfile
TB --- 2011-08-07 12:16:15 - building world
TB --- 2011-08-07 12:16:15 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 12:16:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 12:16:15 - TARGET=mips
TB --- 2011-08-07 12:16:15 - TARGET_ARCH=mips
TB --- 2011-08-07 12:16:15 - TZ=UTC
TB --- 2011-08-07 12:16:15 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 12:16:15 - cd /src
TB --- 2011-08-07 12:16:15 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 12:16:16 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 12:43:38 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 12:43:38 - ERROR: failed to build world
TB --- 2011-08-07 12:43:38 - 1154.32 user 337.42 system 1660.26 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 i386/pc98

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 11:40:01 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 11:40:01 - starting HEAD tinderbox run for i386/pc98
TB --- 2011-08-07 11:40:01 - cleaning the object tree
TB --- 2011-08-07 11:40:08 - cvsupping the source tree
TB --- 2011-08-07 11:40:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/pc98/supfile
TB --- 2011-08-07 11:40:27 - building world
TB --- 2011-08-07 11:40:27 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 11:40:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 11:40:27 - TARGET=pc98
TB --- 2011-08-07 11:40:27 - TARGET_ARCH=i386
TB --- 2011-08-07 11:40:27 - TZ=UTC
TB --- 2011-08-07 11:40:27 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 11:40:27 - cd /src
TB --- 2011-08-07 11:40:27 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 11:40: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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 12:16:11 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 12:16:11 - ERROR: failed to build world
TB --- 2011-08-07 12:16:11 - 1583.91 user 423.45 system 2170.18 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 i386/i386

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 11:40:01 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 11:40:01 - starting HEAD tinderbox run for i386/i386
TB --- 2011-08-07 11:40:01 - cleaning the object tree
TB --- 2011-08-07 11:40:09 - cvsupping the source tree
TB --- 2011-08-07 11:40:09 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/i386/supfile
TB --- 2011-08-07 11:40:27 - building world
TB --- 2011-08-07 11:40:27 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 11:40:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 11:40:27 - TARGET=i386
TB --- 2011-08-07 11:40:27 - TARGET_ARCH=i386
TB --- 2011-08-07 11:40:27 - TZ=UTC
TB --- 2011-08-07 11:40:27 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 11:40:27 - cd /src
TB --- 2011-08-07 11:40:27 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 11:40: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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 12:15:57 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 12:15:57 - ERROR: failed to build world
TB --- 2011-08-07 12:15:57 - 1585.16 user 412.03 system 2156.62 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 arm/arm

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 11:40:01 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 11:40:01 - starting HEAD tinderbox run for arm/arm
TB --- 2011-08-07 11:40:01 - cleaning the object tree
TB --- 2011-08-07 11:40:08 - cvsupping the source tree
TB --- 2011-08-07 11:40:08 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/arm/arm/supfile
TB --- 2011-08-07 11:40:27 - building world
TB --- 2011-08-07 11:40:27 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 11:40:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 11:40:27 - TARGET=arm
TB --- 2011-08-07 11:40:27 - TARGET_ARCH=arm
TB --- 2011-08-07 11:40:27 - TZ=UTC
TB --- 2011-08-07 11:40:27 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 11:40:27 - cd /src
TB --- 2011-08-07 11:40:27 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 11:40: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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 12:06:09 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 12:06:09 - ERROR: failed to build world
TB --- 2011-08-07 12:06:09 - 1110.04 user 352.30 system 1568.31 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 powerpc64/powerpc

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 09:43:45 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 09:43:45 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2011-08-07 09:43:45 - cleaning the object tree
TB --- 2011-08-07 09:44:01 - cvsupping the source tree
TB --- 2011-08-07 09:44:01 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc64/powerpc/supfile
TB --- 2011-08-07 09:44:27 - building world
TB --- 2011-08-07 09:44:27 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 09:44:27 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 09:44:27 - TARGET=powerpc
TB --- 2011-08-07 09:44:27 - TARGET_ARCH=powerpc64
TB --- 2011-08-07 09:44:27 - TZ=UTC
TB --- 2011-08-07 09:44:27 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 09:44:27 - cd /src
TB --- 2011-08-07 09:44:27 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 09:44:27 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
>>> stage 5.1: building 32 bit shim libraries
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 11:20:00 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 11:20:00 - ERROR: failed to build world
TB --- 2011-08-07 11:20:00 - 4305.28 user 1020.80 system 5774.71 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 amd64/amd64

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 08:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 08:40:00 - starting HEAD tinderbox run for amd64/amd64
TB --- 2011-08-07 08:40:00 - cleaning the object tree
TB --- 2011-08-07 08:40:17 - cvsupping the source tree
TB --- 2011-08-07 08:40:17 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2011-08-07 08:45:43 - building world
TB --- 2011-08-07 08:45:43 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 08:45:43 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 08:45:43 - TARGET=amd64
TB --- 2011-08-07 08:45:43 - TARGET_ARCH=amd64
TB --- 2011-08-07 08:45:43 - TZ=UTC
TB --- 2011-08-07 08:45:43 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 08:45:43 - cd /src
TB --- 2011-08-07 08:45:43 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 08:45:44 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
>>> stage 5.1: building 32 bit shim libraries
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 11:14:36 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 11:14:36 - ERROR: failed to build world
TB --- 2011-08-07 11:14:36 - 7012.51 user 1355.91 system 9276.31 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"


xconsole/xterm -C, syslog, and geli

2011-08-07 Thread Claude Buisson

Hi,

Starting somewhere with 8-CURRENT (Ed Shouten work on the tty subsytem) xconsole
and xterm -C cannot grab the console, without hacks. For example see:

http://lists.freebsd.org/pipermail/freebsd-current/2011-January/022116.html
http://lists.freebsd.org/pipermail/freebsd-current/2011-February/023109.html

Even with some hacking (in my case patching mac_stub.c) syslog (non kernel)
entries are not displayed (they remain on ttyv0).

A new point (for me) is that (kernel) messages from geli/geom_eli, like:

Aug  7 10:41:04 zorglub kernel: cryptosoft0:  on motherboard
Aug  7 10:41:16 zorglub kernel: GEOM_ELI: Device ada0p9.eli created.
Aug  7 10:41:16 zorglub kernel: GEOM_ELI: Encryption: AES-XTS 128
Aug  7 10:41:16 zorglub kernel: GEOM_ELI:  Integrity: HMAC/SHA256
Aug  7 10:41:16 zorglub kernel: GEOM_ELI: Crypto: software

appears only as _empty_ lines on xconsole.

This is on a 9-CURRENT system amd64 SMP (2011/07/24 svn r224294).

Any hint to solve this problem ?

Thx

CBu
___
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"


dtrace walltimestamp

2011-08-07 Thread Ashley Williams
walltimestamp and timestamp don't appear to be right in BETA-1:


# dtrace -qn 'syscall::exec*:return { printf("%Y
%s\n",walltimestamp,curpsinfo->pr_psargs); }'
1970 Jan  1 10:00:00 date
1970 Jan  1 10:00:00 ping
1970 Jan  1 10:00:00 ls


# dtrace -qn 'syscall::exec*:return { printf("%Y
%s\n",timestamp,curpsinfo->pr_psargs); }'
1970 Jan  6 12:02:27 ping
1970 Jan  6 12:02:29 ls
1970 Jan  6 12:02:31 dtrace

dmesg:

dtrace_gethrestime(459): XXX
dtrace_gethrestime(459): XXX
dtrace_gethrestime(459): XXX
dtrace_gethrestime(459): XXX
dtrace_gethrestime(459): XXX
dtrace_gethrestime(459): XXX
dtrace_gethrestime(459): XXX


# date
Sun Aug  7 19:47:02 EST 2011

# uname -a
FreeBSD shikai 9.0-BETA1 FreeBSD 9.0-BETA1 #0: Tue Aug  2 09:35:34 EST 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"


[head tinderbox] failure on powerpc/powerpc

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 09:16:07 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 09:16:07 - starting HEAD tinderbox run for powerpc/powerpc
TB --- 2011-08-07 09:16:07 - cleaning the object tree
TB --- 2011-08-07 09:16:12 - cvsupping the source tree
TB --- 2011-08-07 09:16:12 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc/powerpc/supfile
TB --- 2011-08-07 09:16:26 - building world
TB --- 2011-08-07 09:16:26 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 09:16:26 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 09:16:26 - TARGET=powerpc
TB --- 2011-08-07 09:16:26 - TARGET_ARCH=powerpc
TB --- 2011-08-07 09:16:26 - TZ=UTC
TB --- 2011-08-07 09:16:26 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 09:16:26 - cd /src
TB --- 2011-08-07 09:16:26 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 09:16:27 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 09:52:38 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 09:52:38 - ERROR: failed to build world
TB --- 2011-08-07 09:52:38 - 1592.71 user 394.12 system 2191.02 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 mips/mips

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 09:15:56 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 09:15:56 - starting HEAD tinderbox run for mips/mips
TB --- 2011-08-07 09:15:56 - cleaning the object tree
TB --- 2011-08-07 09:16:01 - cvsupping the source tree
TB --- 2011-08-07 09:16:01 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/mips/mips/supfile
TB --- 2011-08-07 09:16:15 - building world
TB --- 2011-08-07 09:16:15 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 09:16:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 09:16:15 - TARGET=mips
TB --- 2011-08-07 09:16:15 - TARGET_ARCH=mips
TB --- 2011-08-07 09:16:15 - TZ=UTC
TB --- 2011-08-07 09:16:15 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 09:16:15 - cd /src
TB --- 2011-08-07 09:16:15 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 09:16:15 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 09:43:45 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 09:43:45 - ERROR: failed to build world
TB --- 2011-08-07 09:43:45 - 1151.27 user 341.29 system 1668.51 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 i386/pc98

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 08:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 08:40:00 - starting HEAD tinderbox run for i386/pc98
TB --- 2011-08-07 08:40:00 - cleaning the object tree
TB --- 2011-08-07 08:40:07 - cvsupping the source tree
TB --- 2011-08-07 08:40:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/pc98/supfile
TB --- 2011-08-07 08:40:28 - building world
TB --- 2011-08-07 08:40:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 08:40:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 08:40:28 - TARGET=pc98
TB --- 2011-08-07 08:40:28 - TARGET_ARCH=i386
TB --- 2011-08-07 08:40:28 - TZ=UTC
TB --- 2011-08-07 08:40:28 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 08:40:28 - cd /src
TB --- 2011-08-07 08:40:28 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 08:40:29 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 09:16:07 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 09:16:07 - ERROR: failed to build world
TB --- 2011-08-07 09:16:07 - 1585.84 user 423.65 system 2167.34 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 i386/i386

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 08:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 08:40:00 - starting HEAD tinderbox run for i386/i386
TB --- 2011-08-07 08:40:00 - cleaning the object tree
TB --- 2011-08-07 08:40:07 - cvsupping the source tree
TB --- 2011-08-07 08:40:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/i386/i386/supfile
TB --- 2011-08-07 08:40:28 - building world
TB --- 2011-08-07 08:40:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 08:40:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 08:40:28 - TARGET=i386
TB --- 2011-08-07 08:40:28 - TARGET_ARCH=i386
TB --- 2011-08-07 08:40:28 - TZ=UTC
TB --- 2011-08-07 08:40:28 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 08:40:28 - cd /src
TB --- 2011-08-07 08:40:28 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 08:40:29 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 09:15:56 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 09:15:56 - ERROR: failed to build world
TB --- 2011-08-07 09:15:56 - 1584.55 user 412.67 system 2156.50 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 arm/arm

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 08:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 08:40:00 - starting HEAD tinderbox run for arm/arm
TB --- 2011-08-07 08:40:00 - cleaning the object tree
TB --- 2011-08-07 08:40:07 - cvsupping the source tree
TB --- 2011-08-07 08:40:07 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/arm/arm/supfile
TB --- 2011-08-07 08:40:28 - building world
TB --- 2011-08-07 08:40:28 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 08:40:28 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 08:40:28 - TARGET=arm
TB --- 2011-08-07 08:40:28 - TARGET_ARCH=arm
TB --- 2011-08-07 08:40:28 - TZ=UTC
TB --- 2011-08-07 08:40:28 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 08:40:28 - cd /src
TB --- 2011-08-07 08:40:28 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 08:40:29 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
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 09:06:04 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 09:06:04 - ERROR: failed to build world
TB --- 2011-08-07 09:06:04 - 1108.49 user 353.99 system 1564.37 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 powerpc64/powerpc

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 06:43:36 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 06:43:36 - starting HEAD tinderbox run for powerpc64/powerpc
TB --- 2011-08-07 06:43:36 - cleaning the object tree
TB --- 2011-08-07 06:43:50 - cvsupping the source tree
TB --- 2011-08-07 06:43:50 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/powerpc64/powerpc/supfile
TB --- 2011-08-07 06:44:04 - building world
TB --- 2011-08-07 06:44:04 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 06:44:04 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 06:44:04 - TARGET=powerpc
TB --- 2011-08-07 06:44:04 - TARGET_ARCH=powerpc64
TB --- 2011-08-07 06:44:04 - TZ=UTC
TB --- 2011-08-07 06:44:04 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 06:44:04 - cd /src
TB --- 2011-08-07 06:44:04 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 06:44: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
>>> stage 5.1: building 32 bit shim libraries
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 08:20:01 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 08:20:02 - ERROR: failed to build world
TB --- 2011-08-07 08:20:02 - 4306.68 user 1026.48 system 5785.20 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 amd64/amd64

2011-08-07 Thread FreeBSD Tinderbox
TB --- 2011-08-07 05:40:00 - tinderbox 2.7 running on freebsd-current.sentex.ca
TB --- 2011-08-07 05:40:00 - starting HEAD tinderbox run for amd64/amd64
TB --- 2011-08-07 05:40:00 - cleaning the object tree
TB --- 2011-08-07 05:40:20 - cvsupping the source tree
TB --- 2011-08-07 05:40:20 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca 
/tinderbox/HEAD/amd64/amd64/supfile
TB --- 2011-08-07 05:45:45 - building world
TB --- 2011-08-07 05:45:45 - MAKEOBJDIRPREFIX=/obj
TB --- 2011-08-07 05:45:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin
TB --- 2011-08-07 05:45:45 - TARGET=amd64
TB --- 2011-08-07 05:45:45 - TARGET_ARCH=amd64
TB --- 2011-08-07 05:45:45 - TZ=UTC
TB --- 2011-08-07 05:45:45 - __MAKE_CONF=/dev/null
TB --- 2011-08-07 05:45:45 - cd /src
TB --- 2011-08-07 05:45:45 - /usr/bin/make -B buildworld
>>> World build started on Sun Aug  7 05:45:45 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
>>> stage 5.1: building 32 bit shim libraries
[...]
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_map_id2thr':
/src/lib/libthread_db/libthr_db.c:217: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_thr_iter':
/src/lib/libthread_db/libthr_db.c:257: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_ta_event_getmsg':
/src/lib/libthread_db/libthr_db.c:398: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
/src/lib/libthread_db/libthr_db.c: In function 'pt_thr_event_getmsg':
/src/lib/libthread_db/libthr_db.c:702: warning: passing argument 3 of 
'thr_pread_long' from incompatible pointer type
*** Error code 1

Stop in /src/lib/libthread_db.
*** Error code 1

Stop in /src/lib.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
*** Error code 1

Stop in /src.
TB --- 2011-08-07 08:15:26 - WARNING: /usr/bin/make returned exit code  1 
TB --- 2011-08-07 08:15:26 - ERROR: failed to build world
TB --- 2011-08-07 08:15:26 - 7016.27 user 1360.45 system 9325.76 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"


Re: [clang] (gpt)zfsboot is broken: zfs_alloc()/zfs_free() mismatch

2011-08-07 Thread Test Rat
Dimitry Andric  writes:

> On 2011-08-05 07:08, Test Rat wrote:
>> Pawel Worach  writes:
> ...
>>> A workaround for the hang on boot and "error 1 lba X" failures is the
>>> following patch, it would be interesting if it also makes the
>>> zfs_alloc/free error go away too.
>> After applying the patch zfsboot and gptzfsboot boot successfully.
>> Tested both inside qemu and only gptzfsboot on a living system.
>
> Hi,
>
> Can you please try the following alternative patch, which should fix the
> problem without disabling -mrtd?  E.g. revert the previous patch, then
> apply this one.

It boots fine after applying either of patches. I've made sure
the bug appeared again before testing the new patch.

zfsboot and gptzfsboot built with gcc still boot, too.

> Of course, if any other posters in this thread that had problems with
> gptzfsboot (or 'plain' zfsboot) can also confirm this patch works, it
> would be nice. :)
___
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"