svn commit: r367918 - in head/sys: kern sys

2020-11-21 Thread Konstantin Belousov
Author: kib Date: Sat Nov 21 10:32:40 2020 New Revision: 367918 URL: https://svnweb.freebsd.org/changeset/base/367918 Log: Stop using eventhandler to invoke umtx_exec hook. There is no point in dynamic registration, umtx hook is there always. Reviewed by: mjg Sponsored by: The

svn commit: r367919 - head/sys/kern

2020-11-21 Thread Konstantin Belousov
Author: kib Date: Sat Nov 21 10:58:19 2020 New Revision: 367919 URL: https://svnweb.freebsd.org/changeset/base/367919 Log: Remove unused prototype. Missed part of r367918. Sponsored by: The FreeBSD Foundation MFC after:1 week Modified: head/sys/kern/kern_umtx.c Modified:

Re: svn commit: r367920 - head/tools/tools/netmap

2020-11-21 Thread Vincenzo Maffione
ups... Thanks! Cheers, Vincenzo Il giorno sab 21 nov 2020 alle ore 19:27 Ian Lepore ha scritto: > On Sat, 2020-11-21 at 18:20 +, Vincenzo Maffione wrote: > > Author: vmaffione > > Date: Sat Nov 21 18:20:21 2020 > > New Revision: 367920 > ... > > +.Bd -literal -offset intent > > > >

svn commit: r367926 - head/sys/dev/isp

2020-11-21 Thread Alexander Motin
Author: mav Date: Sun Nov 22 04:29:55 2020 New Revision: 367926 URL: https://svnweb.freebsd.org/changeset/base/367926 Log: Make handlers and atpds overflows unlikely. - Allocate 256 handlers more than payload commands for management purposes. - Increase maximum number of handlers from

svn commit: r367927 - in head: sys/kern tests/sys/kern

2020-11-21 Thread Robert Wing
Author: rew Date: Sun Nov 22 05:00:28 2020 New Revision: 367927 URL: https://svnweb.freebsd.org/changeset/base/367927 Log: fd: free old file descriptor tables when not shared During the life of a process, new file descriptor tables may be allocated. When a new table is allocated, the

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

2020-11-21 Thread Kyle Evans
Author: kevans Date: Sun Nov 22 05:34:51 2020 New Revision: 367928 URL: https://svnweb.freebsd.org/changeset/base/367928 Log: _umtx_op: move compat32 definitions back in These are reasonably compact, and a future commit will blur the compat32 lines by supporting 32-bit operations with

svn commit: r367929 - head/sys/dev/isp

2020-11-21 Thread Alexander Motin
Author: mav Date: Sun Nov 22 05:42:52 2020 New Revision: 367929 URL: https://svnweb.freebsd.org/changeset/base/367929 Log: Fix build after 367926. Option ISP_TARGET_MODE is evil. Modified: head/sys/dev/isp/isp.c Modified: head/sys/dev/isp/isp.c

svn commit: r367930 - in head/sys: kern sys

2020-11-21 Thread Kyle Evans
Author: kevans Date: Sun Nov 22 05:47:45 2020 New Revision: 367930 URL: https://svnweb.freebsd.org/changeset/base/367930 Log: [2/2] _umtx_op: introduce 32-bit/i386 flags for operations This patch takes advantage of the consolidation that happened to provide two flags that can be used

Re: svn commit: r367930 - in head/sys: kern sys

2020-11-21 Thread Kyle Evans
On Sat, Nov 21, 2020 at 11:47 PM Kyle Evans wrote: > > Author: kevans > Date: Sun Nov 22 05:47:45 2020 > New Revision: 367930 > URL: https://svnweb.freebsd.org/changeset/base/367930 > > Log: > [2/2] _umtx_op: introduce 32-bit/i386 flags for operations > > This patch takes advantage of the

svn commit: r367924 - head/sys/dev/isp

2020-11-21 Thread Alexander Motin
Author: mav Date: Sun Nov 22 02:51:30 2020 New Revision: 367924 URL: https://svnweb.freebsd.org/changeset/base/367924 Log: Remove remnants of execthrottle and maxalloc parameters. The first was obsolete since 26xx, not used on 25xx and not needed on 24xx. The second seems never worked on

Re: svn commit: r367928 - in head/sys: compat/freebsd32 kern sys

2020-11-21 Thread Konstantin Belousov
On Sun, Nov 22, 2020 at 05:34:51AM +, Kyle Evans wrote: > Author: kevans > Date: Sun Nov 22 05:34:51 2020 > New Revision: 367928 > URL: https://svnweb.freebsd.org/changeset/base/367928 > > Log: > _umtx_op: move compat32 definitions back in > > These are reasonably compact, and a future

svn commit: r367925 - head/sys/dev/isp

2020-11-21 Thread Alexander Motin
Author: mav Date: Sun Nov 22 04:10:13 2020 New Revision: 367925 URL: https://svnweb.freebsd.org/changeset/base/367925 Log: Do not parent all busdma tags to the payload tag. There is not much to inherit any more, may create more problems than solve. Instead parent them all directly to

svn commit: r367920 - head/tools/tools/netmap

2020-11-21 Thread Vincenzo Maffione
Author: vmaffione Date: Sat Nov 21 18:20:21 2020 New Revision: 367920 URL: https://svnweb.freebsd.org/changeset/base/367920 Log: netmap: bridge: update man page with more information Update the man page to describe how it is necessary to enable promiscuous mode and/or disable offloads.

svn commit: r367922 - head/usr.bin/systat

2020-11-21 Thread Michael Reifenberger
Author: mr Date: Sat Nov 21 19:14:11 2020 New Revision: 367922 URL: https://svnweb.freebsd.org/changeset/base/367922 Log: Improve number reading by rounding up to a next unit earlier for memory display. Submitted by: o...@j.email.ne.jp Differential Revision:

svn commit: r367923 - in head/sys: kern sys

2020-11-21 Thread Konstantin Belousov
Author: kib Date: Sat Nov 21 21:43:36 2020 New Revision: 367923 URL: https://svnweb.freebsd.org/changeset/base/367923 Log: Stop using eventhandlers for itimers subsystem exec and exit hooks. While there, do some minor cleanup for kclocks. They are only registered from kern_time.c, make

Re: svn commit: r367920 - head/tools/tools/netmap

2020-11-21 Thread Ian Lepore
On Sat, 2020-11-21 at 18:20 +, Vincenzo Maffione wrote: > Author: vmaffione > Date: Sat Nov 21 18:20:21 2020 > New Revision: 367920 ... > +.Bd -literal -offset intent > s/intent/indent/ ? -- Ian ___ svn-src-head@freebsd.org mailing list

svn commit: r367921 - head/tools/tools/netmap

2020-11-21 Thread Vincenzo Maffione
Author: vmaffione Date: Sat Nov 21 18:47:13 2020 New Revision: 367921 URL: https://svnweb.freebsd.org/changeset/base/367921 Log: netmap: bridge, pkt-gen: fix man page typo Reported by: ian MFC after:3 days Modified: head/tools/tools/netmap/bridge.8