svn commit: r232959 - head/sys/fs/tmpfs

2012-03-14 Thread Gleb Kurtsou
Author: gleb Date: Wed Mar 14 08:29:21 2012 New Revision: 232959 URL: http://svn.freebsd.org/changeset/base/232959 Log: Don't enforce LK_RETRY to get existing vnode in tmpfs_alloc_vp() Doomed vnode is hardly of any use here, besides all callers handle error case. vfs_hash_get() does the

Re: svn commit: r232868 - head/sys/netinet/ipfw

2012-03-14 Thread Alexander V. Chernikov
On 12.03.2012 21:17, Marko Zec wrote: On Monday 12 March 2012 16:41:36 Alexander V. Chernikov wrote: Author: melifaro Date: Mon Mar 12 15:41:36 2012 New Revision: 232868 URL: http://svn.freebsd.org/changeset/base/232868 Log: Fix VNET build broken by r232865. Temporary remove the ability

svn commit: r232960 - head/sys/fs/tmpfs

2012-03-14 Thread Gleb Kurtsou
Author: gleb Date: Wed Mar 14 09:15:50 2012 New Revision: 232960 URL: http://svn.freebsd.org/changeset/base/232960 Log: Prevent tmpfs_rename() deadlock in a way similar to UFS Unlock vnodes and try to lock them one by one. Relookup fvp and tvp. Approved by: mdf (mentor) Modified:

svn commit: r232964 - head/sbin/mdconfig

2012-03-14 Thread Edward Tomasz Napierala
Author: trasz Date: Wed Mar 14 10:10:15 2012 New Revision: 232964 URL: http://svn.freebsd.org/changeset/base/232964 Log: Add missing static. Modified: head/sbin/mdconfig/mdconfig.c Modified: head/sbin/mdconfig/mdconfig.c

svn commit: r232967 - head/sys/dev/uart

2012-03-14 Thread Konstantin Belousov
Author: kib Date: Wed Mar 14 14:01:51 2012 New Revision: 232967 URL: http://svn.freebsd.org/changeset/base/232967 Log: Add PCI Id for the AMT SOL UART on G4x series Intel chipsets. Submitted by: admin zahost ru MFC after:3 days Modified: head/sys/dev/uart/uart_bus_pci.c Modified:

svn commit: r232971 - head/include

2012-03-14 Thread David Chisnall
Author: theraven Date: Wed Mar 14 14:39:07 2012 New Revision: 232971 URL: http://svn.freebsd.org/changeset/base/232971 Log: Expose some C11 stuff that is also C++11 stuff in C++11 mode. Approved by: dim (mentor) Modified: head/include/stdlib.h Modified: head/include/stdlib.h

svn commit: r232972 - in head/contrib/libc++: include src

2012-03-14 Thread David Chisnall
Author: theraven Date: Wed Mar 14 14:40:22 2012 New Revision: 232972 URL: http://svn.freebsd.org/changeset/base/232972 Log: Import a slightly newer libc++, with some bugs fixed that were found by running the test suite on FreeBSD. Approved by: dim (mentor) Modified:

svn commit: r232973 - head/lib/libc/string

2012-03-14 Thread Konstantin Belousov
Author: kib Date: Wed Mar 14 15:30:59 2012 New Revision: 232973 URL: http://svn.freebsd.org/changeset/base/232973 Log: Fix indentation. MFC after:3 days Modified: head/lib/libc/string/strerror.c Modified: head/lib/libc/string/strerror.c

svn commit: r232975 - head/sys/kern

2012-03-14 Thread Jaakko Heinonen
Author: jh Date: Wed Mar 14 15:52:23 2012 New Revision: 232975 URL: http://svn.freebsd.org/changeset/base/232975 Log: Add an assert for proctree_lock to proc_to_reap(). Discussed with: kib MFC after:1 week Modified: head/sys/kern/kern_exit.c Modified:

svn commit: r232978 - head/sys/dev/wtap

2012-03-14 Thread Adrian Chadd
Author: adrian Date: Wed Mar 14 16:43:22 2012 New Revision: 232978 URL: http://svn.freebsd.org/changeset/base/232978 Log: Correctly calculate the callout interval for beacon generation. Submitted by: montha...@gmail.com Modified: head/sys/dev/wtap/if_wtap.c Modified:

Re: svn commit: r232744 - in head/sys: conf i386/i386 i386/include

2012-03-14 Thread John Baldwin
On Monday, March 12, 2012 8:04:11 am TAKAHASHI Yoshihiro wrote: In article 201203091942.q29jgmj1022...@svn.freebsd.org John Baldwin j...@freebsd.org writes: Author: jhb Date: Fri Mar 9 19:42:48 2012 New Revision: 232744 URL: http://svn.freebsd.org/changeset/base/232744 Log:

svn commit: r232980 - head/sys/powerpc/aim

2012-03-14 Thread Nathan Whitehorn
Author: nwhitehorn Date: Wed Mar 14 20:19:49 2012 New Revision: 232980 URL: http://svn.freebsd.org/changeset/base/232980 Log: Use LIST_FOREACH_SAFE() instead of LIST_FOREACH() in pmap_remove(), since the point of this loop is to remove elements. This worked by accident before. MFC after:

svn commit: r232984 - head/sys/vm

2012-03-14 Thread John Baldwin
Author: jhb Date: Wed Mar 14 20:57:48 2012 New Revision: 232984 URL: http://svn.freebsd.org/changeset/base/232984 Log: Pedantic nit: use vm_pindex_t instead of long for a count of pages. Modified: head/sys/vm/vm_phys.c Modified: head/sys/vm/vm_phys.c

svn commit: r232986 - head/usr.sbin/syslogd

2012-03-14 Thread Sean Bruno
Author: sbruno Date: Wed Mar 14 21:26:06 2012 New Revision: 232986 URL: http://svn.freebsd.org/changeset/base/232986 Log: Update man page to present -T argument in synopsis MFC with r183347 MFC after:0 days Modified: head/usr.sbin/syslogd/syslogd.8 Modified:

Re: svn commit: r232938 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2012-03-14 Thread John Baldwin
On Tuesday, March 13, 2012 4:29:04 pm Adrian Chadd wrote: Author: adrian Date: Tue Mar 13 20:29:04 2012 New Revision: 232938 URL: http://svn.freebsd.org/changeset/base/232938 Log: Add dependencies onto acl_posix1e and acl_nfs4. Modified:

Re: svn commit: r232960 - head/sys/fs/tmpfs

2012-03-14 Thread Dmitry Morozovsky
On Wed, 14 Mar 2012, Gleb Kurtsou wrote: Author: gleb Date: Wed Mar 14 09:15:50 2012 New Revision: 232960 URL: http://svn.freebsd.org/changeset/base/232960 Log: Prevent tmpfs_rename() deadlock in a way similar to UFS Unlock vnodes and try to lock them one by one. Relookup fvp and

Re: svn commit: r232938 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2012-03-14 Thread Adrian Chadd
On 14 March 2012 14:24, John Baldwin j...@freebsd.org wrote: +MODULE_DEPEND(zfsctrl, acl_nfs4, 1, 1, 1); +MODULE_DEPEND(zfsctrl, acl_posix1e, 1, 1, 1); Eh, I thought ZFS only needs nfs4 and not posix1e?  I think only UFS needs both of these. I was being overly cautious. If that's the case,

svn commit: r232990 - head/sys/conf

2012-03-14 Thread Xin LI
Author: delphij Date: Wed Mar 14 22:44:56 2012 New Revision: 232990 URL: http://svn.freebsd.org/changeset/base/232990 Log: Add the missing IPOIB option. Sponsored by: iXsystems, Inc. MFC after:3 days Modified: head/sys/conf/options Modified: head/sys/conf/options

svn commit: r232991 - head/sys/dev/pci

2012-03-14 Thread Jung-uk Kim
Author: jkim Date: Wed Mar 14 23:25:46 2012 New Revision: 232991 URL: http://svn.freebsd.org/changeset/base/232991 Log: Add a PCI quirk to ignore PCI map registers from configuration space. For example, some BIOS for AMD SB600 south bridge may map HPET MMIO base address as a memory BAR for

svn commit: r232992 - head/sys/dev/hwpmc

2012-03-14 Thread Oleksandr Tymoshenko
Author: gonzo Date: Wed Mar 14 23:46:07 2012 New Revision: 232992 URL: http://svn.freebsd.org/changeset/base/232992 Log: - Remove unncessary type casts - Make kernel backtrace routine more robust by refusing to backtrace further when encountered function that is possibly modifies SP

svn commit: r232994 - in head/usr.bin: bc dc

2012-03-14 Thread Kevin Lo
Author: kevlo Date: Thu Mar 15 01:43:44 2012 New Revision: 232994 URL: http://svn.freebsd.org/changeset/base/232994 Log: - Fix an erroneous invocation of the editline. - Fix wrong scaling in the bc.library. - Let length(0.000) conform to what gnu bc does. PR: bin/159227 Submitted

svn commit: r232997 - head/sys/kern

2012-03-14 Thread Andrey V. Elsukov
Author: ae Date: Thu Mar 15 05:11:29 2012 New Revision: 232997 URL: http://svn.freebsd.org/changeset/base/232997 Log: Add debug.kld_debug loader tunable. MFC after:2 weeks Modified: head/sys/kern/kern_linker.c Modified: head/sys/kern/kern_linker.c

svn commit: r232998 - in head/sys: conf mips/mips

2012-03-14 Thread Oleksandr Tymoshenko
Author: gonzo Date: Thu Mar 15 05:29:51 2012 New Revision: 232998 URL: http://svn.freebsd.org/changeset/base/232998 Log: Fill out fake preload structure to let userland tools like pmc(3) know about kernel module base address and actual size Modified: head/sys/conf/Makefile.mips