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

2010-06-29 Thread Kostik Belousov
On Mon, Jun 28, 2010 at 02:07:02PM -0700, Matthew Fleming wrote: > 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 initializer

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

2010-06-29 Thread mdf
2010/6/29 Kostik Belousov : > On Mon, Jun 28, 2010 at 02:07:02PM -0700, Matthew Fleming wrote: >> 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 >

svn commit: r209587 - head/sys/sys

2010-06-29 Thread Konstantin Belousov
Author: kib Date: Tue Jun 29 14:31:49 2010 New Revision: 209587 URL: http://svn.freebsd.org/changeset/base/209587 Log: Revert r209578: Use C99 initializers for the struct sysent generated by MAKE_SYSENT(). C++ does not have designator-initializer facility of C99, not using this in the he

svn commit: r209588 - head/share/man/man3

2010-06-29 Thread John Baldwin
Author: jhb Date: Tue Jun 29 14:32:01 2010 New Revision: 209588 URL: http://svn.freebsd.org/changeset/base/209588 Log: - The ETIMEDOUT error applies to pthread_timedjoin_np(), not pthread_join(). - Tweak wording in history section for pthread_timedjoin_np(). MFC after:3 days Modified

svn commit: r209589 - head/sys/netinet/ipfw

2010-06-29 Thread Gleb Smirnoff
Author: glebius Date: Tue Jun 29 16:57:30 2010 New Revision: 209589 URL: http://svn.freebsd.org/changeset/base/209589 Log: After processing the O_SKIPTO opcode our cmd points to the next rule, and "match" processing at the end of inner loop would look ahead into the next rule, which is incor

svn commit: r209590 - head/sys/cam

2010-06-29 Thread Matt Jacob
Author: mjacob Date: Tue Jun 29 17:10:55 2010 New Revision: 209590 URL: http://svn.freebsd.org/changeset/base/209590 Log: Don't lock buses around a call to xptperiphlistmatch- the buses will be locked at appropriate places. MFC after:1 week X-MFC:208752 Modified:

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

2010-06-29 Thread Matthew Jacob
Fixed, thanks. ___ 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.org"

svn commit: r209591 - head/sys/powerpc/include

2010-06-29 Thread Marcel Moolenaar
Author: marcel Date: Tue Jun 29 19:07:44 2010 New Revision: 209591 URL: http://svn.freebsd.org/changeset/base/209591 Log: Fix profiling (part 1): o Functions are 4-byte aligned for Book-E. o We get compiled with -DPROF and not -DGPROF if profiling is enabled. Modified: head/sys/

svn commit: r209592 - in head/sys: compat/linux kern sys

2010-06-29 Thread John Baldwin
Author: jhb Date: Tue Jun 29 20:41:52 2010 New Revision: 209592 URL: http://svn.freebsd.org/changeset/base/209592 Log: Tweak the in-kernel API for sending signals to threads: - Rename tdsignal() to tdsendsignal() and make it private to kern_sig.c. - Add tdsignal() and tdksignal() routines th

svn commit: r209595 - head/sys/kern

2010-06-29 Thread John Baldwin
Author: jhb Date: Tue Jun 29 20:44:19 2010 New Revision: 209595 URL: http://svn.freebsd.org/changeset/base/209595 Log: Send SIGPIPE to the thread that issued the offending system call rather than to the entire process. Reported by: Anit Chakraborty Reviewed by: kib, deischen (concept)

svn commit: r209596 - head/sys/sys

2010-06-29 Thread John Baldwin
Author: jhb Date: Tue Jun 29 20:55:12 2010 New Revision: 209596 URL: http://svn.freebsd.org/changeset/base/209596 Log: Sort function prototypes (since I didn't manage to insert tdksignal() correctly). Modified: head/sys/sys/signalvar.h Modified: head/sys/sys/signalvar.h ===

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

2010-06-29 Thread Ed Schouten
* John Baldwin wrote: > Log: > Send SIGPIPE to the thread that issued the offending system call > rather than to the entire process. Should something similar be used inside the TTY layer, where reads/writes may cause signals to be generated? Greetings, -- Ed Schouten WWW: http://80386.nl

svn commit: r209597 - head/sys/dev/bwi

2010-06-29 Thread Weongyo Jeong
Author: weongyo Date: Tue Jun 29 21:52:40 2010 New Revision: 209597 URL: http://svn.freebsd.org/changeset/base/209597 Log: Fixes NULL pointer reference that it's occurred when the state is changed to RUN because ic->ic_newassoc isn't set anywhere now. In the previous bwi_newassoc() is used

svn commit: r209598 - head/sys/dev/bwi

2010-06-29 Thread Weongyo Jeong
Author: weongyo Date: Tue Jun 29 21:56:42 2010 New Revision: 209598 URL: http://svn.freebsd.org/changeset/base/209598 Log: Initializes the ratectl for a node when the state is changed to RUN. This prevents a kernel fault by dividing with zero because the initial rate was 0 and didn't be init

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

2010-06-29 Thread Jilles Tjoelker
On Tue, Jun 29, 2010 at 11:05:22PM +0200, Ed Schouten wrote: > * John Baldwin wrote: > > Log: > > Send SIGPIPE to the thread that issued the offending system call > > rather than to the entire process. > Should something similar be used inside the TTY layer, where > reads/writes may cause sig

svn commit: r209599 - head/sys/dev/mpt

2010-06-29 Thread Kenneth D. Merry
Author: ken Date: Tue Jun 29 22:07:53 2010 New Revision: 209599 URL: http://svn.freebsd.org/changeset/base/209599 Log: Change the mpt driver to allow larger I/O sizes. The mpt driver previously didn't report a 'maxio' size to CAM, and so the da(4) driver limited I/O sizes to DFLTPHYS (64K

svn commit: r209600 - head/bin/sh

2010-06-29 Thread Jilles Tjoelker
Author: jilles Date: Tue Jun 29 22:37:45 2010 New Revision: 209600 URL: http://svn.freebsd.org/changeset/base/209600 Log: sh: Forget about terminated background processes sooner. Unless $! has been referenced for a particular job or $! still contains that job's pid, forget about it after

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

2010-06-29 Thread Jack F Vogel
Author: jfv Date: Wed Jun 30 01:01:06 2010 New Revision: 209602 URL: http://svn.freebsd.org/changeset/base/209602 Log: Add a new sysctl option, this will allow one to limit the advertised speed of an SFP+ to 1G, effectively "forcing" link at that lower speed. It is off by default and is en

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

2010-06-29 Thread Jack F Vogel
Author: jfv Date: Wed Jun 30 01:10:08 2010 New Revision: 209603 URL: http://svn.freebsd.org/changeset/base/209603 Log: BAH, I apologize, the wrong version of the code got fat fingered in place, this is the correct version that actually works... MFC: in a week Modified: head/sys/dev/

svn commit: r209604 - head/lib/libc/gmon

2010-06-29 Thread Marcel Moolenaar
Author: marcel Date: Wed Jun 30 01:40:25 2010 New Revision: 209604 URL: http://svn.freebsd.org/changeset/base/209604 Log: On powerpc, calculate s_scale using the non-FP version previously specific to hp300. Since FreeBSD does not support hp300, hp300 has been removed from the condition altog

svn commit: r209605 - head/sys/kern

2010-06-29 Thread Alan Cox
Author: alc Date: Wed Jun 30 04:52:42 2010 New Revision: 209605 URL: http://svn.freebsd.org/changeset/base/209605 Log: Improve bufdone_finish()'s handling of the bogus page. Specifically, if one or more mappings to the bogus page must be replaced, call pmap_qenter() just once. Previously,