svn commit: r212491 - head/sys/dev/acpica

2010-09-12 Thread Alexander Motin
Author: mav Date: Sun Sep 12 11:11:53 2010 New Revision: 212491 URL: http://svn.freebsd.org/changeset/base/212491 Log: Instead of storing last event timestamp, store the next event timestamp. It corrects handling of the first event offset in emulated periodic mode. Modified:

svn commit: r212492 - in head/lib/libc: db/man sys

2010-09-12 Thread Glen Barber
Author: gjb (doc committer) Date: Sun Sep 12 14:04:05 2010 New Revision: 212492 URL: http://svn.freebsd.org/changeset/base/212492 Log: Bump dates in dbopen(3) and cpuset_getaffinity(2) from r212441 and r212438, repectively. Approved by: keramida (mentor) MFC after:1 week

svn commit: r212493 - head/share/man/man9

2010-09-12 Thread Glen Barber
Author: gjb (doc committer) Date: Sun Sep 12 14:04:54 2010 New Revision: 212493 URL: http://svn.freebsd.org/changeset/base/212493 Log: Bump date from r212440. Approved by: keramida (mentor) MFC after:1 week Modified: head/share/man/man9/devclass_get_maxunit.9 Modified:

Re: svn commit: r212493 - head/share/man/man9

2010-09-12 Thread Glen Barber
On 9/12/10 10:04 AM, Glen Barber wrote: Author: gjb (doc committer) [snip] -.Dd April 3, 2005 +.Dd September 10, 2005 Bah! Fixing this now... :( -- Glen Barber FreeBSD Documentation Project ___ svn-src-head@freebsd.org mailing list

svn commit: r212495 - head/cddl/contrib/opensolaris/lib/libdtrace/common

2010-09-12 Thread Rui Paulo
Author: rpaulo Date: Sun Sep 12 15:59:14 2010 New Revision: 212495 URL: http://svn.freebsd.org/changeset/base/212495 Log: Give a chance to the target binary to run the ctors by waiting until it has reached main(). This allows plockstat to work. Sponsored by: The FreeBSD Foundation

Re: svn commit: r212439 - head/sys/fs/nfs

2010-09-12 Thread Kostik Belousov
On Sat, Sep 11, 2010 at 08:41:22PM -0400, Rick Macklem wrote: Then, fid_reserved is no more reserved ? Should we rename it ? Comment for fid_reserved about longword alignment is wrong. Well, it's actually more broken than that. fid_len - Most file systems set it to the size of their

svn commit: r212496 - head/sys/modules/crypto

2010-09-12 Thread Ivan Voras
Author: ivoras Date: Sun Sep 12 16:28:26 2010 New Revision: 212496 URL: http://svn.freebsd.org/changeset/base/212496 Log: List low-level Blowfish ECB module in the SRCS. It looks like it was dropped by accident (and it would be inconvenient to implement it otherwise because it uses internal

svn commit: r212497 - in head/libexec/rtld-elf: . powerpc64

2010-09-12 Thread Nathan Whitehorn
Author: nwhitehorn Date: Sun Sep 12 17:04:51 2010 New Revision: 212497 URL: http://svn.freebsd.org/changeset/base/212497 Log: Check for undefined weak symbols during PLT binding on powerpc64, and do not attempt to copy NULL function descriptors. This fixes LD_BIND_NOW on powerpc64 after

svn commit: r212498 - head/sbin/newfs

2010-09-12 Thread Glen Barber
Author: gjb (doc committer) Date: Sun Sep 12 17:50:07 2010 New Revision: 212498 URL: http://svn.freebsd.org/changeset/base/212498 Log: Rewording and typo fixes in newfs(8). PR: 150490 Submitted by: Eitan Adler foreignuser at eitanadler com Additional fixes by: Warren Block

svn commit: r212499 - head/sys/sys

2010-09-12 Thread Konstantin Belousov
Author: kib Date: Sun Sep 12 17:53:31 2010 New Revision: 212499 URL: http://svn.freebsd.org/changeset/base/212499 Log: Fix typo. MFC after:3 days Modified: head/sys/sys/elf_common.h Modified: head/sys/sys/elf_common.h

svn commit: r212500 - head/share/man/man9

2010-09-12 Thread Glen Barber
Author: gjb (doc committer) Date: Sun Sep 12 17:53:36 2010 New Revision: 212500 URL: http://svn.freebsd.org/changeset/base/212500 Log: I believe the majority of Gregorian calendars would agree the current year is 2010, not 2005. Approved by: keramida (mentor) Pointy hat to:gjb

svn commit: r212501 - head/sys/sys

2010-09-12 Thread Konstantin Belousov
Author: kib Date: Sun Sep 12 17:55:56 2010 New Revision: 212501 URL: http://svn.freebsd.org/changeset/base/212501 Log: Add DF_1_LOADFLTR. MFC after:3 days Modified: head/sys/sys/elf_common.h Modified: head/sys/sys/elf_common.h

svn commit: r212502 - head/sys/netinet

2010-09-12 Thread Qing Li
Author: qingli Date: Sun Sep 12 18:04:47 2010 New Revision: 212502 URL: http://svn.freebsd.org/changeset/base/212502 Log: Adding an address on an interface also requires the loopback route to that address be installed. PR: kern/150481 Submitted by: Ingo Flaschberger if at

svn commit: r212505 - head/usr.sbin/freebsd-update

2010-09-12 Thread Jaakko Heinonen
Author: jh Date: Sun Sep 12 18:53:44 2010 New Revision: 212505 URL: http://svn.freebsd.org/changeset/base/212505 Log: In backup_kernel(), support backing up subdirectories and handle files with spaces correctly. Approved by: cperciva MFC after:1 month Modified:

svn commit: r212506 - head/sys/nfsclient

2010-09-12 Thread Konstantin Belousov
Author: kib Date: Sun Sep 12 19:06:08 2010 New Revision: 212506 URL: http://svn.freebsd.org/changeset/base/212506 Log: Do not fork nfsiod directly from the vop methods. This causes LORs between vnode lock and several locks needed during fork, like fd lock. Instead, schedule the task to

Re: svn commit: r212506 - head/sys/nfsclient

2010-09-12 Thread Robert Watson
On Sun, 12 Sep 2010, Konstantin Belousov wrote: Do not fork nfsiod directly from the vop methods. This causes LORs between vnode lock and several locks needed during fork, like fd lock. Instead, schedule the task to be executed in the taskqueue context. We still waiting for the fork to

svn commit: r212507 - head/sys/arm/arm

2010-09-12 Thread Olivier Houchard
Author: cognet Date: Sun Sep 12 20:46:32 2010 New Revision: 212507 URL: http://svn.freebsd.org/changeset/base/212507 Log: In pmap_remove_all(), do not decrease pm_stats.wired_count if the mapping was wired, as it's been done later in pmap_nuke_pv(). Submitted by: Mark Tinguely Modified:

Re: svn commit: r212506 - head/sys/nfsclient

2010-09-12 Thread Kostik Belousov
On Sun, Sep 12, 2010 at 09:41:46PM +0100, Robert Watson wrote: On Sun, 12 Sep 2010, Konstantin Belousov wrote: Do not fork nfsiod directly from the vop methods. This causes LORs between vnode lock and several locks needed during fork, like fd lock. Instead, schedule the task to be

Re: svn commit: r212506 - head/sys/nfsclient

2010-09-12 Thread Robert Watson
On Sun, 12 Sep 2010, Kostik Belousov wrote: On Sun, Sep 12, 2010 at 09:41:46PM +0100, Robert Watson wrote: On Sun, 12 Sep 2010, Konstantin Belousov wrote: Do not fork nfsiod directly from the vop methods. This causes LORs between vnode lock and several locks needed during fork, like fd

Re: svn commit: r212506 - head/sys/nfsclient

2010-09-12 Thread Kostik Belousov
On Sun, Sep 12, 2010 at 10:02:24PM +0100, Robert Watson wrote: On Sun, 12 Sep 2010, Kostik Belousov wrote: On Sun, Sep 12, 2010 at 09:41:46PM +0100, Robert Watson wrote: On Sun, 12 Sep 2010, Konstantin Belousov wrote: Do not fork nfsiod directly from the vop methods. This causes LORs

svn commit: r212508 - head/bin/sh

2010-09-12 Thread Jilles Tjoelker
Author: jilles Date: Sun Sep 12 22:00:31 2010 New Revision: 212508 URL: http://svn.freebsd.org/changeset/base/212508 Log: sh: Add __dead2 to two functions that do not return. Apart from helping static analyzers, this also appears to reduce the size of the binary slightly. Modified:

svn commit: r212511 - head/usr.sbin/crunch/crunchide

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 00:57:48 2010 New Revision: 212511 URL: http://svn.freebsd.org/changeset/base/212511 Log: Use TARGET_CPUARCH instead of TARGET_ARCH here. Define TARGET_CPUARCH based on TARGET_ARCH. Use TARGET_ARCH still for a powerpc64 test. Futureproof for coming

svn commit: r212512 - head/usr.bin/xlint

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 01:00:48 2010 New Revision: 212512 URL: http://svn.freebsd.org/changeset/base/212512 Log: Move to using TARGET_CPUARCH instead of TARGET_ARCH. Modified: head/usr.bin/xlint/Makefile.inc Modified: head/usr.bin/xlint/Makefile.inc

svn commit: r212513 - in head/usr.bin/xlint/arch: powerpc powerpc64

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 01:20:53 2010 New Revision: 212513 URL: http://svn.freebsd.org/changeset/base/212513 Log: merge powerpc and powerpc64 now that we use TARGET_CPUARCH Deleted: head/usr.bin/xlint/arch/powerpc64/ Modified: head/usr.bin/xlint/arch/powerpc/targparam.h Modified:

svn commit: r212515 - head/bin

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 01:29:51 2010 New Revision: 212515 URL: http://svn.freebsd.org/changeset/base/212515 Log: Merge from tbemd: Add directory names directly and sort at the end. Include bsd.arch.inc.mk so we can, in the future, more easily make arch dependent changes in /bin

svn commit: r212516 - in head/lib/libthr: . arch/amd64 arch/arm arch/i386 arch/ia64 arch/mips arch/powerpc arch/sparc64 support

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 01:43:10 2010 New Revision: 212516 URL: http://svn.freebsd.org/changeset/base/212516 Log: Merge from tbemd, with a small amount of rework: For all libthr contexts, use ${MACHINE_CPUARCH} for all libc contexts, use ${MACHINE_ARCH} if it exists, otherwise use

svn commit: r212517 - head/lib/libz

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 01:44:07 2010 New Revision: 212517 URL: http://svn.freebsd.org/changeset/base/212517 Log: Include FreeBSD svn tag Modified: head/lib/libz/minigzip.c Modified: head/lib/libz/minigzip.c ==

svn commit: r212518 - head/lib/msun

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 01:44:56 2010 New Revision: 212518 URL: http://svn.freebsd.org/changeset/base/212518 Log: MFtbemd: Move to using MACHINE_CPUARCH, now that it is safe. Modified: head/lib/msun/Makefile Modified: head/lib/msun/Makefile

svn commit: r212521 - head/sys/conf

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 02:02:20 2010 New Revision: 212521 URL: http://svn.freebsd.org/changeset/base/212521 Log: Use :T:Micc here like everywhere else we test icc Modified: head/sys/conf/kern.pre.mk Modified: head/sys/conf/kern.pre.mk

svn commit: r212523 - in head/sys/modules: scc sound/sound

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 02:05:42 2010 New Revision: 212523 URL: http://svn.freebsd.org/changeset/base/212523 Log: MFtbemd: use MACHINE_CPUARCH Modified: head/sys/modules/scc/Makefile head/sys/modules/sound/sound/Makefile Modified: head/sys/modules/scc/Makefile

svn commit: r212525 - head/usr.sbin

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 02:21:07 2010 New Revision: 212525 URL: http://svn.freebsd.org/changeset/base/212525 Log: Merge from tbemd: use Makefile.arch to control building. Reviewed by: arch@ (many times, no objection) Added: head/usr.sbin/Makefile.amd64 (contents, props changed)

svn commit: r212526 - head/usr.bin

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 02:23:03 2010 New Revision: 212526 URL: http://svn.freebsd.org/changeset/base/212526 Log: Merge from tbemd: Move to using Makefile.arch to control what's build. Reviewed by: (arch@, no objection) Added: head/usr.bin/Makefile.amd64 (contents, props

Re: svn commit: r212525 - head/usr.sbin

2010-09-12 Thread Andrew Thompson
On 13 September 2010 14:21, Warner Losh i...@freebsd.org wrote: Author: imp Date: Mon Sep 13 02:21:07 2010 New Revision: 212525 URL: http://svn.freebsd.org/changeset/base/212525 Log:  Merge from tbemd: use Makefile.arch to control building.  Reviewed by:  arch@ (many times, no objection)

svn commit: r212528 - head/usr.sbin

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 02:26:36 2010 New Revision: 212528 URL: http://svn.freebsd.org/changeset/base/212528 Log: Ooops! Shouldn't have committed this Deleted: head/usr.sbin/Makefile.orig ___ svn-src-head@freebsd.org mailing list

Re: svn commit: r212525 - head/usr.sbin

2010-09-12 Thread M. Warner Losh
In message: aanlktik97pzva-6um=em2a06jdbs_pub-usqgkfeg...@mail.gmail.com Andrew Thompson thom...@freebsd.org writes: : On 13 September 2010 14:21, Warner Losh i...@freebsd.org wrote: : Author: imp : Date: Mon Sep 13 02:21:07 2010 : New Revision: 212525 : URL:

svn commit: r212531 - head/lib/msun

2010-09-12 Thread Warner Losh
Author: imp Date: Mon Sep 13 04:23:23 2010 New Revision: 212531 URL: http://svn.freebsd.org/changeset/base/212531 Log: This is exactly the same as the .else, so remove it. Modified: head/lib/msun/Makefile Modified: head/lib/msun/Makefile

svn commit: r212532 - in head/sys: conf mips/include mips/mips

2010-09-12 Thread Jayachandran C.
Author: jchandra Date: Mon Sep 13 05:03:37 2010 New Revision: 212532 URL: http://svn.freebsd.org/changeset/base/212532 Log: The functions in sys/mips/mips/psraccess.S can be implemented with mips_rd_status/mips_wr_status. Implement them in mips/include/cpufunc.h, and remove psraccess.S.