Re: svn commit: r203990 - head/lib/libc/sys

2010-02-17 Thread Tim Kientzle
Garrett Cooper wrote: On Wed, Feb 17, 2010 at 1:11 AM, Poul-Henning Kamp wrote: Author: phk Date: Wed Feb 17 09:11:21 2010 New Revision: 203990 URL: http://svn.freebsd.org/changeset/base/203990 Log: Mention EISDIR as a possible errno. Modified: head/lib/libc/sys/unlink.2 This is wrong

svn commit: r204031 - in head: share/mk sys/conf sys/kern sys/mips/mips

2010-02-17 Thread Neel Natu
Author: neel Date: Thu Feb 18 05:49:52 2010 New Revision: 204031 URL: http://svn.freebsd.org/changeset/base/204031 Log: Kernel module support for mips. Reviewed by: gonzo Tested by: Alexandr Rybalko (r...@dlink.ua) Modified: head/share/mk/bsd.cpu.mk head/sys/conf/files.mips head

Re: svn commit: r204025 - head/share/mk

2010-02-17 Thread M. Warner Losh
In message: <201002180206.o1i26vjl023...@svn.freebsd.org> Marcel Moolenaar writes: : Allow suppression of -Wcast-align for WARNS>=4 by defining : NO_WCAST_ALIGN. The headers of the standard C++ library are : not 64-bit clean and trigger the warning. This prevents use : of WARNS

svn commit: r204030 - head/usr.bin

2010-02-17 Thread Warner Losh
Author: imp Date: Thu Feb 18 05:14:36 2010 New Revision: 204030 URL: http://svn.freebsd.org/changeset/base/204030 Log: bc and dc are not BSD version, not GNU version. Modified: head/usr.bin/Makefile Modified: head/usr.bin/Makefile =

svn commit: r204027 - head/share/mk

2010-02-17 Thread Marcel Moolenaar
Author: marcel Date: Thu Feb 18 03:32:51 2010 New Revision: 204027 URL: http://svn.freebsd.org/changeset/base/204027 Log: Also add DEBUG_FLAGS to CXXFLAGS if defined. Modified: head/share/mk/bsd.prog.mk Modified: head/share/mk/bsd.prog.mk =

svn commit: r204025 - head/share/mk

2010-02-17 Thread Marcel Moolenaar
Author: marcel Date: Thu Feb 18 02:06:57 2010 New Revision: 204025 URL: http://svn.freebsd.org/changeset/base/204025 Log: Allow suppression of -Wcast-align for WARNS>=4 by defining NO_WCAST_ALIGN. The headers of the standard C++ library are not 64-bit clean and trigger the warning. This prev

svn commit: r204024 - head/share/mk

2010-02-17 Thread Marcel Moolenaar
Author: marcel Date: Thu Feb 18 01:44:48 2010 New Revision: 204024 URL: http://svn.freebsd.org/changeset/base/204024 Log: Unbreak WARNS=6 builds for C++ code: -Wold-style-definition is not accepted by the C++ compiler. Filter it out. Modified: head/share/mk/sys.mk Modified: head/share/mk/s

svn commit: r204019 - head/sys/dev/aac

2010-02-17 Thread Ed Maste
Author: emaste Date: Wed Feb 17 22:28:37 2010 New Revision: 204019 URL: http://svn.freebsd.org/changeset/base/204019 Log: Include command type in COMMAND TIMEOUT messages to aid in debugging. Modified: head/sys/dev/aac/aac.c Modified: head/sys/dev/aac/aac.c ==

svn commit: r204017 - head/tools/regression/bin/sh/expansion

2010-02-17 Thread Jilles Tjoelker
Author: jilles Date: Wed Feb 17 22:25:22 2010 New Revision: 204017 URL: http://svn.freebsd.org/changeset/base/204017 Log: sh: arith: Add a test for a bug in the dash arith code, which I plan to import at some point. Our current code handles it fine and it should stay that way. Added: head

svn commit: r204016 - head/tools/regression/bin/sh/expansion

2010-02-17 Thread Jilles Tjoelker
Author: jilles Date: Wed Feb 17 22:22:20 2010 New Revision: 204016 URL: http://svn.freebsd.org/changeset/base/204016 Log: sh: arith: Test an octal constant as well. Modified: head/tools/regression/bin/sh/expansion/arith2.0 Modified: head/tools/regression/bin/sh/expansion/arith2.0 ===

Re: svn commit: r203926 - in head/games/fortune: fortune strfile unstr

2010-02-17 Thread Dag-Erling Smørgrav
Ulrich Spörlein writes: > That said, the only object code altering change is the replacing of > exit(0) with return(0) at the end of main(). That's a regression. DES -- Dag-Erling Smørgrav - d...@des.no ___ svn-src-head@freebsd.org mailing list http:/

Re: svn commit: r203926 - in head/games/fortune: fortune strfile unstr

2010-02-17 Thread John Baldwin
On Wednesday 17 February 2010 1:51:33 pm Ulrich Spörlein wrote: > On Wed, 17.02.2010 at 11:43:57 -0500, John Baldwin wrote: > > On Monday 15 February 2010 10:10:22 am Ulrich Spoerlein wrote: > > > Author: uqs > > > Date: Mon Feb 15 15:10:21 2010 > > > New Revision: 203926 > > > URL: http://svn.free

Re: svn commit: r203990 - head/lib/libc/sys

2010-02-17 Thread Bruce Evans
On Wed, 17 Feb 2010, Garrett Cooper wrote: On Wed, Feb 17, 2010 at 11:13 AM, Bruce Evans wrote: On Thu, 18 Feb 2010, Bruce Evans wrote: ... Related bug: unlink(1) bogusly prints a messages that looks like strerror(EISDIR). ?It doesn't even try unlink(2) on directories, but prints this mes

Re: svn commit: r203990 - head/lib/libc/sys

2010-02-17 Thread Bruce Evans
On Wed, 17 Feb 2010, Poul-Henning Kamp wrote: In message <20100218044931.s95...@delplex.bde.org>, Bruce Evans writes: On Wed, 17 Feb 2010, Poul-Henning Kamp wrote: Log: Mention EISDIR as a possible errno. It's not a possible error. critter phk> cat > a.c #include #include int main(int

Re: svn commit: r203990 - head/lib/libc/sys

2010-02-17 Thread Garrett Cooper
On Wed, Feb 17, 2010 at 1:11 AM, Poul-Henning Kamp wrote: > Author: phk > Date: Wed Feb 17 09:11:21 2010 > New Revision: 203990 > URL: http://svn.freebsd.org/changeset/base/203990 > > Log: >  Mention EISDIR as a possible errno. > > Modified: >  head/lib/libc/sys/unlink.2 > > Modified: head/lib/lib

Re: svn commit: r203990 - head/lib/libc/sys

2010-02-17 Thread Garrett Cooper
On Wed, Feb 17, 2010 at 11:13 AM, Bruce Evans wrote: > On Thu, 18 Feb 2010, Bruce Evans wrote: > >> On Wed, 17 Feb 2010, Poul-Henning Kamp wrote: >> >>> Log: >>>  Mention EISDIR as a possible errno. >> >> It's not a possible error. >> >>> ... > > Related bug: unlink(1) bogusly prints a messages th

Re: svn commit: r203990 - head/lib/libc/sys

2010-02-17 Thread Bruce Evans
On Thu, 18 Feb 2010, Bruce Evans wrote: On Wed, 17 Feb 2010, Poul-Henning Kamp wrote: Log: Mention EISDIR as a possible errno. It's not a possible error. ... Related bug: unlink(1) bogusly prints a messages that looks like strerror(EISDIR). It doesn't even try unlink(2) on directories,

Re: svn commit: r203990 - head/lib/libc/sys

2010-02-17 Thread Poul-Henning Kamp
In message <20100218044931.s95...@delplex.bde.org>, Bruce Evans writes: >On Wed, 17 Feb 2010, Poul-Henning Kamp wrote: > >> Log: >> Mention EISDIR as a possible errno. > >It's not a possible error. critter phk> cat > a.c #include #include int main(int argc, char **argv) { if (unlink("/

Re: svn commit: r203926 - in head/games/fortune: fortune strfile unstr

2010-02-17 Thread Ulrich Spörlein
On Wed, 17.02.2010 at 11:43:57 -0500, John Baldwin wrote: > On Monday 15 February 2010 10:10:22 am Ulrich Spoerlein wrote: > > Author: uqs > > Date: Mon Feb 15 15:10:21 2010 > > New Revision: 203926 > > URL: http://svn.freebsd.org/changeset/base/203926 > > > > Log: > > fortune(6) switch to 3-cla

Re: svn commit: r203990 - head/lib/libc/sys

2010-02-17 Thread Bruce Evans
On Wed, 17 Feb 2010, Poul-Henning Kamp wrote: Log: Mention EISDIR as a possible errno. It's not a possible error. Modified: head/lib/libc/sys/unlink.2 Modified: head/lib/libc/sys/unlink.2 == --- head/lib/libc/sys/

Re: svn commit: r203758 - in head/sys: amd64/conf arm/conf i386/conf ia64/conf mips/conf pc98/conf powerpc/conf sparc64/conf sun4v/conf

2010-02-17 Thread John Baldwin
On Tuesday 16 February 2010 8:30:32 am Bernd Walter wrote: > On Mon, Feb 15, 2010 at 05:14:25PM -0700, M. Warner Losh wrote: > > In message: <4b79ce84.3060...@freebsd.org> > > Andriy Gapon writes: > > : At least in the i386/amd64 kernel config files typically we have: > > : optionsOPTI

Re: svn commit: r203926 - in head/games/fortune: fortune strfile unstr

2010-02-17 Thread John Baldwin
On Monday 15 February 2010 10:10:22 am Ulrich Spoerlein wrote: > Author: uqs > Date: Mon Feb 15 15:10:21 2010 > New Revision: 203926 > URL: http://svn.freebsd.org/changeset/base/203926 > > Log: > fortune(6) switch to 3-clause BSDL; style(9) > > This reduces the diff to other *BSD and makes

svn commit: r204009 - head/sys/dev/mge

2010-02-17 Thread Rafal Jaworowski
Author: raj Date: Wed Feb 17 17:03:04 2010 New Revision: 204009 URL: http://svn.freebsd.org/changeset/base/204009 Log: Assorted fixes for mge(4). - Use proper map for the busdma sync on mge descriptor. - Remove unnecesary busdma sync. - Eliminate redundant locking in mge_reinit_rx() (ju

svn commit: r204008 - head/lib/libjail

2010-02-17 Thread Ruslan Ermilov
Author: ru Date: Wed Feb 17 16:45:03 2010 New Revision: 204008 URL: http://svn.freebsd.org/changeset/base/204008 Log: realloc() with a proper amount of memory. MFC after:3 days Modified: head/lib/libjail/jail.c Modified: head/lib/libjail/jail.c ==

svn commit: r204003 - head/sys/netinet/ipfw

2010-02-17 Thread Luigi Rizzo
Author: luigi Date: Wed Feb 17 13:06:06 2010 New Revision: 204003 URL: http://svn.freebsd.org/changeset/base/204003 Log: remove recursive lock/unlock calls, we do them already before entering the switch. Reported by: Marta Carbone Modified: head/sys/netinet/ipfw/ip_fw_sockopt.c Modifi

svn commit: r203990 - head/lib/libc/sys

2010-02-17 Thread Poul-Henning Kamp
Author: phk Date: Wed Feb 17 09:11:21 2010 New Revision: 203990 URL: http://svn.freebsd.org/changeset/base/203990 Log: Mention EISDIR as a possible errno. Modified: head/lib/libc/sys/unlink.2 Modified: head/lib/libc/sys/unlink.2 ===