svn commit: r270083 - head/lib/libcuse

2014-08-17 Thread Hans Petter Selasky
Author: hselasky Date: Sun Aug 17 06:28:57 2014 New Revision: 270083 URL: http://svnweb.freebsd.org/changeset/base/270083 Log: Add missing DPADD to Makefile. PR: 192733 Modified: head/lib/libcuse/Makefile Modified: head/lib/libcuse/Makefile

svn commit: r270084 - stable/10/sys/kern

2014-08-17 Thread Mateusz Guzik
Author: mjg Date: Sun Aug 17 06:52:35 2014 New Revision: 270084 URL: http://svnweb.freebsd.org/changeset/base/270084 Log: MFC r268074: Perform a lockless check in sigacts_shared. It is used only during execve (i.e. singlethreaded), so there is no fear of returning 'not shared' which

svn commit: r270085 - stable/10/sys/kern

2014-08-17 Thread Mateusz Guzik
Author: mjg Date: Sun Aug 17 06:54:49 2014 New Revision: 270085 URL: http://svnweb.freebsd.org/changeset/base/270085 Log: MFC r268087: Don't call crcopysafe or uifind unnecessarily in execve. Modified: stable/10/sys/kern/kern_exec.c Directory Properties: stable/10/ (props changed)

svn commit: r270086 - stable/10/sys/kern

2014-08-17 Thread Mateusz Guzik
Author: mjg Date: Sun Aug 17 06:56:22 2014 New Revision: 270086 URL: http://svnweb.freebsd.org/changeset/base/270086 Log: MFC r268136: Plug gcc warning after r268074 about unitialized newsigacts Modified: stable/10/sys/kern/kern_exec.c Directory Properties: stable/10/ (props

svn commit: r270087 - stable/10/sys/kern

2014-08-17 Thread Mateusz Guzik
Author: mjg Date: Sun Aug 17 06:58:14 2014 New Revision: 270087 URL: http://svnweb.freebsd.org/changeset/base/270087 Log: MFC r268365: Don't call crdup nor uifind under vnode lock. A locked vnode can get into the way of satisyfing malloc with M_WATOK. This is a fixup to r268087.

svn commit: r270088 - stable/10/sys/kern

2014-08-17 Thread Mateusz Guzik
Author: mjg Date: Sun Aug 17 07:00:47 2014 New Revision: 270088 URL: http://svnweb.freebsd.org/changeset/base/270088 Log: MFC r268505, r268507: Avoid relocking filedesc lock when closing fds during fdp destruction. Don't call bzero nor fdunused from fdfree for such cases. It would do

svn commit: r270089 - stable/10/sys/kern

2014-08-17 Thread Mateusz Guzik
Author: mjg Date: Sun Aug 17 07:05:30 2014 New Revision: 270089 URL: http://svnweb.freebsd.org/changeset/base/270089 Log: MFC r259407: proc exit: don't take PROC_LOCK while freeing rlimits Code wishing to check rlimits of some process should check whether it is exiting first, which

svn commit: r270090 - stable/10/sys/kern

2014-08-17 Thread Mateusz Guzik
Author: mjg Date: Sun Aug 17 07:06:55 2014 New Revision: 270090 URL: http://svnweb.freebsd.org/changeset/base/270090 Log: MFC r268514: Eliminate plim and vtmp local vars in exit1. No functional changes. Modified: stable/10/sys/kern/kern_exit.c Directory Properties: stable/10/

svn commit: r270091 - stable/10/sys/kern

2014-08-17 Thread Mateusz Guzik
Author: mjg Date: Sun Aug 17 07:16:03 2014 New Revision: 270091 URL: http://svnweb.freebsd.org/changeset/base/270091 Log: MFC r264114, r264310, r268570: r264114 by davidxu: Fix SIGIO delivery. Use fsetown() to handle file descriptor owner ioctl and use pgsigio() to send SIGIO.

svn commit: r270092 - in stable/10/sys: kern sys

2014-08-17 Thread Mateusz Guzik
Author: mjg Date: Sun Aug 17 07:20:37 2014 New Revision: 270092 URL: http://svnweb.freebsd.org/changeset/base/270092 Log: MFC r268634: Manage struct sigacts refcnt with atomics instead of a mutex. Modified: stable/10/sys/kern/kern_sig.c stable/10/sys/sys/signalvar.h Directory

svn commit: r270093 - stable/10/sys/kern

2014-08-17 Thread Mateusz Guzik
Author: mjg Date: Sun Aug 17 07:22:40 2014 New Revision: 270093 URL: http://svnweb.freebsd.org/changeset/base/270093 Log: MFC r268636: Plug p_pptr null test in do_execve. It is always true. Modified: stable/10/sys/kern/kern_exec.c Directory Properties: stable/10/ (props changed)

svn commit: r270094 - stable/10/sys/kern

2014-08-17 Thread Mateusz Guzik
Author: mjg Date: Sun Aug 17 07:24:23 2014 New Revision: 270094 URL: http://svnweb.freebsd.org/changeset/base/270094 Log: MFC r269020: Cosmetic changes to unp_internalize Don't throw away the result of fget_unlocked. Move fdp increment to for loop to make it consistent with similar

svn commit: r270095 - in stable/10/sys: kern sys

2014-08-17 Thread Konstantin Belousov
Author: kib Date: Sun Aug 17 09:07:21 2014 New Revision: 270095 URL: http://svnweb.freebsd.org/changeset/base/270095 Log: MFC r269457: Remove Giant acquisition from the mount and unmount pathes. Modified: stable/10/sys/kern/vfs_init.c stable/10/sys/kern/vfs_mount.c

svn commit: r270096 - in head: etc etc/autofs etc/defaults etc/mtree etc/rc.d sbin/mount share/man/man5 sys/conf sys/fs/autofs sys/kern sys/libkern sys/modules sys/modules/autofs sys/sys usr.sbin u...

2014-08-17 Thread Edward Tomasz Napierala
Author: trasz Date: Sun Aug 17 09:44:42 2014 New Revision: 270096 URL: http://svnweb.freebsd.org/changeset/base/270096 Log: Bring in the new automounter, similar to what's provided in most other UNIX systems, eg. MacOS X and Solaris. It uses Sun-compatible map format, has proper kernel

Re: svn commit: r270096 - in head: etc etc/autofs etc/defaults etc/mtree etc/rc.d sbin/mount share/man/man5 sys/conf sys/fs/autofs sys/kern sys/libkern sys/modules sys/modules/autofs sys/sys usr.sbin

2014-08-17 Thread Bjoern A. Zeeb
On 17 Aug 2014, at 09:44 , Edward Tomasz Napierala tr...@freebsd.org wrote: Author: trasz Date: Sun Aug 17 09:44:42 2014 New Revision: 270096 URL: http://svnweb.freebsd.org/changeset/base/270096 Log: Bring in the new automounter, similar to what's provided in most other UNIX systems,

svn commit: r270097 - head/sys/dev/netmap

2014-08-17 Thread Luigi Rizzo
Author: luigi Date: Sun Aug 17 10:25:27 2014 New Revision: 270097 URL: http://svnweb.freebsd.org/changeset/base/270097 Log: staticize two functions, and use proper format for a struct sglist (reported by bz) Modified: head/sys/dev/netmap/if_vtnet_netmap.h Modified:

svn commit: r270098 - head/share/syscons/keymaps

2014-08-17 Thread Stefan Esser
Author: se Date: Sun Aug 17 11:59:23 2014 New Revision: 270098 URL: http://svnweb.freebsd.org/changeset/base/270098 Log: Add a few missing entries and fix entries that are obviously wrong. The use of the old ISO language code iw for Hebrew was inconsistent and it is replaced by the new

svn commit: r270099 - in stable: 10/contrib/gcc/config/i386 9/contrib/gcc/config/i386

2014-08-17 Thread Dimitry Andric
Author: dim Date: Sun Aug 17 13:08:15 2014 New Revision: 270099 URL: http://svnweb.freebsd.org/changeset/base/270099 Log: MFC r269948: Supplement r259111 by also using correct casts in gcc's emmintrin.h for the first argument of the following builtin function: *

svn commit: r270099 - in stable: 10/contrib/gcc/config/i386 9/contrib/gcc/config/i386

2014-08-17 Thread Dimitry Andric
Author: dim Date: Sun Aug 17 13:08:15 2014 New Revision: 270099 URL: http://svnweb.freebsd.org/changeset/base/270099 Log: MFC r269948: Supplement r259111 by also using correct casts in gcc's emmintrin.h for the first argument of the following builtin function: *

svn commit: r270100 - in stable: 10/lib/clang/include/clang/Config 10/lib/clang/include/llvm/Config 9/lib/clang/include/clang/Config 9/lib/clang/include/llvm/Config

2014-08-17 Thread Dimitry Andric
Author: dim Date: Sun Aug 17 13:12:07 2014 New Revision: 270100 URL: http://svnweb.freebsd.org/changeset/base/270100 Log: MFC r269954: Stop telling people to directly report llvm or clang bugs upstream, point them to the FreeBSD bug tracker instead, since we use our own patches.

svn commit: r270100 - in stable: 10/lib/clang/include/clang/Config 10/lib/clang/include/llvm/Config 9/lib/clang/include/clang/Config 9/lib/clang/include/llvm/Config

2014-08-17 Thread Dimitry Andric
Author: dim Date: Sun Aug 17 13:12:07 2014 New Revision: 270100 URL: http://svnweb.freebsd.org/changeset/base/270100 Log: MFC r269954: Stop telling people to directly report llvm or clang bugs upstream, point them to the FreeBSD bug tracker instead, since we use our own patches.

Re: svn commit: r270099 - in stable: 10/contrib/gcc/config/i386 9/contrib/gcc/config/i386

2014-08-17 Thread Alexey Dokuchaev
On Sun, Aug 17, 2014 at 01:08:15PM +, Dimitry Andric wrote: New Revision: 270099 URL: http://svnweb.freebsd.org/changeset/base/270099 Log: MFC r269948: Supplement r259111 by also using correct casts in gcc's emmintrin.h for the first argument of the following builtin

Re: svn commit: r270099 - in stable: 10/contrib/gcc/config/i386 9/contrib/gcc/config/i386

2014-08-17 Thread Dimitry Andric
On 17 Aug 2014, at 15:19, Alexey Dokuchaev da...@freebsd.org wrote: On Sun, Aug 17, 2014 at 01:08:15PM +, Dimitry Andric wrote: New Revision: 270099 URL: http://svnweb.freebsd.org/changeset/base/270099 Log: MFC r269948: Supplement r259111 by also using correct casts in gcc's

Re: svn commit: r270099 - in stable: 10/contrib/gcc/config/i386 9/contrib/gcc/config/i386

2014-08-17 Thread Alexey Dokuchaev
On Sun, Aug 17, 2014 at 03:29:42PM +0200, Dimitry Andric wrote: In principle it is applicable, but the same file also has other changes in head which were not MFCd, so just MFCing this one commit does not make much sense. For example, the earlier cast fixes were part of a much larger commit

svn commit: r270101 - in head/bin/sh/tests: . errors

2014-08-17 Thread Jilles Tjoelker
Author: jilles Date: Sun Aug 17 14:26:12 2014 New Revision: 270101 URL: http://svnweb.freebsd.org/changeset/base/270101 Log: sh: Don't hardcode relative paths in the tests stderr files. These paths have had to be adjusted to changes in the testsuite runner several times, so modify the

svn commit: r270102 - head/bin/sh

2014-08-17 Thread Jilles Tjoelker
Author: jilles Date: Sun Aug 17 16:40:29 2014 New Revision: 270102 URL: http://svnweb.freebsd.org/changeset/base/270102 Log: sh: Reject integer overflow in number and is_number. Modified: head/bin/sh/mystring.c Modified: head/bin/sh/mystring.c

svn commit: r270103 - head/sys/arm/conf

2014-08-17 Thread Warner Losh
Author: imp Date: Sun Aug 17 16:53:10 2014 New Revision: 270103 URL: http://svnweb.freebsd.org/changeset/base/270103 Log: Convert the HL201 config file to use FDT. Modified: head/sys/arm/conf/HL201 Modified: head/sys/arm/conf/HL201

svn commit: r270104 - head/sys/arm/at91

2014-08-17 Thread Warner Losh
Author: imp Date: Sun Aug 17 16:53:14 2014 New Revision: 270104 URL: http://svnweb.freebsd.org/changeset/base/270104 Log: Define at91_master_clock in only one file to eliminate warnings about it multiply defined commons. Modified: head/sys/arm/at91/at91_machdep.c Modified:

svn commit: r270105 - head/sys/arm/at91

2014-08-17 Thread Warner Losh
Author: imp Date: Sun Aug 17 16:53:19 2014 New Revision: 270105 URL: http://svnweb.freebsd.org/changeset/base/270105 Log: Add missing license to at91_common.c. It was committed w/o a license. Pointy hat to: imp@ Modified: head/sys/arm/at91/at91_common.c Modified:

Re: svn commit: r270105 - head/sys/arm/at91

2014-08-17 Thread Ian Lepore
On Sun, 2014-08-17 at 16:53 +, Warner Losh wrote: Author: imp Date: Sun Aug 17 16:53:19 2014 New Revision: 270105 URL: http://svnweb.freebsd.org/changeset/base/270105 Log: Add missing license to at91_common.c. It was committed w/o a license. Pointy hat to: imp@ Modified:

Re: svn commit: r270035 - stable/10/lib/libc/stdio

2014-08-17 Thread Andrey Chernov
On 16.08.2014 5:29, Pedro F. Giffuni wrote: Author: pfg Date: Sat Aug 16 01:29:49 2014 New Revision: 270035 URL: http://svnweb.freebsd.org/changeset/base/270035 Log: MFC r268924: Update fflush(3) to return success on a read-only stream. This is done for compliance with SUSv3.

svn commit: r270106 - in stable/10/sys/cam: ctl scsi

2014-08-17 Thread Alexander Motin
Author: mav Date: Sun Aug 17 18:22:42 2014 New Revision: 270106 URL: http://svnweb.freebsd.org/changeset/base/270106 Log: MFC r269497: Add support for Windows dialect of EXTENDED COPY command, aka Microsoft ODX. This allows to avoid extra network traffic when copying files on NTFS iSCSI

svn commit: r270107 - stable/10/sys/cam/ctl

2014-08-17 Thread Alexander Motin
Author: mav Date: Sun Aug 17 18:23:43 2014 New Revision: 270107 URL: http://svnweb.freebsd.org/changeset/base/270107 Log: MFC r269587: Reimplement WRITE USING TOKEN with Block Zero token using WRITE SAME. On my ZVOL of SSDs that increases speed of zero writing in that way from 1 to

svn commit: r270108 - in stable/10/sys/cam: ctl scsi

2014-08-17 Thread Alexander Motin
Author: mav Date: Sun Aug 17 18:24:59 2014 New Revision: 270108 URL: http://svnweb.freebsd.org/changeset/base/270108 Log: MFC r269622: Fix several issues and inconsistencies in UNMAP capabilities reporting. This makes Windows 2012 to start using UNMAP on our disks. Modified:

svn commit: r270109 - stable/10/sys/cam/ctl

2014-08-17 Thread Alexander Motin
Author: mav Date: Sun Aug 17 18:26:34 2014 New Revision: 270109 URL: http://svnweb.freebsd.org/changeset/base/270109 Log: MFC r269631: Reduce reported additional INQUIRY data length. sizeof(struct scsi_inquiry_data) of 256 bytes combined with off-by-one error in the changed code gave

svn commit: r270110 - head/sys/arm/at91

2014-08-17 Thread Bjoern A. Zeeb
Author: bz Date: Sun Aug 17 18:27:02 2014 New Revision: 270110 URL: http://svnweb.freebsd.org/changeset/base/270110 Log: Remove keyboard entropy [1] from r270105. Reported by: ian [1] (Pointy hat)^2 to:imp Modified: head/sys/arm/at91/at91_common.c Modified:

svn commit: r270111 - in head: libexec/getty libexec/rshd sbin/init usr.bin/lock usr.bin/login usr.sbin/timed/timedc

2014-08-17 Thread Neel Natu
Author: neel Date: Sun Aug 17 19:06:26 2014 New Revision: 270111 URL: http://svnweb.freebsd.org/changeset/base/270111 Log: Remove LOG_ODELAY because it does nothing. Reviewed by: jilles CR: https://reviews.freebsd.org/D611 Modified: head/libexec/getty/main.c

Re: svn commit: r270035 - stable/10/lib/libc/stdio

2014-08-17 Thread Pedro Giffuni
On 08/17/14 13:20, Andrey Chernov wrote: On 16.08.2014 5:29, Pedro F. Giffuni wrote: Author: pfg Date: Sat Aug 16 01:29:49 2014 New Revision: 270035 URL: http://svnweb.freebsd.org/changeset/base/270035 Log: MFC r268924: Update fflush(3) to return success on a read-only stream.

Re: svn commit: r269505 - head/libexec/rtld-elf/tests/target

2014-08-17 Thread yaneurabeya
On Aug 4, 2014, at 10:24 AM, Garrett Cooper yaneurab...@gmail.com wrote: Hi Bruce! On Aug 4, 2014, at 2:23 AM, Bruce Evans b...@optusnet.com.au wrote: On Mon, 4 Aug 2014, Garrett Cooper wrote: ... I hope this fixes the error found by make checkdpadd. -L is too hard for the current

svn commit: r270112 - stable/10/usr.sbin/nfsd

2014-08-17 Thread Rick Macklem
Author: rmacklem Date: Sun Aug 17 19:24:26 2014 New Revision: 270112 URL: http://svnweb.freebsd.org/changeset/base/270112 Log: MFC: r269788 Document the use of the vfs.nfsd sysctls that control the size of the NFS server's DRC for TCP. This is a content change. Modified:

svn commit: r270113 - head/bin/sh

2014-08-17 Thread Jilles Tjoelker
Author: jilles Date: Sun Aug 17 19:36:56 2014 New Revision: 270113 URL: http://svnweb.freebsd.org/changeset/base/270113 Log: sh: Avoid overflow in atoi() when parsing HISTSIZE. Side effect: a non-numeric HISTSIZE now results in the default size (100) instead of 0. Modified:

svn commit: r270114 - head/share/vt/keymaps

2014-08-17 Thread Stefan Esser
Author: se Date: Sun Aug 17 19:54:21 2014 New Revision: 270114 URL: http://svnweb.freebsd.org/changeset/base/270114 Log: Attempt at converting the SYSCONS keymaps to Unicode for use with NEWCONS. I have spent many hours comparing source and destination formats, and hope to have caught the

svn commit: r270115 - head/sbin/ifconfig

2014-08-17 Thread Alexander V. Chernikov
Author: melifaro Date: Sun Aug 17 20:06:47 2014 New Revision: 270115 URL: http://svnweb.freebsd.org/changeset/base/270115 Log: Add forgotten DPADD to ifconfig(8). PR: 192760 Submitted by: yaneurabeya at gmail.com MFC after:2 weeks Modified: head/sbin/ifconfig/Makefile

Re: svn commit: r270114 - head/share/vt/keymaps

2014-08-17 Thread Pedro Giffuni
On 08/17/14 14:54, Stefan Esser wrote: Author: se Date: Sun Aug 17 19:54:21 2014 New Revision: 270114 URL: http://svnweb.freebsd.org/changeset/base/270114 Log: Attempt at converting the SYSCONS keymaps to Unicode for use with NEWCONS. I have spent many hours comparing source and

Re: svn commit: r270114 - head/share/vt/keymaps

2014-08-17 Thread Aleksandr Rybalko
On Sun, 17 Aug 2014 19:54:21 + (UTC) Stefan Esser s...@freebsd.org wrote: Author: se Date: Sun Aug 17 19:54:21 2014 New Revision: 270114 URL: http://svnweb.freebsd.org/changeset/base/270114 Log: Attempt at converting the SYSCONS keymaps to Unicode for use with NEWCONS. I have

Re: svn commit: r270114 - head/share/vt/keymaps

2014-08-17 Thread Stefan Esser
Am 17.08.2014 um 22:20 schrieb Pedro Giffuni: On 08/17/14 14:54, Stefan Esser wrote: Author: se Date: Sun Aug 17 19:54:21 2014 New Revision: 270114 URL: http://svnweb.freebsd.org/changeset/base/270114 Log: Attempt at converting the SYSCONS keymaps to Unicode for use with NEWCONS.

Re: svn commit: r270114 - head/share/vt/keymaps

2014-08-17 Thread Pedro Giffuni
Il giorno 17/ago/2014, alle ore 16:09, Stefan Esser s...@freebsd.org ha scritto: Am 17.08.2014 um 22:20 schrieb Pedro Giffuni: On 08/17/14 14:54, Stefan Esser wrote: Author: se Date: Sun Aug 17 19:54:21 2014 New Revision: 270114 URL: http://svnweb.freebsd.org/changeset/base/270114

Re: svn commit: r270099 - in stable: 10/contrib/gcc/config/i386 9/contrib/gcc/config/i386

2014-08-17 Thread Dimitry Andric
On 17 Aug 2014, at 15:45, Alexey Dokuchaev da...@freebsd.org wrote: On Sun, Aug 17, 2014 at 03:29:42PM +0200, Dimitry Andric wrote: In principle it is applicable, but the same file also has other changes in head which were not MFCd, so just MFCing this one commit does not make much sense. For

svn commit: r270116 - head/lib/atf/libatf-c++

2014-08-17 Thread Garrett Cooper
Author: ngie Date: Sun Aug 17 23:30:45 2014 New Revision: 270116 URL: http://svnweb.freebsd.org/changeset/base/270116 Log: Fix typo in lib/atf/libatfc++/Makefile LIBATFC should be LIBATF_C; this was missed in the initial import (r241823) PR: 192731 MFC after: 3 days Phabric:

svn commit: r270117 - head/sbin/hastd

2014-08-17 Thread Garrett Cooper
Author: ngie Date: Mon Aug 18 00:50:09 2014 New Revision: 270117 URL: http://svnweb.freebsd.org/changeset/base/270117 Log: Add -ll to LDADD to fix make checkdpadd Phabric: D622 MFC after: 2 weeks Approved by: rpaulo (mentor) Modified: head/sbin/hastd/Makefile Modified:

svn commit: r270118 - head/sbin/dhclient/tests

2014-08-17 Thread Garrett Cooper
Author: ngie Date: Mon Aug 18 01:21:41 2014 New Revision: 270118 URL: http://svnweb.freebsd.org/changeset/base/270118 Log: Add LIBUTIL to DPADD This will fix make checkdpadd MFC after: 5 days PR: 192759 Approved by: rpaulo (mentor) Modified: head/sbin/dhclient/tests/Makefile

svn commit: r270119 - head/share/vt/keymaps

2014-08-17 Thread Ed Maste
Author: emaste Date: Mon Aug 18 01:49:42 2014 New Revision: 270119 URL: http://svnweb.freebsd.org/changeset/base/270119 Log: Rename ca keyboard to ca-fr ca will shortly be used for the Canadian Multilingual keyboard. Added: head/share/vt/keymaps/ca-fr.kbd - copied unchanged from

Re: svn commit: r270035 - stable/10/lib/libc/stdio

2014-08-17 Thread Bruce Evans
On Sun, 17 Aug 2014, Pedro Giffuni wrote: On 08/17/14 13:20, Andrey Chernov wrote: On 16.08.2014 5:29, Pedro F. Giffuni wrote: Author: pfg Date: Sat Aug 16 01:29:49 2014 New Revision: 270035 URL: http://svnweb.freebsd.org/changeset/base/270035 Log: MFC r268924: Update fflush(3) to

Re: svn commit: r270114 - head/share/vt/keymaps

2014-08-17 Thread Ed Maste
On 17 August 2014 15:54, Stefan Esser s...@freebsd.org wrote: Author: se Date: Sun Aug 17 19:54:21 2014 New Revision: 270114 URL: http://svnweb.freebsd.org/changeset/base/270114 Log: Attempt at converting the SYSCONS keymaps to Unicode for use with NEWCONS. I have spent many hours

svn commit: r270120 - in stable/10: contrib/opie contrib/opie/libopie usr.bin/opiekey

2014-08-17 Thread Andrey A. Chernov
Author: ache Date: Mon Aug 18 02:13:45 2014 New Revision: 270120 URL: http://svnweb.freebsd.org/changeset/base/270120 Log: MFC: r269806,r269809,r269811,r269810 r269806: Fix too long (seed length 12 chars) challenge handling. 1) ext length should be included into OPIE_CHALLENGE_MAX (as

svn commit: r270121 - stable/10

2014-08-17 Thread Andrey A. Chernov
Author: ache Date: Mon Aug 18 02:32:48 2014 New Revision: 270121 URL: http://svnweb.freebsd.org/changeset/base/270121 Log: Direct commit to stable/10 reflecting r269815 because rest can't be merged Add otp-sha Modified: stable/10/ObsoleteFiles.inc Modified: stable/10/ObsoleteFiles.inc

svn commit: r270122 - in stable/10: . lib/libopie

2014-08-17 Thread Andrey A. Chernov
Author: ache Date: Mon Aug 18 02:42:23 2014 New Revision: 270122 URL: http://svnweb.freebsd.org/changeset/base/270122 Log: Direct commit to stable/10 reflecting r269961 because the rest can't be merged. Bump version because challenge buffer size changed. Modified:

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

2014-08-17 Thread Warner Losh
Author: imp Date: Mon Aug 18 02:45:06 2014 New Revision: 270124 URL: http://svnweb.freebsd.org/changeset/base/270124 Log: /usr/libexec/ld.so.1 never was a thing on FreeBSD/arm. This was the FreeBSD 3.x and 4.x run time linker. FreeBSD/arm's first release was 5.0. Retire this long-dead code.

svn commit: r270123 - in head/sys: arm/arm arm/include kern sys

2014-08-17 Thread Warner Losh
Author: imp Date: Mon Aug 18 02:44:56 2014 New Revision: 270123 URL: http://svnweb.freebsd.org/changeset/base/270123 Log: Expand the elf brandelf infrastructure to give access to the whole ELF header (Elf_Ehdr) to determine if a particular interpretor wants to accept it or not. Use this

svn commit: r270125 - stable/10/lib/libpam/modules/pam_opie

2014-08-17 Thread Andrey A. Chernov
Author: ache Date: Mon Aug 18 03:06:49 2014 New Revision: 270125 URL: http://svnweb.freebsd.org/changeset/base/270125 Log: MFC: r269875 According to opie code and even direct mention in opie(4) challenge buffer size must be OPIE_CHALLENGE_MAX + 1, not OPIE_CHALLENGE_MAX Reviewed by:

svn commit: r270126 - stable/10/cddl/contrib/opensolaris/cmd/ztest

2014-08-17 Thread Xin LI
Author: delphij Date: Mon Aug 18 05:13:46 2014 New Revision: 270126 URL: http://svnweb.freebsd.org/changeset/base/270126 Log: MFC r269430: MFV r269426: Double test device size for ztest(1). Illumos issue: 5039 ztest should default to larger device sizes Author: Matthew

svn commit: r270127 - in stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs: . sys

2014-08-17 Thread Xin LI
Author: delphij Date: Mon Aug 18 05:17:24 2014 New Revision: 270127 URL: http://svnweb.freebsd.org/changeset/base/270127 Log: MFC r269431: MFV r269427: In dnode_children_t, use C99's [] idiom for declaring the variable sized array dnc_children at the end of the structure. This

svn commit: r270128 - stable/10/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2014-08-17 Thread Xin LI
Author: delphij Date: Mon Aug 18 05:22:09 2014 New Revision: 270128 URL: http://svnweb.freebsd.org/changeset/base/270128 Log: MFC r269543: MFV r269542: In vdev_get_stats, check that the vdev is not a hole before computing the fragmentation. This fixes a panic when removing log device.