Re: svn commit: r216101 - head/sys/netinet

2010-12-02 Thread Bruce Evans
On Thu, 2 Dec 2010, Lawrence Stewart wrote: On 12/02/10 14:45, Bruce Evans wrote: On Thu, 2 Dec 2010, Lawrence Stewart wrote: Log: Pass NULL instead of 0 for the th pointer value. NULL != 0 on all platforms. ... The last case is essentially what applies in function calls. Now the

Re: svn commit: r209110 - in head/lib/msun: . src

2010-12-02 Thread Kostik Belousov
On Wed, Dec 01, 2010 at 11:57:28PM -0500, David Schultz wrote: On Tue, Jun 15, 2010, David Schultz wrote: On Tue, Jun 15, 2010, Kostik Belousov wrote: On Sat, Jun 12, 2010 at 05:32:05PM +, David Schultz wrote: Author: das Date: Sat Jun 12 17:32:05 2010 New Revision: 209110

Re: svn commit: r216113 - head/gnu/usr.bin/cc

2010-12-02 Thread Bjoern A. Zeeb
to a fix I had started to do for the cross-gcc port: http://people.freebsd.org/~bz/20101202-01-ports-devel-cross-gcc-za.diff (the port still dies later on, thus not submitted yet). but given that it was fine before, yu are simply removing the extra file from compilation in that case now as I

svn commit: r216119 - head

2010-12-02 Thread Ulrich Spoerlein
Author: uqs Date: Thu Dec 2 10:46:05 2010 New Revision: 216119 URL: http://svn.freebsd.org/changeset/base/216119 Log: Remove more duplicates. Just so that I can lookup the command for the next time: for t in `make -V TARGETS universe`; do __MAKE_CONF=/dev/null make -f

svn commit: r216120 - head/sys/fs/procfs

2010-12-02 Thread Konstantin Belousov
Author: kib Date: Thu Dec 2 12:44:51 2010 New Revision: 216120 URL: http://svn.freebsd.org/changeset/base/216120 Log: For non-stopped threads, td_frame pointer is undefined. As a consequence, fill_regs() and fill_fpregs() access random data, usually on the thread kernel stack. Most often

svn commit: r216121 - head/lib/libc/stdio

2010-12-02 Thread Gavin Atkinson
Author: gavin Date: Thu Dec 2 13:40:21 2010 New Revision: 216121 URL: http://svn.freebsd.org/changeset/base/216121 Log: Remove two unused variables, left over from the refactoring in r180104. PR: bin/152551 Submitted by: Henning Petersen henning.petersen t-online.de MFC

Re: svn commit: r216119 - head

2010-12-02 Thread Alexander Leidinger
Quoting Ulrich Spoerlein u...@freebsd.org (from Thu, 2 Dec 2010 10:46:05 + (UTC)): Author: uqs Date: Thu Dec 2 10:46:05 2010 New Revision: 216119 URL: http://svn.freebsd.org/changeset/base/216119 Log: Remove more duplicates. Just so that I can lookup the command for the next time:

Re: svn commit: r216016 - head/sys/sparc64/include

2010-12-02 Thread Marius Strobl
On Wed, Dec 01, 2010 at 12:19:17PM -0600, Alan Cox wrote: Marius Strobl wrote: On Mon, Nov 29, 2010 at 08:23:08PM +0100, Marius Strobl wrote: On Tue, Nov 30, 2010 at 12:31:31AM +0600, Max Khon wrote: Marius, On Mon, Nov 29, 2010 at 1:45 AM, Marius Strobl

Re: svn commit: r216016 - head/sys/sparc64/include

2010-12-02 Thread Alan Cox
Marius Strobl wrote: On Wed, Dec 01, 2010 at 12:19:17PM -0600, Alan Cox wrote: Marius Strobl wrote: On Mon, Nov 29, 2010 at 08:23:08PM +0100, Marius Strobl wrote: On Tue, Nov 30, 2010 at 12:31:31AM +0600, Max Khon wrote: Marius, On Mon, Nov 29, 2010 at 1:45 AM,

svn commit: r216127 - head/gnu/usr.bin/cc

2010-12-02 Thread Nathan Whitehorn
Author: nwhitehorn Date: Thu Dec 2 17:36:47 2010 New Revision: 216127 URL: http://svn.freebsd.org/changeset/base/216127 Log: Unbreak amd64-i386 cross builds. Modified: head/gnu/usr.bin/cc/Makefile.fe Modified: head/gnu/usr.bin/cc/Makefile.fe

svn commit: r216128 - in head/sys: fs/procfs kern vm

2010-12-02 Thread Edward Tomasz Napierala
Author: trasz Date: Thu Dec 2 17:37:16 2010 New Revision: 216128 URL: http://svn.freebsd.org/changeset/base/216128 Log: Replace pointer to struct uidinfo with pointer to struct ucred in struct vm_object. This is required to make it possible to account for per-jail swap usage.

svn commit: r216130 - head/usr.bin/kdump

2010-12-02 Thread Xin LI
Author: delphij Date: Thu Dec 2 18:24:22 2010 New Revision: 216130 URL: http://svn.freebsd.org/changeset/base/216130 Log: Decode IPC_CREAT and IPC_EXCL for semget(2). PR: bin/152781 Submitted by: Anton Yuzhaninov citrin citrin ru MFC after:2 weeks Modified:

svn commit: r216131 - head/share/man/man4

2010-12-02 Thread Pyun YongHyeon
Author: yongari Date: Thu Dec 2 18:37:34 2010 New Revision: 216131 URL: http://svn.freebsd.org/changeset/base/216131 Log: Document loader tunable hw.re.prefer_iomap. Modified: head/share/man/man4/re.4 Modified: head/share/man/man4/re.4

Re: svn commit: r209110 - in head/lib/msun: . src

2010-12-02 Thread David Schultz
On Wed, Dec 01, 2010, Garrett Cooper wrote: Any thoughts on removing the isnanf and __isnanf symbols from libm?  Both symbols are already in libc for historical reasons, so the duplication isn't needed. Although we've had the duplicate isnanf symbol in libm for several releases, I

Re: svn commit: r209110 - in head/lib/msun: . src

2010-12-02 Thread David Schultz
On Thu, Dec 02, 2010, Kostik Belousov wrote: For __isnanf, libc exports __isn...@fbsd_1.0, and libm exports __isn...@fbsd_1.2. I suspect that we could export both __isn...@fbsd_1.0 and __isn...@fbsd_1.2 from libc. I like the idea of adding an __isn...@fbsd_1.2 alias to libc for the benefit of

Re: svn commit: r216091 - head/sys/dev/usb

2010-12-02 Thread Weongyo Jeong
On Wed, Dec 01, 2010 at 06:58:18PM -0500, Jung-uk Kim wrote: On Tuesday 30 November 2010 10:51 pm, Weongyo Jeong wrote: Author: weongyo Date: Wed Dec 1 03:51:06 2010 New Revision: 216091 URL: http://svn.freebsd.org/changeset/base/216091 Log: Explicitly UP and DOWN the usbus

Re: svn commit: r209110 - in head/lib/msun: . src

2010-12-02 Thread Kostik Belousov
On Thu, Dec 02, 2010 at 02:00:10PM -0500, David Schultz wrote: On Thu, Dec 02, 2010, Kostik Belousov wrote: For __isnanf, libc exports __isn...@fbsd_1.0, and libm exports __isn...@fbsd_1.2. I suspect that we could export both __isn...@fbsd_1.0 and __isn...@fbsd_1.2 from libc. I like the

svn commit: r216141 - head/sys/vm

2010-12-02 Thread Warner Losh
Author: imp Date: Fri Dec 3 04:39:48 2010 New Revision: 216141 URL: http://svn.freebsd.org/changeset/base/216141 Log: To make minidumps work properly on mips for memory that's direct mapped and entered via vm_page_setup, keep track of it like we do for amd64. # A separate commit will

svn commit: r216142 - head/share/man/man3

2010-12-02 Thread David Schultz
Author: das Date: Fri Dec 3 07:01:07 2010 New Revision: 216142 URL: http://svn.freebsd.org/changeset/base/216142 Log: Explain some of the reasons that fpsetprec() is unlikely to work as one might expect. (These functions have already been deprecated for many years.) PR:

Re: svn commit: r216122 - head/sys/powerpc/include

2010-12-02 Thread Bruce Evans
On Thu, 2 Dec 2010, Nathan Whitehorn wrote: Log: Define bswap macros for constants to allow the compiler to pre-compute byte-swapped versions of compile-time constants. This allows use of bswap() and htole*() in initializers, which is required to cross-build btxld. The constant case is MI

svn commit: r216143 - in head: share/man/man9 sys/amd64/include sys/arm/include sys/i386/include sys/ia64/include sys/mips/include sys/pc98/include sys/powerpc/include sys/sparc64/include sys/sun4v...

2010-12-02 Thread Bruce Cran
Author: brucec Date: Fri Dec 3 07:09:23 2010 New Revision: 216143 URL: http://svn.freebsd.org/changeset/base/216143 Log: Revert r216134. This checkin broke platforms where bus_space are macros: they need to be a single statement, and do { } while (0) doesn't work in this situation so

svn commit: r216145 - head/tools/tools/nanobsd

2010-12-02 Thread Warner Losh
Author: imp Date: Fri Dec 3 07:39:29 2010 New Revision: 216145 URL: http://svn.freebsd.org/changeset/base/216145 Log: o Mount the device async when we're doing the copy. o Create a sparse file instead of a fully zerod one. This trades the possibiltiy of running out of space during the