svn commit: r260536 - head/sys/dev/usb/controller

2014-01-11 Thread Hans Petter Selasky
Author: hselasky Date: Sat Jan 11 08:16:31 2014 New Revision: 260536 URL: http://svnweb.freebsd.org/changeset/base/260536 Log: Optimise interrupt logic. Technically writing a zero to the XHCI USB status register has no effect. Can happen when the interrupt vector is shared. MFC after:

svn commit: r260540 - in head: sbin/route usr.bin/netstat

2014-01-11 Thread Alexander V. Chernikov
Author: melifaro Date: Sat Jan 11 09:44:00 2014 New Revision: 260540 URL: http://svnweb.freebsd.org/changeset/base/260540 Log: Bump dates in nestat(1) and route(8) man pages. Fix several small errors introduced by r260524. Suggested by: glebius MFC after:2 weeks Modified:

svn commit: r260541 - in head/sys/cam: . scsi

2014-01-11 Thread Alexander Motin
Author: mav Date: Sat Jan 11 13:35:36 2014 New Revision: 260541 URL: http://svnweb.freebsd.org/changeset/base/260541 Log: Take additional reference on SCSI probe periph to cover its freeze count. Otherwise periph may be invalidated and freed before single-stepping freeze is dropped,

Re: svn commit: r260541 - in head/sys/cam: . scsi

2014-01-11 Thread Andriy Gapon
on 11/01/2014 15:35 Alexander Motin said the following: Author: mav Date: Sat Jan 11 13:35:36 2014 New Revision: 260541 URL: http://svnweb.freebsd.org/changeset/base/260541 Log: Take additional reference on SCSI probe periph to cover its freeze count. Otherwise periph may be

Re: svn commit: r260541 - in head/sys/cam: . scsi

2014-01-11 Thread Alexander Motin
On 11.01.2014 16:01, Andriy Gapon wrote: on 11/01/2014 15:35 Alexander Motin said the following: Author: mav Date: Sat Jan 11 13:35:36 2014 New Revision: 260541 URL: http://svnweb.freebsd.org/changeset/base/260541 Log: Take additional reference on SCSI probe periph to cover its freeze

Re: svn commit: r260541 - in head/sys/cam: . scsi

2014-01-11 Thread Andriy Gapon
on 11/01/2014 16:07 Alexander Motin said the following: Could you please resolve xpt_done_process+0x50a ? Sure: (kgdb) fr 9 #9 0x8029e9ea in xpt_done_process (ccb_h=value optimized out) at /usr/src/sys/cam/cam_xpt.c:5250 5250mtx_lock(devq-send_mtx); (kgdb) list 5245

Re: svn commit: r260541 - in head/sys/cam: . scsi

2014-01-11 Thread Alexander Motin
On 11.01.2014 16:17, Andriy Gapon wrote: on 11/01/2014 16:07 Alexander Motin said the following: Could you please resolve xpt_done_process+0x50a ? Sure: (kgdb) fr 9 #9 0x8029e9ea in xpt_done_process (ccb_h=value optimized out) at /usr/src/sys/cam/cam_xpt.c:5250 5250

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

2014-01-11 Thread Kevin Lo
Author: kevlo Date: Sat Jan 11 14:48:16 2014 New Revision: 260542 URL: http://svnweb.freebsd.org/changeset/base/260542 Log: Fix a logic error when checking if Tx power entries are greater than 31. Modified: head/sys/dev/usb/wlan/if_run.c Modified: head/sys/dev/usb/wlan/if_run.c

svn commit: r260543 - head/share/misc

2014-01-11 Thread Thomas Zander
Author: riggs (ports committer) Date: Sat Jan 11 14:56:04 2014 New Revision: 260543 URL: http://svnweb.freebsd.org/changeset/base/260543 Log: Add myself as a ports committer Approved by: thierry (mentor) Modified: head/share/misc/committers-ports.dot Modified:

svn commit: r260544 - head/bin/cat

2014-01-11 Thread Adrian Chadd
Author: adrian Date: Sat Jan 11 15:01:30 2014 New Revision: 260544 URL: http://svnweb.freebsd.org/changeset/base/260544 Log: Close the newly-created FD if the pathname is too long. Coverity: CID 1007204 Sponsored by: Netflix, Inc. Modified: head/bin/cat/cat.c Modified:

svn commit: r260545 - head/sys/fs/ext2fs

2014-01-11 Thread Pedro F. Giffuni
Author: pfg Date: Sat Jan 11 15:19:04 2014 New Revision: 260545 URL: http://svnweb.freebsd.org/changeset/base/260545 Log: ext2fs: fix inode flag conversion. After r252890 we are naively attempting to pass through the inode flags. This is technically incorrect as the ext2 inode flags

svn commit: r260547 - head/sys/cam/scsi

2014-01-11 Thread Alexander Motin
Author: mav Date: Sat Jan 11 16:37:20 2014 New Revision: 260547 URL: http://svnweb.freebsd.org/changeset/base/260547 Log: Fix for r260541: do not drop periph reference when request is restarted. CAM_DEV_QFREEZE flag is still there and it will freeze device again. Modified:

svn commit: r260548 - head/sys/netpfil/ipfw

2014-01-11 Thread Alexander V. Chernikov
Author: melifaro Date: Sat Jan 11 16:50:41 2014 New Revision: 260548 URL: http://svnweb.freebsd.org/changeset/base/260548 Log: We don't need chain write lock since we're not modifying its contents. LibAliasSetAddress() uses its own mutex to serialize changes. While here, convert

svn commit: r260549 - head/sys/cam

2014-01-11 Thread Alexander Motin
Author: mav Date: Sat Jan 11 16:52:09 2014 New Revision: 260549 URL: http://svnweb.freebsd.org/changeset/base/260549 Log: Move xpt_run_devq() call before request completion callback where it was originally. I am not sure why exactly have I moved it during one of many refactorings

svn commit: r260550 - head/usr.sbin/bhyvectl

2014-01-11 Thread Neel Natu
Author: neel Date: Sat Jan 11 17:37:53 2014 New Revision: 260550 URL: http://svnweb.freebsd.org/changeset/base/260550 Log: Fix amd64 build breakage caused by r260532. Submitted by: Marcus Karlsson (m...@acc.umu.se) Pointy hat to:me Modified: head/usr.sbin/bhyvectl/bhyvectl.c

svn commit: r260551 - head/sys/netpfil/ipfw

2014-01-11 Thread Alexander V. Chernikov
Author: melifaro Date: Sat Jan 11 18:27:34 2014 New Revision: 260551 URL: http://svnweb.freebsd.org/changeset/base/260551 Log: Revert r260548. We really should not use IPFW_WLOCK() here but this requires some more playing with IPFW_UH_WLOCK(). Leave till later. Modified:

svn commit: r260553 - head/lib/libcxxrt

2014-01-11 Thread David Chisnall
Author: theraven Date: Sat Jan 11 19:02:17 2014 New Revision: 260553 URL: http://svnweb.freebsd.org/changeset/base/260553 Log: Add missing C++11 typeinfos to the libcxxrt version script. PR: 185663 MFC after:1 week Modified: head/lib/libcxxrt/Version.map Modified:

svn commit: r260554 - head/lib/libmd

2014-01-11 Thread John-Mark Gurney
Author: jmg Date: Sat Jan 11 20:49:22 2014 New Revision: 260554 URL: http://svnweb.freebsd.org/changeset/base/260554 Log: use a real uint64_t instead of writing code to emulate one.. I verified w/ a: dd if=/dev/zero bs=1m count=5000 | sha256

svn commit: r260555 - head/usr.bin/find

2014-01-11 Thread Jilles Tjoelker
Author: jilles Date: Sat Jan 11 21:12:27 2014 New Revision: 260555 URL: http://svnweb.freebsd.org/changeset/base/260555 Log: find: Allow -type d without statting everything. fts(3) detects directories even in FTS_NOSTAT mode (so it can descend into them). No functional change is

svn commit: r260556 - head/lib/libc/sys

2014-01-11 Thread Jilles Tjoelker
Author: jilles Date: Sat Jan 11 22:00:16 2014 New Revision: 260556 URL: http://svnweb.freebsd.org/changeset/base/260556 Log: Add some missing .Nm for newer syscalls in existing man pages. MFC after:1 week Modified: head/lib/libc/sys/accept.2 head/lib/libc/sys/chflags.2