Re: svn commit: r229633 - stable/9/sys/net

2012-01-06 Thread Gleb Smirnoff
John, On Thu, Jan 05, 2012 at 07:50:12PM +, John Baldwin wrote: J Author: jhb J Date: Thu Jan 5 19:50:12 2012 J New Revision: 229633 J URL: http://svn.freebsd.org/changeset/base/229633 J J Log: J MFC 228089: J Change the if_vlan driver to use if_transmit for forwarding packets to the

svn commit: r229690 - stable/9/sys/net

2012-01-06 Thread Gleb Smirnoff
Author: glebius Date: Fri Jan 6 08:46:26 2012 New Revision: 229690 URL: http://svn.freebsd.org/changeset/base/229690 Log: Merge r226830 from head/: Add macro IF_DEQUEUE_ALL(ifq, m), that takes the entire mbuf chain off the queue. It can be utilized in queue processing to avoid multiple

svn commit: r229691 - head/sys/pc98/conf

2012-01-06 Thread Adrian Chadd
Author: adrian Date: Fri Jan 6 08:51:20 2012 New Revision: 229691 URL: http://svn.freebsd.org/changeset/base/229691 Log: Flip these options on so the modules build correctly for now. Modified: head/sys/pc98/conf/GENERIC Modified: head/sys/pc98/conf/GENERIC

svn commit: r229692 - head/sys/fs/pseudofs

2012-01-06 Thread Jaakko Heinonen
Author: jh Date: Fri Jan 6 09:17:34 2012 New Revision: 229692 URL: http://svn.freebsd.org/changeset/base/229692 Log: Check the return value of sbuf_finish() in pfs_readlink() and return ENAMETOOLONG if the buffer overflowed. Approved by: des MFC after:2 weeks Modified:

svn commit: r229693 - in head/lib/libc: powerpc powerpc64

2012-01-06 Thread Andreas Tobler
Author: andreast Date: Fri Jan 6 09:21:40 2012 New Revision: 229693 URL: http://svn.freebsd.org/changeset/base/229693 Log: Use the macro WEAK_ALIAS. Tested on 32 and 64-bit. Modified: head/lib/libc/powerpc/SYS.h head/lib/libc/powerpc64/SYS.h Modified: head/lib/libc/powerpc/SYS.h

svn commit: r229694 - head/sys/fs/pseudofs

2012-01-06 Thread Jaakko Heinonen
Author: jh Date: Fri Jan 6 10:12:59 2012 New Revision: 229694 URL: http://svn.freebsd.org/changeset/base/229694 Log: r222004 changed sbuf_finish() to not clear the buffer error status. As a consequence sbuf_len() will return -1 for buffers which had the error status set prior to

svn commit: r229696 - stable/8/sys/vm

2012-01-06 Thread Konstantin Belousov
Author: kib Date: Fri Jan 6 11:06:48 2012 New Revision: 229696 URL: http://svn.freebsd.org/changeset/base/229696 Log: MFC r228838: Optimize the common case of msyncing the whole file mapping with MS_SYNC flag. Modified: stable/8/sys/vm/vm_object.c Directory Properties: stable/8/sys/

svn commit: r229697 - head/sbin/recoverdisk

2012-01-06 Thread Ulrich Spoerlein
Author: uqs Date: Fri Jan 6 11:42:03 2012 New Revision: 229697 URL: http://svn.freebsd.org/changeset/base/229697 Log: Fix mdoc date from previous commit. Modified: head/sbin/recoverdisk/recoverdisk.1 Modified: head/sbin/recoverdisk/recoverdisk.1

svn commit: r229698 - head/sys/net

2012-01-06 Thread Gleb Smirnoff
Author: glebius Date: Fri Jan 6 12:05:43 2012 New Revision: 229698 URL: http://svn.freebsd.org/changeset/base/229698 Log: Since r228571 CARP is no longer an interface. Modified: head/sys/net/if_media.h Modified: head/sys/net/if_media.h

svn commit: r229699 - head/sbin/hastd

2012-01-06 Thread Pawel Jakub Dawidek
Author: pjd Date: Fri Jan 6 12:27:17 2012 New Revision: 229699 URL: http://svn.freebsd.org/changeset/base/229699 Log: Constify argument. MFC after:3 days Modified: head/sbin/hastd/subr.c head/sbin/hastd/subr.h Modified: head/sbin/hastd/subr.c

svn commit: r229700 - head/sys/netinet

2012-01-06 Thread John Baldwin
Author: jhb Date: Fri Jan 6 12:49:01 2012 New Revision: 229700 URL: http://svn.freebsd.org/changeset/base/229700 Log: Tweak the last fix to match what was actually tested. Pointy hat to:jhb Modified: head/sys/netinet/tcp_timewait.c Modified: head/sys/netinet/tcp_timewait.c

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

2012-01-06 Thread John Baldwin
On Thursday, January 05, 2012 7:19:29 pm Sergey Kandaurov wrote: Hi, Looks like a typo there: /usr/src/sys/netinet/tcp_timewait.c: In function 'tcp_twstart': /usr/src/sys/netinet/tcp_timewait.c:245: warning: implicit declaration of function 'SEQ_GE' /usr/src/sys/netinet/tcp_timewait.c:245:

Re: svn commit: r229693 - in head/lib/libc: powerpc powerpc64

2012-01-06 Thread Bruce Evans
On Fri, 6 Jan 2012, Andreas Tobler wrote: Log: Use the macro WEAK_ALIAS. Tested on 32 and 64-bit. This API should be fixed before using it extensively. It has the args reversed relative to the C API __weak_reference(). Also, its name is different, and the spelling of = in its

Re: svn commit: r229633 - stable/9/sys/net

2012-01-06 Thread John Baldwin
On Friday, January 06, 2012 3:20:05 am Gleb Smirnoff wrote: John, On Thu, Jan 05, 2012 at 07:50:12PM +, John Baldwin wrote: J Author: jhb J Date: Thu Jan 5 19:50:12 2012 J New Revision: 229633 J URL: http://svn.freebsd.org/changeset/base/229633 J J Log: J MFC 228089: J

svn commit: r229701 - head/etc/rc.d

2012-01-06 Thread Pawel Jakub Dawidek
Author: pjd Date: Fri Jan 6 14:00:31 2012 New Revision: 229701 URL: http://svn.freebsd.org/changeset/base/229701 Log: Add 'nojail' keyword as auditd(8) can't really do anything useful when inside a jail. Discussed with: rwatson MFC after:1 week Modified:

Re: svn commit: r229633 - stable/9/sys/net

2012-01-06 Thread Gleb Smirnoff
On Fri, Jan 06, 2012 at 08:45:12AM -0500, John Baldwin wrote: J On Friday, January 06, 2012 3:20:05 am Gleb Smirnoff wrote: JJohn, J J On Thu, Jan 05, 2012 at 07:50:12PM +, John Baldwin wrote: J J Author: jhb J J Date: Thu Jan 5 19:50:12 2012 J J New Revision: 229633 J J URL:

Re: svn commit: r229633 - stable/9/sys/net

2012-01-06 Thread John Baldwin
On Friday, January 06, 2012 9:24:59 am Gleb Smirnoff wrote: On Fri, Jan 06, 2012 at 08:45:12AM -0500, John Baldwin wrote: J On Friday, January 06, 2012 3:20:05 am Gleb Smirnoff wrote: JJohn, J J On Thu, Jan 05, 2012 at 07:50:12PM +, John Baldwin wrote: J J Author: jhb J J Date:

svn commit: r229702 - head/sbin/devd

2012-01-06 Thread Gleb Smirnoff
Author: glebius Date: Fri Jan 6 15:01:05 2012 New Revision: 229702 URL: http://svn.freebsd.org/changeset/base/229702 Log: Fix build. Modified: head/sbin/devd/devd.cc Modified: head/sbin/devd/devd.cc == ---

svn commit: r229703 - in stable/9: . sys/cddl/contrib/opensolaris/uts/common/fs/zfs sys/fs/devfs sys/fs/nullfs sys/fs/pseudofs sys/kern

2012-01-06 Thread Konstantin Belousov
(r229702) +++ stable/9/UPDATING Fri Jan 6 15:07:28 2012(r229703) @@ -10,6 +10,11 @@ Items affecting the ports and packages s /usr/ports/UPDATING. Please read that file before running portupgrade. 20120106: + The interface of the VOP_VPTOCNP(9) changed, now the returned

svn commit: r229704 - head/include

2012-01-06 Thread Ed Schouten
Author: ed Date: Fri Jan 6 16:20:17 2012 New Revision: 229704 URL: http://svn.freebsd.org/changeset/base/229704 Log: Add an even faster implementation of tgmath.h for the future. Instead of using an exponential number of cases with respect to the number of arguments, this version only

svn commit: r229705 - stable/9/sys/sys

2012-01-06 Thread Mikolaj Golub
Author: trociny Date: Fri Jan 6 16:45:44 2012 New Revision: 229705 URL: http://svn.freebsd.org/changeset/base/229705 Log: MFC r227954: Add const qualifier to rlimit_ident. Modified: stable/9/sys/sys/resource.h Directory Properties: stable/9/sys/ (props changed) Modified:

svn commit: r229706 - stable/8/sys/sys

2012-01-06 Thread Mikolaj Golub
Author: trociny Date: Fri Jan 6 16:46:52 2012 New Revision: 229706 URL: http://svn.freebsd.org/changeset/base/229706 Log: MFC r227954: Add const qualifier to rlimit_ident. Modified: stable/8/sys/sys/resource.h Directory Properties: stable/8/sys/ (props changed) Modified:

Re: svn commit: r229667 - head/usr.sbin/daemon

2012-01-06 Thread Guy Helmer
On Jan 5, 2012, at 8:58 PM, Doug Barton wrote: On 01/05/2012 14:48, Guy Helmer wrote: Allow daemon(8) to run pidfile_open() before relenquishing privileges so pid files can be written in /var/run when started as root. I'm not sure how useful this is since when daemon is exiting it won't

svn commit: r229707 - in stable/9/sys: kern sys

2012-01-06 Thread Mikolaj Golub
Author: trociny Date: Fri Jan 6 16:54:16 2012 New Revision: 229707 URL: http://svn.freebsd.org/changeset/base/229707 Log: MFC r227316: Add KVME_FLAG_SUPER and use it in sysctl_kern_proc_vmmap for marking entries with superpages. Submitted by: Mel Flynn

svn commit: r229708 - stable/9/sys/net

2012-01-06 Thread John Baldwin
Author: jhb Date: Fri Jan 6 16:56:09 2012 New Revision: 229708 URL: http://svn.freebsd.org/changeset/base/229708 Log: MFC 228967: Update if_obytes and if_omcast after successful transmit. While I'm here update if_oerrors if parent interface of vlan is not up and running. Previously it

svn commit: r229709 - stable/8/sys/net

2012-01-06 Thread John Baldwin
Author: jhb Date: Fri Jan 6 16:57:29 2012 New Revision: 229709 URL: http://svn.freebsd.org/changeset/base/229709 Log: MFC 228967: Update if_obytes and if_omcast after successful transmit. While I'm here update if_oerrors if parent interface of vlan is not up and running. Previously it

svn commit: r229710 - stable/9/usr.bin/procstat

2012-01-06 Thread Mikolaj Golub
Author: trociny Date: Fri Jan 6 16:57:56 2012 New Revision: 229710 URL: http://svn.freebsd.org/changeset/base/229710 Log: MFC r227317, r227355: When displaying process virtual memory mappings print superpage mapping flag. Submitted by: Mel Flynn

Re: svn commit: r229633 - stable/9/sys/net

2012-01-06 Thread YongHyeon PYUN
On Fri, Jan 06, 2012 at 09:50:13AM -0500, John Baldwin wrote: On Friday, January 06, 2012 9:24:59 am Gleb Smirnoff wrote: On Fri, Jan 06, 2012 at 08:45:12AM -0500, John Baldwin wrote: J On Friday, January 06, 2012 3:20:05 am Gleb Smirnoff wrote: JJohn, J J On Thu, Jan 05, 2012 at

svn commit: r229712 - stable/8/sys/dev/et

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 18:16:57 2012 New Revision: 229712 URL: http://svn.freebsd.org/changeset/base/229712 Log: MFC r228291-228293,228297-228298: r228291: Remove NetBSD license. r199548 removed all bit macros that were derived from NetBSD. r228292: Implement

svn commit: r229713 - stable/7/sys/dev/et

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 18:18:25 2012 New Revision: 229713 URL: http://svn.freebsd.org/changeset/base/229713 Log: MFC r228291-228293,228297-228298: r228291: Remove NetBSD license. r199548 removed all bit macros that were derived from NetBSD. r228292: Implement

svn commit: r229714 - head/sys/netinet

2012-01-06 Thread Navdeep Parhar
Author: np Date: Fri Jan 6 18:29:40 2012 New Revision: 229714 URL: http://svn.freebsd.org/changeset/base/229714 Log: Always release the inp lock before returning from tcp_detach. MFC after:5 days Modified: head/sys/netinet/tcp_usrreq.c Modified: head/sys/netinet/tcp_usrreq.c

svn commit: r229715 - head/contrib/gcc/config

2012-01-06 Thread Andreas Tobler
Author: andreast Date: Fri Jan 6 18:37:49 2012 New Revision: 229715 URL: http://svn.freebsd.org/changeset/base/229715 Log: Silence a warning about redefinition of TARGET_ELF on powerpc. Modified: head/contrib/gcc/config/freebsd.h Modified: head/contrib/gcc/config/freebsd.h

svn commit: r229716 - head/include

2012-01-06 Thread Ed Schouten
Author: ed Date: Fri Jan 6 19:04:59 2012 New Revision: 229716 URL: http://svn.freebsd.org/changeset/base/229716 Log: Last attempt at tgmath.h: do enable the new code for C11 compilers. I was thinking by myself, if the new code doesn't work with GCC 4.2, why not simply turn it into an

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

2012-01-06 Thread Gleb Smirnoff
Navdeep, On Fri, Jan 06, 2012 at 06:29:41PM +, Navdeep Parhar wrote: N Author: np N Date: Fri Jan 6 18:29:40 2012 N New Revision: 229714 N URL: http://svn.freebsd.org/changeset/base/229714 N N Log: N Always release the inp lock before returning from tcp_detach.

svn commit: r229717 - stable/9/sys/dev/et

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 19:09:47 2012 New Revision: 229717 URL: http://svn.freebsd.org/changeset/base/229717 Log: MFC r228325: Overhaul bus_dma(9) usage in et(4) and clean up TX/RX path. This change should make et(4) work on any architectures. o Remove m_getl inline

svn commit: r229718 - stable/8/sys/dev/et

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 19:11:20 2012 New Revision: 229718 URL: http://svn.freebsd.org/changeset/base/229718 Log: MFC r228325: Overhaul bus_dma(9) usage in et(4) and clean up TX/RX path. This change should make et(4) work on any architectures. o Remove m_getl inline

svn commit: r229719 - stable/7/sys/dev/et

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 19:12:47 2012 New Revision: 229719 URL: http://svn.freebsd.org/changeset/base/229719 Log: MFC r228325: Overhaul bus_dma(9) usage in et(4) and clean up TX/RX path. This change should make et(4) work on any architectures. o Remove m_getl inline

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

2012-01-06 Thread Navdeep Parhar
On Fri, Jan 06, 2012 at 11:05:15PM +0400, Gleb Smirnoff wrote: Navdeep, On Fri, Jan 06, 2012 at 06:29:41PM +, Navdeep Parhar wrote: N Author: np N Date: Fri Jan 6 18:29:40 2012 N New Revision: 229714 N URL: http://svn.freebsd.org/changeset/base/229714 N N Log: N Always release

svn commit: r229720 - stable/9/sys/dev/et

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 19:24:33 2012 New Revision: 229720 URL: http://svn.freebsd.org/changeset/base/229720 Log: MFC r228326-228327,228331-228332: r228326: Controller does not require TX start command for every frame. So send a single TX command after setting up all TX

svn commit: r229721 - stable/8/sys/dev/et

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 19:26:31 2012 New Revision: 229721 URL: http://svn.freebsd.org/changeset/base/229721 Log: MFC r228326-228327,228331-228332: r228326: Controller does not require TX start command for every frame. So send a single TX command after setting up all TX

svn commit: r229722 - stable/7/sys/dev/et

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 19:27:51 2012 New Revision: 229722 URL: http://svn.freebsd.org/changeset/base/229722 Log: MFC r228326-228327,228331-228332: r228326: Controller does not require TX start command for every frame. So send a single TX command after setting up all TX

svn commit: r229723 - in stable/9: . lib/libc/sys sys/compat/freebsd32 sys/kern sys/sys sys/vm

2012-01-06 Thread John Baldwin
portupgrade. 20120106: + A new VOP_ADVISE() was added to support posix_fadvise(2). All + filesystem modules must be recompiled. + +20120106: The interface of the VOP_VPTOCNP(9) changed, now the returned vnode shall be referenced, previously it was required to be only

svn commit: r229725 - in stable/8: . lib/libc/sys sys/compat/freebsd32 sys/kern sys/sys sys/vm

2012-01-06 Thread John Baldwin
/UPDATING Fri Jan 6 19:32:39 2012(r229725) @@ -15,6 +15,14 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 8. debugging tools present in HEAD were left in place because sun4v support still needs work to become production ready. +20120106: + A new VOP_ADVISE() was added

svn commit: r229726 - in stable/8/sys: compat/freebsd32 kern sys

2012-01-06 Thread John Baldwin
Author: jhb Date: Fri Jan 6 19:33:27 2012 New Revision: 229726 URL: http://svn.freebsd.org/changeset/base/229726 Log: Regen. Modified: stable/8/sys/compat/freebsd32/freebsd32_proto.h stable/8/sys/compat/freebsd32/freebsd32_syscall.h stable/8/sys/compat/freebsd32/freebsd32_syscalls.c

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

2012-01-06 Thread Gleb Smirnoff
On Fri, Jan 06, 2012 at 07:19:57PM +, Navdeep Parhar wrote: N On Fri, Jan 06, 2012 at 11:05:15PM +0400, Gleb Smirnoff wrote: NNavdeep, N N On Fri, Jan 06, 2012 at 06:29:41PM +, Navdeep Parhar wrote: N N Author: np N N Date: Fri Jan 6 18:29:40 2012 N N New Revision: 229714 N N

Re: svn commit: r229693 - in head/lib/libc: powerpc powerpc64

2012-01-06 Thread Andreas Tobler
Hi Bruce, thank you for the feedback. I wasn't aware about the fine details. I try to understand and implement what you suggest. It may take several iterations until I match everything. On 06.01.12 14:12, Bruce Evans wrote: On Fri, 6 Jan 2012, Andreas Tobler wrote: Log: Use the macro

svn commit: r229727 - head/sys/kern

2012-01-06 Thread John Baldwin
Author: jhb Date: Fri Jan 6 20:05:48 2012 New Revision: 229727 URL: http://svn.freebsd.org/changeset/base/229727 Log: Use proper argument structure types for the extattr post-VOP hooks. The wrong structure happened to work since the only argument used was the vnode which is in the same

svn commit: r229728 - head/sys/kern

2012-01-06 Thread John Baldwin
Author: jhb Date: Fri Jan 6 20:06:45 2012 New Revision: 229728 URL: http://svn.freebsd.org/changeset/base/229728 Log: Add 5 spare VOPs as placeholders to avoid breaking the KBI in the future when new VOPs are MFC'd to a branch. Reviewed by: kib, bz MFC after:3 days Modified:

svn commit: r229729 - head/sys/netinet

2012-01-06 Thread Michael Tuexen
Author: tuexen Date: Fri Jan 6 20:20:59 2012 New Revision: 229729 URL: http://svn.freebsd.org/changeset/base/229729 Log: Use NULL instead of 0. MFC after: 1 month. Modified: head/sys/netinet/sctputil.c Modified: head/sys/netinet/sctputil.c

svn commit: r229731 - in stable/9/sys: conf modules/drm/r128 modules/drm/radeon modules/drm/via

2012-01-06 Thread Dimitry Andric
Author: dim Date: Fri Jan 6 21:14:54 2012 New Revision: 229731 URL: http://svn.freebsd.org/changeset/base/229731 Log: MFC r228978: For several files in sys/dev/drm, disable -Wunused-value when building with clang. There are several macros in these files that return values, and in

svn commit: r229734 - in stable/9/sys: conf modules/ipfilter modules/nxge modules/xfs

2012-01-06 Thread Dimitry Andric
Author: dim Date: Fri Jan 6 21:23:00 2012 New Revision: 229734 URL: http://svn.freebsd.org/changeset/base/229734 Log: MFC r228994: Disable several instances instances of clang's -Wself-assign warning. All of these are harmless, and are in fact used to shut up warnings from lint.

svn commit: r229735 - head/lib/libdevstat

2012-01-06 Thread Guy Helmer
Author: ghelmer Date: Fri Jan 6 21:28:29 2012 New Revision: 229735 URL: http://svn.freebsd.org/changeset/base/229735 Log: Handle memory allocation failures in devstat_getdevs(), devstat_selectdevs(), and devstat_buildmatch(). PR: bin/83359 Reviewed by: ken Modified:

svn commit: r229736 - stable/9/sys/dev/et

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 21:43:26 2012 New Revision: 229736 URL: http://svn.freebsd.org/changeset/base/229736 Log: MFC r228333,228335-228336,228362,228368-228369,228381: r228333: Protect SIOCSIFMTU ioctl handler with driver lock. Don't blindly re-initialize controller whenever

svn commit: r229737 - stable/8/sys/dev/et

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 21:45:08 2012 New Revision: 229737 URL: http://svn.freebsd.org/changeset/base/229737 Log: MFC r228333,228335-228336,228362,228368-228369,228381: r228333: Protect SIOCSIFMTU ioctl handler with driver lock. Don't blindly re-initialize controller whenever

svn commit: r229738 - stable/7/sys/dev/et

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 21:46:35 2012 New Revision: 229738 URL: http://svn.freebsd.org/changeset/base/229738 Log: MFC r228333,228335-228336,228362,228368-228369,228381: r228333: Protect SIOCSIFMTU ioctl handler with driver lock. Don't blindly re-initialize controller whenever

svn commit: r229739 - stable/9/sys/compat/ndis

2012-01-06 Thread Dimitry Andric
Author: dim Date: Fri Jan 6 22:15:58 2012 New Revision: 229739 URL: http://svn.freebsd.org/changeset/base/229739 Log: MFC r229004: In sys/compat/ndis/subr_ntoskrnl.c, change the RtlFillMemory function definition from KR to ANSI, to avoid a clang warning about the uint8_t parameter

svn commit: r229740 - in stable/9/sys/dev/ath/ath_hal: ar5212 ar5416

2012-01-06 Thread Dimitry Andric
Author: dim Date: Fri Jan 6 22:18:13 2012 New Revision: 229740 URL: http://svn.freebsd.org/changeset/base/229740 Log: MFC r228817: Use the correct types when calling the decompression mask function. There's currently no public code which uses this feature and the current reference

svn commit: r229741 - stable/8/sys/dev/usb/controller

2012-01-06 Thread Hans Petter Selasky
Author: hselasky Date: Fri Jan 6 22:54:03 2012 New Revision: 229741 URL: http://svn.freebsd.org/changeset/base/229741 Log: Fix build of ehci_mbus.c by applying patches similar to ones in r228483. This file was missed by a recent MFC because the file is named differently in 10-current.

svn commit: r229742 - head/tools/regression/bin/sh/builtins

2012-01-06 Thread Jilles Tjoelker
Author: jilles Date: Fri Jan 6 23:20:33 2012 New Revision: 229742 URL: http://svn.freebsd.org/changeset/base/229742 Log: sh: Avoid possible echo options in a testcase. Modified: head/tools/regression/bin/sh/builtins/getopts1.0 Modified: head/tools/regression/bin/sh/builtins/getopts1.0

svn commit: r229744 - head/sbin/hastd

2012-01-06 Thread Pawel Jakub Dawidek
Author: pjd Date: Fri Jan 6 23:44:26 2012 New Revision: 229744 URL: http://svn.freebsd.org/changeset/base/229744 Log: fork(2) returns -1 on failure, not some random negative number. MFC after:3 days Modified: head/sbin/hastd/primary.c head/sbin/hastd/secondary.c Modified:

svn commit: r229745 - stable/9/share/man/man4

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 23:57:21 2012 New Revision: 229745 URL: http://svn.freebsd.org/changeset/base/229745 Log: MFC r228370: After r228293, et(4) supports altq(4). Modified: stable/9/share/man/man4/altq.4 stable/9/share/man/man4/et.4 Directory Properties:

svn commit: r229746 - stable/8/share/man/man4

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Fri Jan 6 23:59:25 2012 New Revision: 229746 URL: http://svn.freebsd.org/changeset/base/229746 Log: MFC r215835,228370: r215835: Add a HARDWARE section. r228370: After r228293, et(4) supports altq(4). Modified: stable/8/share/man/man4/altq.4

svn commit: r229747 - stable/7/share/man/man4

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Sat Jan 7 00:05:20 2012 New Revision: 229747 URL: http://svn.freebsd.org/changeset/base/229747 Log: MFC r180509,181362,215835,228370: Belatedly add man page for et(4) and catch up with all changes. r180509: Manpage for the et(4) driver. r181362:

svn commit: r229748 - stable/9/usr.sbin/pkg_install/add

2012-01-06 Thread Ken Smith
Author: kensmith Date: Sat Jan 7 00:07:23 2012 New Revision: 229748 URL: http://svn.freebsd.org/changeset/base/229748 Log: MFC the rest of r225757 that applies to the package set directories. Modified: stable/9/usr.sbin/pkg_install/add/main.c Modified:

svn commit: r229751 - stable/9/usr.sbin/pkg_install/add

2012-01-06 Thread Ken Smith
Author: kensmith Date: Sat Jan 7 00:33:13 2012 New Revision: 229751 URL: http://svn.freebsd.org/changeset/base/229751 Log: When copying/pasting a line to create a line you want to add make sure to change all pieces of it, not just some of them. Submitted by: A helpful soul on IRC

svn commit: r229752 - in stable/9/sys/fs: nfs nfsclient

2012-01-06 Thread Rick Macklem
Author: rmacklem Date: Sat Jan 7 00:36:17 2012 New Revision: 229752 URL: http://svn.freebsd.org/changeset/base/229752 Log: MFC: r228217 Post r223774, the NFSv4 client no longer has multiple instances of the same lock_owner4 string. As such, the handling of cleanup of lock_owners could be

svn commit: r229753 - head/sys/contrib/rdma

2012-01-06 Thread Dimitry Andric
Author: dim Date: Sat Jan 7 00:47:27 2012 New Revision: 229753 URL: http://svn.freebsd.org/changeset/base/229753 Log: In sys/contrib/rdma/ib_addr.h, bump MAX_ADDR_LEN to 20 bytes (the same value used in sys/ofed/include/linux/netdevice.h), so there will be no buffer overruns in the rest of

svn commit: r229754 - in stable/8/sys/dev: bce mxge

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Sat Jan 7 01:08:17 2012 New Revision: 229754 URL: http://svn.freebsd.org/changeset/base/229754 Log: MFC r207761: Belatedly merge r207761. For unknown reason r207761 was not fully merged (r208073) to stable/8 but mergeinfo was recorded. Add a fastpath to

svn commit: r229755 - in stable/7/sys: dev/bce dev/mxge sys

2012-01-06 Thread Pyun YongHyeon
Author: yongari Date: Sat Jan 7 01:12:21 2012 New Revision: 229755 URL: http://svn.freebsd.org/changeset/base/229755 Log: MFC r207761: Add a fastpath to allocate from packet zone when using m_getjcl. This will add support for packet zone for at least igb and ixgbe and will avoid to

svn commit: r229756 - stable/7/usr.bin/du

2012-01-06 Thread Glen Barber
Author: gjb (doc committer) Date: Sat Jan 7 01:39:38 2012 New Revision: 229756 URL: http://svn.freebsd.org/changeset/base/229756 Log: MFC r209362, r210933, r228356: r209362 (brian) [1]: - Add a -t switch for masking output that's above or below certain thresholds. This switch makes

svn commit: r229757 - stable/9/share/man/man5

2012-01-06 Thread Glen Barber
Author: gjb (doc committer) Date: Sat Jan 7 02:03:07 2012 New Revision: 229757 URL: http://svn.freebsd.org/changeset/base/229757 Log: MFC r228355: - As of r226865, daily_scrub_zfs_default_threshold is 35 days. PR: 162890 Modified: stable/9/share/man/man5/periodic.conf.5

svn commit: r229759 - in stable/8/sys/fs: nfs nfsclient

2012-01-06 Thread Rick Macklem
Author: rmacklem Date: Sat Jan 7 02:09:49 2012 New Revision: 229759 URL: http://svn.freebsd.org/changeset/base/229759 Log: MFC: r228217 Post r223774, the NFSv4 client no longer has multiple instances of the same lock_owner4 string. As such, the handling of cleanup of lock_owners could be

svn commit: r229760 - in stable/8/sys: boot/zfs cddl/boot/zfs

2012-01-06 Thread Martin Matuska
Author: mm Date: Sat Jan 7 02:23:58 2012 New Revision: 229760 URL: http://svn.freebsd.org/changeset/base/229760 Log: MFC r226549,r226550,r226551,r226552,r226553,r226568 MFC r226549 (pjd): Remove redundant size calculation. MFC r226550 (pjd): Initialize 'rc' properly before using

svn commit: r229761 - stable/8/tools/tools/zfsboottest

2012-01-06 Thread Martin Matuska
Author: mm Date: Sat Jan 7 02:35:00 2012 New Revision: 229761 URL: http://svn.freebsd.org/changeset/base/229761 Log: MFC zfsboottest: r225608 (partial), r225609, r226611, r226612 MFC r225608 (avg, tools/ part): zfstest: rename to zfsboottest and move to tools MFC r225609 (avg):

svn commit: r229762 - stable/7/sbin/md5

2012-01-06 Thread Eitan Adler
Author: eadler (ports committer) Date: Sat Jan 7 03:31:40 2012 New Revision: 229762 URL: http://svn.freebsd.org/changeset/base/229762 Log: MFC r227491: - new sentence should start on new line. Approved by: gjb Modified: stable/7/sbin/md5/md5.1 Directory Properties:

svn commit: r229763 - stable/8/sbin/md5

2012-01-06 Thread Eitan Adler
Author: eadler (ports committer) Date: Sat Jan 7 03:32:24 2012 New Revision: 229763 URL: http://svn.freebsd.org/changeset/base/229763 Log: MFC r227491: - new sentence should start on new line. Approved by: gjb Modified: stable/8/sbin/md5/md5.1 Directory Properties:

svn commit: r229764 - stable/9/sbin/md5

2012-01-06 Thread Eitan Adler
Author: eadler (ports committer) Date: Sat Jan 7 03:32:47 2012 New Revision: 229764 URL: http://svn.freebsd.org/changeset/base/229764 Log: MFC r227491: - new sentence should start on new line. Approved by: gjb Modified: stable/9/sbin/md5/md5.1 Directory Properties:

svn commit: r229765 - head/sys/mips/atheros

2012-01-06 Thread Adrian Chadd
Author: adrian Date: Sat Jan 7 04:13:25 2012 New Revision: 229765 URL: http://svn.freebsd.org/changeset/base/229765 Log: Fix the ar724x shift calculation when writing to the PCI config space. This was preventing the ath driver from being loaded at runtime. It worked fine when compiled