svn commit: r209583 - head/sbin/devd

2010-06-28 Thread Warner Losh
Author: imp Date: Tue Jun 29 03:52:12 2010 New Revision: 209583 URL: http://svn.freebsd.org/changeset/base/209583 Log: Expand system into my_system, and add the necessary tidyness that we need. Close the pidfile. Then close all descriptors >= 3 to avoid information leakage to children.

Re: svn commit: r208752 - head/sys/cam

2010-06-28 Thread Matthew Jacob
Never mind, reproduced it. A 'camcontrol devlist -v' on this system would be helpful. ___ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.

Re: svn commit: r208752 - head/sys/cam

2010-06-28 Thread Matthew Jacob
On 6/28/2010 2:23 PM, Chagin Dmitry wrote: On Wed, Jun 02, 2010 at 06:06:32PM +, Matt Jacob wrote: Author: mjacob Date: Wed Jun 2 18:06:32 2010 New Revision: 208752 URL: http://svn.freebsd.org/changeset/base/208752 Log: Protect periph drivers list and rearrange things to minimize th

Re: svn commit: r209582 - head/sys/kern

2010-06-28 Thread Garrett Cooper
On Mon, Jun 28, 2010 at 6:42 PM, Doug Barton wrote: > On 06/28/10 18:04, Doug Barton wrote: >> Author: dougb >> Date: Tue Jun 29 01:04:24 2010 >> New Revision: 209582 >> URL: http://svn.freebsd.org/changeset/base/209582 >> >> Log: >>   If i is going to be used in the loop unconditionally the decla

Re: svn commit: r209582 - head/sys/kern

2010-06-28 Thread Doug Barton
On 06/28/10 18:04, Doug Barton wrote: > Author: dougb > Date: Tue Jun 29 01:04:24 2010 > New Revision: 209582 > URL: http://svn.freebsd.org/changeset/base/209582 > > Log: > If i is going to be used in the loop unconditionally the declaration > has to be unconditional as well. > > Conical

svn commit: r209582 - head/sys/kern

2010-06-28 Thread Doug Barton
Author: dougb Date: Tue Jun 29 01:04:24 2010 New Revision: 209582 URL: http://svn.freebsd.org/changeset/base/209582 Log: If i is going to be used in the loop unconditionally the declaration has to be unconditional as well. Conical head covering to: kib Modified: head/sys/kern/sysv_

Re: svn commit: r208752 - head/sys/cam

2010-06-28 Thread Chagin Dmitry
On Wed, Jun 02, 2010 at 06:06:32PM +, Matt Jacob wrote: > Author: mjacob > Date: Wed Jun 2 18:06:32 2010 > New Revision: 208752 > URL: http://svn.freebsd.org/changeset/base/208752 > > Log: > Protect periph drivers list and rearrange things to minimize the chance of > stepping oneself duri

Re: svn commit: r209578 - head/sys/sys

2010-06-28 Thread Matthew Fleming
On Mon, Jun 28, 2010 at 10:59 AM, Konstantin Belousov wrote: > Author: kib > Date: Mon Jun 28 17:59:45 2010 > New Revision: 209578 > URL: http://svn.freebsd.org/changeset/base/209578 > > Log: >  Use C99 initializers for the struct sysent generated by MAKE_SYSENT(). > >  MFC after:    1 week > > Mo

svn commit: r209580 - head/sys/kern

2010-06-28 Thread Konstantin Belousov
Author: kib Date: Mon Jun 28 18:12:42 2010 New Revision: 209580 URL: http://svn.freebsd.org/changeset/base/209580 Log: Despite system call deregistration drains the threads executing System V shm syscalls, and initial check for the number of allocated segments in the module deinitialization

svn commit: r209579 - in head/sys: compat/freebsd32 kern sys

2010-06-28 Thread Konstantin Belousov
Author: kib Date: Mon Jun 28 18:06:46 2010 New Revision: 209579 URL: http://svn.freebsd.org/changeset/base/209579 Log: Count number of threads that enter and leave dynamically registered syscalls. On the dynamic syscall deregistration, wait until all threads leave the syscall code. This some

svn commit: r209578 - head/sys/sys

2010-06-28 Thread Konstantin Belousov
Author: kib Date: Mon Jun 28 17:59:45 2010 New Revision: 209578 URL: http://svn.freebsd.org/changeset/base/209578 Log: Use C99 initializers for the struct sysent generated by MAKE_SYSENT(). MFC after:1 week Modified: head/sys/sys/sysent.h Modified: head/sys/sys/sysent.h

svn commit: r209577 - head/sys/kern

2010-06-28 Thread Attilio Rao
Author: attilio Date: Mon Jun 28 17:45:00 2010 New Revision: 209577 URL: http://svn.freebsd.org/changeset/base/209577 Log: Fix a lock leak in the deadlock resolver in case the ticks counter wrapped up. Sponsored by: Sandvine Incorporated Submitted by: pluknet Reported by: Anton Yuzh

Re: svn commit: r209567 - head/usr.bin/lock

2010-06-28 Thread Bruce Evans
On Mon, 28 Jun 2010, Gavin Atkinson wrote: Log: Make WARNS=6 safe. This mainly breaks the warning. Modified: head/usr.bin/lock/lock.c == --- head/usr.bin/lock/lock.cMon Jun 28 08:10:55 2010(r209566) +++

svn commit: r209571 - in head/usr.bin/locate: bigram code

2010-06-28 Thread Gavin Atkinson
Author: gavin Date: Mon Jun 28 12:04:55 2010 New Revision: 209571 URL: http://svn.freebsd.org/changeset/base/209571 Log: Various changes to make locate compilable with WARNS=6. Note that there is still one issue on FreeBSD/arm (signed vs unsigned char) which prevents actually bumping this t

svn commit: r209570 - head/usr.bin/tcopy

2010-06-28 Thread Gavin Atkinson
Author: gavin Date: Mon Jun 28 12:00:20 2010 New Revision: 209570 URL: http://svn.freebsd.org/changeset/base/209570 Log: Make WARNS=6 safe, mainly by casting to intmax_t and printing with %ju where needed. Also, fix bad indentation on lines already affected by the above changes. Tested

svn commit: r209567 - head/usr.bin/lock

2010-06-28 Thread Gavin Atkinson
Author: gavin Date: Mon Jun 28 08:30:10 2010 New Revision: 209567 URL: http://svn.freebsd.org/changeset/base/209567 Log: Make WARNS=6 safe. Tested by:make universe Modified: head/usr.bin/lock/Makefile head/usr.bin/lock/lock.c Modified: head/usr.bin/lock/Makefile ==

svn commit: r209564 - head/etc/mtree

2010-06-28 Thread Pawel Jakub Dawidek
Author: pjd Date: Mon Jun 28 08:05:30 2010 New Revision: 209564 URL: http://svn.freebsd.org/changeset/base/209564 Log: Use spaces, not tabs. Modified: head/etc/mtree/BSD.usr.dist Modified: head/etc/mtree/BSD.usr.dist ===