Re: svn commit: r300233 - stable/10/share/mk

2016-05-29 Thread Julian Elischer
On 20/05/2016 5:41 AM, Bryan Drewery wrote: Author: bdrewery Date: Thu May 19 21:41:35 2016 New Revision: 300233 URL: https://svnweb.freebsd.org/changeset/base/300233 I always assumed there was a good reason for not allowing that. is there not a "WITH_FOO" or "WITHOUT_FOO" for every MK_FOO? L

svn commit: r302800 - stable/10/sbin/kldstat

2016-07-13 Thread Julian Elischer
Author: julian Date: Thu Jul 14 04:30:42 2016 New Revision: 302800 URL: https://svnweb.freebsd.org/changeset/base/302800 Log: MFH: r297023 Add the ability to print out the module specific information in likely formats. Among other things this gives us the ability to find out the syscall

svn commit: r303395 - stable/10/sys/sys

2016-07-27 Thread Julian Elischer
Author: julian Date: Wed Jul 27 16:27:41 2016 New Revision: 303395 URL: https://svnweb.freebsd.org/changeset/base/303395 Log: MFH: r303287 Split MAKE_SYSENT into two parts so that the initializer part can be used separately if one wants to embed the sysent into a larger structure. Modifi

svn commit: r306824 - stable/10/sys/dev/hwpmc

2016-10-07 Thread Julian Elischer
Author: julian Date: Fri Oct 7 19:28:45 2016 New Revision: 306824 URL: https://svnweb.freebsd.org/changeset/base/306824 Log: MFH: r259647 o Remove assertions on ipa_version as sometimes the version detection using cpuid can be quirky (this is the case of VMWare without the vPMC

svn commit: r306935 - stable/10/sys/kern

2016-10-09 Thread Julian Elischer
Author: julian Date: Mon Oct 10 04:57:33 2016 New Revision: 306935 URL: https://svnweb.freebsd.org/changeset/base/306935 Log: While the thread is sleeping in taskqueue_drain_all() it is posible that the queue entry it is looking at is removed from the queue, but we make no effort to account

svn commit: r309383 - stable/10/sys/kern

2016-12-01 Thread Julian Elischer
Author: julian Date: Fri Dec 2 05:24:51 2016 New Revision: 309383 URL: https://svnweb.freebsd.org/changeset/base/309383 Log: MFH: r306306 Give the user a clue as to which process hit maxfiles. Sponsored by: Panzura Modified: stable/10/sys/kern/kern_descrip.c Directory Properties:

svn commit: r309387 - in stable/10/sys: modules/netgraph/checksum netgraph

2016-12-01 Thread Julian Elischer
Author: julian Date: Fri Dec 2 05:38:25 2016 New Revision: 309387 URL: https://svnweb.freebsd.org/changeset/base/309387 Log: MFH: r303612 netgraph module for reconstructing checksums PR: 206108 Submitted by: Dmitry Vagin daemon.ham...@ya.ru Added: stable/10/sys/modules

svn commit: r309388 - stable/10/share/man/man4

2016-12-01 Thread Julian Elischer
Author: julian Date: Fri Dec 2 05:39:10 2016 New Revision: 309388 URL: https://svnweb.freebsd.org/changeset/base/309388 Log: MFH: r303613 Man page for the new checksum netgraph module. PR: 206186 Submitted by: Dmitry Vagin Added: stable/10/share/man/man4/ng_checksum.4

svn commit: r309389 - stable/10/sys/netgraph

2016-12-01 Thread Julian Elischer
Author: julian Date: Fri Dec 2 05:42:04 2016 New Revision: 309389 URL: https://svnweb.freebsd.org/changeset/base/309389 Log: MFH: r303611 slite style changes. There is an incoming patch that rewrites a lot of this module and I want to get the style and whitespace changes in a separate

svn commit: r309395 - stable/10/share/man/man9

2016-12-01 Thread Julian Elischer
Author: julian Date: Fri Dec 2 06:27:14 2016 New Revision: 309395 URL: https://svnweb.freebsd.org/changeset/base/309395 Log: MFH: r297012 Add a few details that make it easier to use this macro. Sponsored by: Panzura inc Modified: stable/10/share/man/man9/SYSCALL_MODULE.9 Directory

svn commit: r309396 - stable/10/share/man/man9

2016-12-01 Thread Julian Elischer
Author: julian Date: Fri Dec 2 06:27:54 2016 New Revision: 309396 URL: https://svnweb.freebsd.org/changeset/base/309396 Log: MFH: r297015 Change a little to match what appears to be the right way of specifying an argument (from looking at other man pages) Sponsored by: Panzura inc

svn commit: r309398 - stable/10/usr.sbin/bhyve

2016-12-02 Thread Julian Elischer
Author: julian Date: Fri Dec 2 08:12:51 2016 New Revision: 309398 URL: https://svnweb.freebsd.org/changeset/base/309398 Log: MFH: r306554 Use accept4 with O_NONBLOCK rather than accept + fcntl Modified: stable/10/usr.sbin/bhyve/dbgport.c Directory Properties: stable/10/ (props chang

svn commit: r309399 - stable/10/usr.sbin/bhyve

2016-12-02 Thread Julian Elischer
Author: julian Date: Fri Dec 2 08:15:52 2016 New Revision: 309399 URL: https://svnweb.freebsd.org/changeset/base/309399 Log: MFH: r307917 accept4 actually expect SOCK_NONBLOCK and not O_NONBLOCK Reported by: jhb Pointyhat to: bapt Modified: stable/10/usr.sbin/bhyve/dbgport.c Dir

svn commit: r309401 - stable/10/usr.sbin/bhyve

2016-12-02 Thread Julian Elischer
Author: julian Date: Fri Dec 2 08:21:25 2016 New Revision: 309401 URL: https://svnweb.freebsd.org/changeset/base/309401 Log: MFH: r309295 bhyve: stability and performance improvement for dbgport The TCP server implementation in dbgport does not track clients, so it may try to write

Re: svn commit: r280224 - stable/10/sys/sys

2015-03-18 Thread Julian Elischer
On 3/18/15 11:20 PM, Robert Watson wrote: Author: rwatson Date: Wed Mar 18 15:20:08 2015 New Revision: 280224 URL: https://svnweb.freebsd.org/changeset/base/280224 Log: Merge r263232 from head to stable/10: Rename capability.h to capsicum.h: the original name conflicts with the

Re: svn commit: r282427 - stable/10/sys/net

2015-05-04 Thread Julian Elischer
On 5/5/15 3:33 AM, Alexander Motin wrote: Author: mav Date: Mon May 4 19:33:51 2015 New Revision: 282427 URL: https://svnweb.freebsd.org/changeset/base/282427 Log: MFC r281765: Activate write-only optimization if bpf device opened with O_WRONLY. dhclient opens bpf as write-only to

svn commit: r282979 - stable/10/lib/libc/gen

2015-05-15 Thread Julian Elischer
Author: julian Date: Fri May 15 15:49:24 2015 New Revision: 282979 URL: https://svnweb.freebsd.org/changeset/base/282979 Log: MFH: r282485 Tweak seekdir, telldir and readdir so that when htere are deletes going on, as seek to teh last location saved will still work. This is needed for Sa

svn commit: r283552 - stable/10/share/man/man9

2015-05-25 Thread Julian Elischer
Author: julian Date: Tue May 26 02:18:10 2015 New Revision: 283552 URL: https://svnweb.freebsd.org/changeset/base/283552 Log: MFH: r283105 Only several years late, catch the psignal man page up to the fact that psignal has been renamed to kern_psignal since 9.0. Modified: stable/10/shar

Re: svn commit: r283552 - stable/10/share/man/man9

2015-05-25 Thread Julian Elischer
On 5/26/15 10:50 AM, Benjamin Kaduk wrote: On Mon, May 25, 2015 at 10:18 PM, Julian Elischer mailto:jul...@freebsd.org>> wrote: Author: julian Date: Tue May 26 02:18:10 2015 New Revision: 283552 URL: https://svnweb.freebsd.org/changeset/base/283552 Log: MFH: r

svn commit: r283554 - stable/10/share/man/man9

2015-05-25 Thread Julian Elischer
Author: julian Date: Tue May 26 03:58:18 2015 New Revision: 283554 URL: https://svnweb.freebsd.org/changeset/base/283554 Log: MFH: r283114 Fixup to the kern_psignal manpage r283105 misspelled kern_psignal as kernel_psignal in one occurrence, and added trailing whitespace. Whil

svn commit: r287090 - stable/10/sys/modules/dtrace/dtraceall

2015-08-23 Thread Julian Elischer
Author: julian Date: Mon Aug 24 03:41:14 2015 New Revision: 287090 URL: https://svnweb.freebsd.org/changeset/base/287090 Log: MFH: r273762 MFH: r276304 Allow loading of dtraceall without nfscl if what you really want is nfsclient Obtained from:Panzura tree and Rick Maclem Mo

svn commit: r287091 - stable/10/etc

2015-08-23 Thread Julian Elischer
Author: julian Date: Mon Aug 24 03:51:18 2015 New Revision: 287091 URL: https://svnweb.freebsd.org/changeset/base/287091 Log: MFH: r284691 MFH: r284920 Remove 16 rules and replace by 2 by using a table. I've been doing this ever since there were tables. I could make more efficie

svn commit: r292770 - stable/10/sys/netgraph

2015-12-27 Thread Julian Elischer
Author: julian Date: Sun Dec 27 13:37:14 2015 New Revision: 292770 URL: https://svnweb.freebsd.org/changeset/base/292770 Log: MFH: r278640 Revise default limit for maximum of netgraph data items. With modern internet speeds the limit can be reached even on a single L2TP link. Modified:

svn commit: r326568 - stable/10/sys/netgraph

2017-12-05 Thread Julian Elischer
Author: julian Date: Tue Dec 5 14:46:12 2017 New Revision: 326568 URL: https://svnweb.freebsd.org/changeset/base/326568 Log: Steps to Reproduce: #ngctl mkpeer ipfw: patch 7 in #ngctl name ipfw:7 tcp_rst #ngctl connect ipfw: tcp_rst: 8 out #ngctl msg tcp_rst: setconfig { count=1 csum_fla

Re: svn commit: r354393 - stable/10

2019-11-06 Thread Julian Elischer
On 11/6/19 9:29 AM, Warner Losh wrote: On Wed, Nov 6, 2019 at 10:23 AM Glen Barber > wrote: On Wed, Nov 06, 2019 at 09:06:24AM -0800, Rodney W. Grimes wrote: > > Author: imp > > Date: Wed NovĀ  6 14:34:14 2019 > > New Revision: 354393 > > URL: https

svn commit: r312869 - stable/10/share/zoneinfo

2017-01-27 Thread Julian Elischer
Author: julian Date: Fri Jan 27 09:04:29 2017 New Revision: 312869 URL: https://svnweb.freebsd.org/changeset/base/312869 Log: MFH: r308671 When you select make OLDTIMEZONES=1 then you need a few added directories to be made or the command fails Sponsored by: panzura Modified: stab

svn commit: r312870 - stable/10/share/zoneinfo

2017-01-27 Thread Julian Elischer
Author: julian Date: Fri Jan 27 09:07:11 2017 New Revision: 312870 URL: https://svnweb.freebsd.org/changeset/base/312870 Log: MFH: r310426 If you are going to be run individually to make a new timezone set then ensure the destination directories exist. Especially if you define OLDTIMEZO

Re: svn commit: r314667 - in stable/10/sys: amd64/amd64 cddl/contrib/opensolaris/uts/common/dtrace cddl/contrib/opensolaris/uts/common/fs/zfs cddl/dev/profile compat/ndis contrib/ipfilter/netinet dev/

2017-03-04 Thread Julian Elischer
On 4/3/17 9:03 pm, Andriy Gapon wrote: Author: avg Date: Sat Mar 4 13:03:31 2017 New Revision: 314667 URL: https://svnweb.freebsd.org/changeset/base/314667 Log: MFC r283291: don't use CALLOUT_MPSAFE with callout_init() The main purpose of this MFC is to reduce conflicts for other merg

Re: svn commit: r314667 - in stable/10/sys: amd64/amd64 cddl/contrib/opensolaris/uts/common/dtrace cddl/contrib/opensolaris/uts/common/fs/zfs cddl/dev/profile compat/ndis contrib/ipfilter/netinet dev/

2017-03-04 Thread Julian Elischer
On 5/3/17 12:02 am, Andriy Gapon wrote: On 04/03/2017 17:30, Julian Elischer wrote: On 4/3/17 9:03 pm, Andriy Gapon wrote: Author: avg Date: Sat Mar 4 13:03:31 2017 New Revision: 314667 URL: https://svnweb.freebsd.org/changeset/base/314667 Log: MFC r283291: don't use CALLOUT_MPSAFE