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

2014-07-01 Thread Matthew Fleming
On Tue, Jul 1, 2014 at 2:21 AM, Mateusz Guzik wrote: > Author: mjg > Date: Tue Jul 1 09:21:32 2014 > New Revision: 268087 > URL: http://svnweb.freebsd.org/changeset/base/268087 > > Log: > Don't call crcopysafe or uifind unnecessarily in execve. I'm not sure the code works. It gets a copy of t

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

2014-06-19 Thread Matthew Fleming
On Wed, Jun 18, 2014 at 10:28 PM, Hans Petter Selasky wrote: > Author: hselasky > Date: Thu Jun 19 05:28:42 2014 > New Revision: 267633 > URL: http://svnweb.freebsd.org/changeset/base/267633 > > Log: > Initialize sysctl OID structure by record. > > MFC after:2 weeks > > Modified: > head/

Re: svn commit: r265442 - head/sys/dev/vt

2014-05-06 Thread Matthew Fleming
On Tue, May 6, 2014 at 6:52 AM, Aleksandr Rybalko wrote: > Author: ray > Date: Tue May 6 13:52:13 2014 > New Revision: 265442 > URL: http://svnweb.freebsd.org/changeset/base/265442 > > Log: > Implement KDMKTONE ioctl. > > Submitted by: Matthew D.Fuller (original version) > MFC: 7

Re: svn commit: r265132 - in head: share/man/man4 sys/dev/null

2014-04-30 Thread Matthew Fleming
On Wed, Apr 30, 2014 at 7:48 AM, Ian Lepore wrote: > On Wed, 2014-04-30 at 06:20 +, Eitan Adler wrote: >> Author: eadler >> Date: Wed Apr 30 06:20:48 2014 >> New Revision: 265132 >> URL: http://svnweb.freebsd.org/changeset/base/265132 >> >> Log: >> Add a /dev/full device. >> >> /dev/full i

Re: svn commit: r257350 - head

2013-10-29 Thread Matthew Fleming
On Tue, Oct 29, 2013 at 10:46 AM, Xin LI wrote: > Author: delphij > Date: Tue Oct 29 17:46:26 2013 > New Revision: 257350 > URL: http://svnweb.freebsd.org/changeset/base/257350 > > Log: > In r257079, SRCDIR is pointed to ${.CURDIR} when not set. However, > Makefile.inc1 is being called in su

Re: svn commit: r255963 - in head: etc/mtree etc/periodic/daily usr.bin/dig

2013-10-02 Thread Matthew Fleming
On Wed, Oct 2, 2013 at 2:30 AM, Dag-Erling Smørgrav wrote: > Matthew Fleming writes: > > It looks like {_BSD.debug.list} is no longer in FILES. [...] This > > .endif needs to be removed too, as the MK_BIND_LIBS was nested inside > > MK_BIND check. > > Please fix

Re: svn commit: r255963 - in head: etc/mtree etc/periodic/daily usr.bin/dig

2013-10-01 Thread Matthew Fleming
On Tue, Oct 1, 2013 at 12:19 AM, Dag-Erling Smørgrav wrote: > Author: des > Date: Tue Oct 1 07:19:23 2013 > New Revision: 255963 > URL: http://svnweb.freebsd.org/changeset/base/255963 > > Log: > Odds and ends left over from BIND and unnoticed because they didn't > affect 'make universe'. > >

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

2013-09-22 Thread Matthew Fleming
On Sun, Sep 22, 2013 at 1:49 PM, Attilio Rao wrote: > On Sun, Sep 22, 2013 at 9:34 PM, Konstantin Belousov > wrote: > > On Sun, Sep 22, 2013 at 11:19:16PM +0300, Konstantin Belousov wrote: > >> On Sun, Sep 22, 2013 at 01:14:21PM -0700, Matthew Fleming wrote: > >> &

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

2013-09-22 Thread Matthew Fleming
On Sun, Sep 22, 2013 at 12:23 PM, Konstantin Belousov wrote: > Author: kib > Date: Sun Sep 22 19:23:48 2013 > New Revision: 255797 > URL: http://svnweb.freebsd.org/changeset/base/255797 > > Log: > Increase the chance of the buffer write from the bufdaemon helper > context to succeed. If the l

Re: svn commit: r255439 - head/sys/dev/cpuctl

2013-09-10 Thread Matthew Fleming
On Mon, Sep 9, 2013 at 10:17 PM, Konstantin Belousov wrote: > Author: kib > Date: Tue Sep 10 05:17:53 2013 > New Revision: 255439 > URL: http://svnweb.freebsd.org/changeset/base/255439 > > Log: > Call free() on the pointer returned from malloc(). > > Reported and tested by: Oliver Pinter

Re: svn commit: r253802 - head/contrib/llvm/tools/clang/lib/Headers

2013-07-30 Thread Matthew Fleming
On Tue, Jul 30, 2013 at 5:33 AM, Dimitry Andric wrote: > Author: dim > Date: Tue Jul 30 12:33:21 2013 > New Revision: 253802 > URL: http://svnweb.freebsd.org/changeset/base/253802 > > Log: > Pull in r186696 from upstream clang trunk: > > This patch implements __get_cpuid_max() as an inline

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

RE: svn commit: r208003 - in head/sys: kern sys

2010-05-17 Thread Matthew Fleming
From: Kostik Belousov [mailto:kostik...@gmail.com] > Essentially, my argument is that whatever you do in VOP_ADVLOCKPURGE, > can be and should be done in VOP_RECLAIM. This would also cover the v_data > issue. I disagree about the "should". I believe that if BSD wants to allow overriding lf_advl

RE: svn commit: r208003 - in head/sys: kern sys

2010-05-17 Thread Matthew Fleming
t; Log: > > Add VOP_ADVLOCKPURGE so that the file system is called when purging > > locks (in the case where the VFS impl isn't using lf_*) > > > > Submitted by: Matthew Fleming > > Reviewed by:zml, dfr > > After looking at what