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

2013-02-13 Thread Hans Petter Selasky
Author: hselasky Date: Wed Feb 13 08:20:29 2013 New Revision: 246752 URL: http://svnweb.freebsd.org/changeset/base/246752 Log: Add specific supported revision of D-Link DWA-140 rev B1, B2. Submitted by: PseudoCylon MFC after:1 week Modified: head/share/man/man4/run.4 Modified:

svn commit: r246753 - in head/sys/dev/usb: . serial

2013-02-13 Thread Hans Petter Selasky
Author: hselasky Date: Wed Feb 13 08:28:27 2013 New Revision: 246753 URL: http://svnweb.freebsd.org/changeset/base/246753 Log: Add new USB ID to FTDI driver. MFC after:1 week PR: kern/175893 Submitted by: Tomek Modified: head/sys/dev/usb/serial/uftdi.c

Re: svn commit: r246706 - head/lib/libc/arm/aeabi

2013-02-13 Thread Andrew Turner
On Tue, 12 Feb 2013 08:32:23 -0600 Nathan Whitehorn nwhiteh...@freebsd.org wrote: A related question to these commits: are EABI binaries incompatible with systems built for OABI? And vice versa? If so, should we mint a new MACHINE_ARCH for ARM EABI (or OABI, I guess)? The usual implication of

svn commit: r246757 - stable/9/sys/kern

2013-02-13 Thread Sergey Kandaurov
Author: pluknet Date: Wed Feb 13 10:16:58 2013 New Revision: 246757 URL: http://svnweb.freebsd.org/changeset/base/246757 Log: MFC r246412: Prezero the acl structure which is to be copied to usermode, to avoid leakage of the previous content of padding and unitialized fields. Modified:

svn commit: r246758 - stable/8/sys/kern

2013-02-13 Thread Sergey Kandaurov
Author: pluknet Date: Wed Feb 13 10:18:26 2013 New Revision: 246758 URL: http://svnweb.freebsd.org/changeset/base/246758 Log: MFC r246412: Prezero the acl structure which is to be copied to usermode, to avoid leakage of the previous content of padding and unitialized fields. Modified:

svn commit: r246759 - in head/sys: dev/usb dev/usb/controller sys

2013-02-13 Thread Hans Petter Selasky
Author: hselasky Date: Wed Feb 13 12:35:17 2013 New Revision: 246759 URL: http://svnweb.freebsd.org/changeset/base/246759 Log: Resolve a LOR after r246616. Protect control requests using the USB device enumeration lock. Make sure all callers of usbd_enum_lock() check the return value.

Re: svn commit: r246706 - head/lib/libc/arm/aeabi

2013-02-13 Thread Nathan Whitehorn
On 02/13/13 03:25, Andrew Turner wrote: On Tue, 12 Feb 2013 08:32:23 -0600 Nathan Whitehorn nwhiteh...@freebsd.org wrote: A related question to these commits: are EABI binaries incompatible with systems built for OABI? And vice versa? If so, should we mint a new MACHINE_ARCH for ARM EABI

svn commit: r246760 - stable/9/sys/x86/x86

2013-02-13 Thread Konstantin Belousov
Author: kib Date: Wed Feb 13 13:55:54 2013 New Revision: 246760 URL: http://svnweb.freebsd.org/changeset/base/246760 Log: MFC r246116: Reduce default shift used to calculate the max frequency for the TSC timecounter to 1, and correspondingly increase the precision of the gettimeofday(2)

Re: svn commit: r246706 - head/lib/libc/arm/aeabi

2013-02-13 Thread Konstantin Belousov
On Wed, Feb 13, 2013 at 10:25:46PM +1300, Andrew Turner wrote: On Tue, 12 Feb 2013 08:32:23 -0600 Nathan Whitehorn nwhiteh...@freebsd.org wrote: A related question to these commits: are EABI binaries incompatible with systems built for OABI? And vice versa? If so, should we mint a new

svn commit: r246763 - in head: lib/libc/sys sys/kern

2013-02-13 Thread Ian Lepore
Author: ian Date: Wed Feb 13 15:09:16 2013 New Revision: 246763 URL: http://svnweb.freebsd.org/changeset/base/246763 Log: Make the F_READAHEAD option to fcntl(2) work as documented: a value of zero now disables read-ahead. It used to effectively restore the system default readahead

svn commit: r246764 - head/sys/conf

2013-02-13 Thread Ian Lepore
Author: ian Date: Wed Feb 13 15:13:47 2013 New Revision: 246764 URL: http://svnweb.freebsd.org/changeset/base/246764 Log: Add a dependency so that when compiling in a static dtb, the kernel gets re-linked after changing the .dts source. Reviewed by: cognet, arm@ Modified:

svn commit: r246765 - head/sys/dev/usb/wlan

2013-02-13 Thread Hans Petter Selasky
Author: hselasky Date: Wed Feb 13 15:43:15 2013 New Revision: 246765 URL: http://svnweb.freebsd.org/changeset/base/246765 Log: Remove unused variable. MFC after:1 week Modified: head/sys/dev/usb/wlan/if_upgt.c head/sys/dev/usb/wlan/if_upgtvar.h Modified:

svn commit: r246766 - in head: include lib/libc/string

2013-02-13 Thread Niclas Zeising
Author: zeising (doc,ports committer) Date: Wed Feb 13 15:46:33 2013 New Revision: 246766 URL: http://svnweb.freebsd.org/changeset/base/246766 Log: Add strchrnul(), a GNU function similar to strchr(), except that it returns a pointer to the end of the string, rather than NULL, if the

Re: svn commit: r246614 - head/sys/dev/usb/wlan

2013-02-13 Thread John Baldwin
On Tuesday, February 12, 2013 2:43:32 am Hans Petter Selasky wrote: On Monday 11 February 2013 17:33:02 John Baldwin wrote: On Sunday, February 10, 2013 5:36:17 am Hans Petter Selasky wrote: Author: hselasky Date: Sun Feb 10 10:36:16 2013 New Revision: 246614 URL:

Re: svn commit: r246614 - head/sys/dev/usb/wlan

2013-02-13 Thread Hans Petter Selasky
Hi, On Wednesday 13 February 2013 16:53:02 John Baldwin wrote: You shouldn't call routines that can drain like if_detach() or destroy_dev() or the like while holding any mutexes period. I think you need a 0) step which is detach external consumers including cdev's (destroy_dev()) and

Re: svn commit: r246763 - in head: lib/libc/sys sys/kern

2013-02-13 Thread Benjamin Kaduk
On Wed, Feb 13, 2013 at 10:09 AM, Ian Lepore i...@freebsd.org wrote: Author: ian Date: Wed Feb 13 15:09:16 2013 New Revision: 246763 URL: http://svnweb.freebsd.org/changeset/base/246763 Modified: head/lib/libc/sys/fcntl.2

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

2013-02-13 Thread Xin LI
Author: delphij Date: Wed Feb 13 17:30:54 2013 New Revision: 246768 URL: http://svnweb.freebsd.org/changeset/base/246768 Log: Restore De Bruijn algorithm for sparc64 where the compiler rely on a library function for __builtin_c?z. Tested by:Michael Moll kvedulv kvedulv de Modified:

Re: svn commit: r246763 - in head: lib/libc/sys sys/kern

2013-02-13 Thread Ian Lepore
On Wed, 2013-02-13 at 11:24 -0500, Benjamin Kaduk wrote: On Wed, Feb 13, 2013 at 10:09 AM, Ian Lepore i...@freebsd.org wrote: Author: ian Date: Wed Feb 13 15:09:16 2013 New Revision: 246763 URL: http://svnweb.freebsd.org/changeset/base/246763 Modified: head/lib/libc/sys/fcntl.2

Re: svn commit: r246706 - head/lib/libc/arm/aeabi

2013-02-13 Thread Andrew Turner
On Wed, 13 Feb 2013 16:00:06 +0200 Konstantin Belousov kostik...@gmail.com wrote: On Wed, Feb 13, 2013 at 10:25:46PM +1300, Andrew Turner wrote: On Tue, 12 Feb 2013 08:32:23 -0600 Nathan Whitehorn nwhiteh...@freebsd.org wrote: A related question to these commits: are EABI binaries

Re: svn commit: r246766 - in head: include lib/libc/string

2013-02-13 Thread Konstantin Belousov
On Wed, Feb 13, 2013 at 03:46:33PM +, Niclas Zeising wrote: Author: zeising (doc,ports committer) Date: Wed Feb 13 15:46:33 2013 New Revision: 246766 URL: http://svnweb.freebsd.org/changeset/base/246766 Log: Add strchrnul(), a GNU function similar to strchr(), except that it returns

Re: svn commit: r246614 - head/sys/dev/usb/wlan

2013-02-13 Thread John Baldwin
On Wednesday, February 13, 2013 11:04:58 am Hans Petter Selasky wrote: Hi, On Wednesday 13 February 2013 16:53:02 John Baldwin wrote: You shouldn't call routines that can drain like if_detach() or destroy_dev() or the like while holding any mutexes period. I think you need a 0) step

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

2013-02-13 Thread Pawel Jakub Dawidek
On Mon, Feb 11, 2013 at 01:59:57PM +, Martin Matuska wrote: Author: mm Date: Mon Feb 11 13:59:57 2013 New Revision: 246675 URL: http://svnweb.freebsd.org/changeset/base/246675 Log: MFV r246394: Add tunable to allow block allocation on degraded vdevs. Illumos ZFS issues:

svn commit: r246769 - in vendor-crypto/openssl/dist: . apps crypto crypto/aes/asm crypto/asn1 crypto/bio crypto/bn crypto/bn/asm crypto/camellia/asm crypto/cms crypto/conf crypto/des crypto/ec cryp...

2013-02-13 Thread Jung-uk Kim
Author: jkim Date: Wed Feb 13 22:15:56 2013 New Revision: 246769 URL: http://svnweb.freebsd.org/changeset/base/246769 Log: Import OpenSSL 1.0.1e. Approved by: secteam (delphij, simon), benl (silence) Added: vendor-crypto/openssl/dist/crypto/evp/evp_cnf.c (contents, props changed)

svn commit: r246770 - vendor-crypto/openssl/1.0.1e

2013-02-13 Thread Jung-uk Kim
Author: jkim Date: Wed Feb 13 22:17:05 2013 New Revision: 246770 URL: http://svnweb.freebsd.org/changeset/base/246770 Log: Tag OpenSSL 1.0.1e. Added: vendor-crypto/openssl/1.0.1e/ - copied from r246769, vendor-crypto/openssl/dist/ ___

svn commit: r246771 - head/crypto/openssl/doc/apps

2013-02-13 Thread Jung-uk Kim
Author: jkim Date: Wed Feb 13 22:38:20 2013 New Revision: 246771 URL: http://svnweb.freebsd.org/changeset/base/246771 Log: Change the the to the. It is a continuation of r226436 and missed in r237658. Approved by: benl (maintainer, implicit) Modified:

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

2013-02-13 Thread Martin Matuska
Author: mm Date: Wed Feb 13 23:11:25 2013 New Revision: 246773 URL: http://svnweb.freebsd.org/changeset/base/246773 Log: Change vfs.zfs.write_to_degraded from CTLFLAG_RW to CTLFLAG_RWTUN Suggested by: pjd Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c

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

2013-02-13 Thread Martin Matuska
On 13.2.2013 23:08, Pawel Jakub Dawidek wrote: On Mon, Feb 11, 2013 at 01:59:57PM +, Martin Matuska wrote: Author: mm Date: Mon Feb 11 13:59:57 2013 New Revision: 246675 URL: http://svnweb.freebsd.org/changeset/base/246675 Log: MFV r246394: Add tunable to allow block allocation on

svn commit: r246774 - head/sys/amd64/vmm

2013-02-13 Thread Neel Natu
Author: neel Date: Wed Feb 13 23:22:17 2013 New Revision: 246774 URL: http://svnweb.freebsd.org/changeset/base/246774 Log: Requests for invalid CPUID leaves should map to the highest known leaf instead. Reviewed by: grehan Obtained from:NetApp Modified:

svn commit: r246775 - in stable/9: lib/libc/amd64/sys lib/libc/arm/sys lib/libc/i386/sys lib/libc/ia64/sys lib/libc/mips/sys lib/libc/powerpc lib/libc/powerpc/sys lib/libc/powerpc64 lib/libc/powerp...

2013-02-13 Thread Konstantin Belousov
Author: kib Date: Wed Feb 13 23:25:11 2013 New Revision: 246775 URL: http://svnweb.freebsd.org/changeset/base/246775 Log: MFC r246117: Rework the __vdso_* symbols attributes to only make the symbols weak, but use normal references instead of weak. This makes the statically linked binaries

svn commit: r246778 - head/usr.sbin/nfsd

2013-02-13 Thread Xin LI
Author: delphij Date: Thu Feb 14 01:01:53 2013 New Revision: 246778 URL: http://svnweb.freebsd.org/changeset/base/246778 Log: Use static for all functions that do not need to be exported. MFC after:2 weeks Modified: head/usr.sbin/nfsd/nfsd.c Modified: head/usr.sbin/nfsd/nfsd.c

svn commit: r246780 - head/usr.sbin/nfsd

2013-02-13 Thread Xin LI
Author: delphij Date: Thu Feb 14 01:25:14 2013 New Revision: 246780 URL: http://svnweb.freebsd.org/changeset/base/246780 Log: Abstract out setting of nfsdcnt and consistently use MAXNFSDCNT when the proposed value is too high and DEFNFSDCNT when proposed value is too low. MFC after:2

svn commit: r246781 - head/usr.sbin/nfsd

2013-02-13 Thread Xin LI
Author: delphij Date: Thu Feb 14 02:00:41 2013 New Revision: 246781 URL: http://svnweb.freebsd.org/changeset/base/246781 Log: Simplify r243637 and make sure that nfsdargs.{min,max}threads are always set to meaningful value: - When nfsdcnt is set, it dictates all values; - Otherwise,