svn commit: r253953 - in head/sys: cddl/contrib/opensolaris/uts/common/fs/zfs fs/tmpfs kern vm

2013-08-05 Thread Attilio Rao
Author: attilio Date: Mon Aug 5 08:55:35 2013 New Revision: 253953 URL: http://svnweb.freebsd.org/changeset/base/253953 Log: Revert r253939: We cannot busy a page before doing pagefaults. Infact, it can deadlock against vnode lock, as it tries to vget(). Other functions, right now, have

svn commit: r253956 - head/sys/conf

2013-08-05 Thread Glen Barber
Author: gjb Date: Mon Aug 5 10:26:42 2013 New Revision: 253956 URL: http://svnweb.freebsd.org/changeset/base/253956 Log: Redirect svnversion stderr to /dev/null if we cannot determine the tree version, for example if the tree is checked out with an outdated svn from ports, but the base

svn commit: r253960 - head/sys/cam

2013-08-05 Thread Alexander Motin
Author: mav Date: Mon Aug 5 12:15:53 2013 New Revision: 253960 URL: http://svnweb.freebsd.org/changeset/base/253960 Log: MFprojects/camlock r249006: Pass SIM pointer as an argument to camisr_runqueue() instead of doneq pointer. Modified: head/sys/cam/cam_xpt.c Modified:

svn commit: r253965 - head/sys/dev/ixgbe

2013-08-05 Thread Jack F Vogel
Author: jfv Date: Mon Aug 5 16:16:50 2013 New Revision: 253965 URL: http://svnweb.freebsd.org/changeset/base/253965 Log: Correct a fat-finger in the last delta. MFC after: ASAP Modified: head/sys/dev/ixgbe/ixgbe.c Modified: head/sys/dev/ixgbe/ixgbe.c

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

2013-08-05 Thread Konstantin Belousov
Author: kib Date: Mon Aug 5 18:53:59 2013 New Revision: 253967 URL: http://svnweb.freebsd.org/changeset/base/253967 Log: The tmpfs_alloc_vp() is used to instantiate vnode for the tmpfs node, in particular, from the tmpfs_lookup VOP method. If LK_NOWAIT is not specified in the lkflags, the

svn commit: r253968 - in head/sys/arm: arm include

2013-08-05 Thread Andrew Turner
Author: andrew Date: Mon Aug 5 19:06:28 2013 New Revision: 253968 URL: http://svnweb.freebsd.org/changeset/base/253968 Log: When entering exception handlers we may not have an aligned stack. This is because an exception may happen at any time. The stack alignment rules on ARM EABI state

svn commit: r253969 - head/sys/kern

2013-08-05 Thread Konstantin Belousov
Author: kib Date: Mon Aug 5 19:42:03 2013 New Revision: 253969 URL: http://svnweb.freebsd.org/changeset/base/253969 Log: Do not override the ENOENT error for the empty path, or EFAULT errors from copyins, with the relative lookup check. Discussed with: rwatson Sponsored by: The

svn commit: r253970 - in head: sys/netinet6 sys/sys usr.sbin/ndp usr.sbin/rtadvctl usr.sbin/rtadvd usr.sbin/rtsold

2013-08-05 Thread Hiroki Sato
Author: hrs Date: Mon Aug 5 20:13:02 2013 New Revision: 253970 URL: http://svnweb.freebsd.org/changeset/base/253970 Log: - Use time_uptime instead of time_second in data structures for PF_INET6 in kernel. This fixes various malfunction when the wall time clock is changed. Bump

svn commit: r253971 - in head/sys: arm/arm arm/ti/omap4 boot/fdt/dts

2013-08-05 Thread Olivier Houchard
Author: cognet Date: Mon Aug 5 20:14:56 2013 New Revision: 253971 URL: http://svnweb.freebsd.org/changeset/base/253971 Log: Let the platform calculate the timer frequency at runtime, and use that for the omap4, instead of relying on the (wrong) value provided in the dts. Modified:

svn commit: r253973 - head/sys/ufs/ffs

2013-08-05 Thread Kirk McKusick
Author: mckusick Date: Mon Aug 5 22:01:16 2013 New Revision: 253973 URL: http://svnweb.freebsd.org/changeset/base/253973 Log: To better understand performance problems with journalled soft updates, we need to collect the highest level of allocation for each of the different soft update

svn commit: r253974 - head/sys/ufs/ffs

2013-08-05 Thread Kirk McKusick
Author: mckusick Date: Mon Aug 5 22:02:45 2013 New Revision: 253974 URL: http://svnweb.freebsd.org/changeset/base/253974 Log: With the addition of journalled soft updates, the newblk structures persist much longer than previously. Historically we had at most 100 entries; now the count may

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

2013-08-05 Thread Justin Hibbits
Author: jhibbits Date: Tue Aug 6 01:01:15 2013 New Revision: 253976 URL: http://svnweb.freebsd.org/changeset/base/253976 Log: Evict pages from the PTEG when it's full and trying to insert a new PTE, rather than panicking. Reviewed by: nwhitehorn MFC after:3 weeks Modified:

svn commit: r253977 - head/sys/dev/filemon

2013-08-05 Thread Hiroki Sato
Author: hrs Date: Tue Aug 6 02:14:30 2013 New Revision: 253977 URL: http://svnweb.freebsd.org/changeset/base/253977 Log: - Use pget(PGET_CANDEBUG | PGET_NOTWEXIT) to determine if the specified PID is valid for monitoring in FILEMON_SET_PID ioctl. - Set the monitored PID to -1 when the

Re: svn commit: r253887 - head/sys/dev/filemon

2013-08-05 Thread Hiroki Sato
Simon J. Gerraty s...@juniper.net wrote in 20130805201400.a181158...@chaos.jnpr.net: sj sj On Mon, 5 Aug 2013 13:22:06 +0900, Hiroki Sato writes: sj Simon J. Gerraty s...@juniper.net wrote sj in 20130804151754.8189758...@chaos.jnpr.net: sj sj I can test it for you. sj sj Okay, I will wait

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

2013-08-05 Thread Justin Hibbits
Author: jhibbits Date: Tue Aug 6 02:58:16 2013 New Revision: 253978 URL: http://svnweb.freebsd.org/changeset/base/253978 Log: Remove an unnecessary panic. The PVO's PTE entry and the PTEG's PTE entry may not match, if the PVO's PTE is invalid. Modified: head/sys/powerpc/aim/mmu_oea.c

svn commit: r253979 - head/sys/powerpc/ofw

2013-08-05 Thread Justin Hibbits
Author: jhibbits Date: Tue Aug 6 03:09:44 2013 New Revision: 253979 URL: http://svnweb.freebsd.org/changeset/base/253979 Log: Micro-optimize OFW syscons 8-bit blank. MFC after:1 week Modified: head/sys/powerpc/ofw/ofw_syscons.c Modified: head/sys/powerpc/ofw/ofw_syscons.c

svn commit: r253980 - in head: share/man/man4 sys/dev/ciss

2013-08-05 Thread Sean Bruno
Author: sbruno Date: Tue Aug 6 03:17:01 2013 New Revision: 253980 URL: http://svnweb.freebsd.org/changeset/base/253980 Log: Update ciss(4) with new models of raid controllers from HP Submitted by: scott.ben...@hp.com MFC after:2 weeks Sponsored by: Hewlett Packard Modified: