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

2020-08-19 Thread Warner Losh
On Wed, Aug 19, 2020 at 11:54 AM Shawn Webb wrote: > On Wed, Aug 19, 2020 at 11:51:10AM -0600, Warner Losh wrote: > > On Wed, Aug 19, 2020 at 11:48 AM Shawn Webb > > wrote: > > > > > On Wed, Aug 19, 2020 at 11:44:42AM -0600, Warner Losh wrote: > > > > On Wed, Aug 19, 2020 at 11:26 AM Shawn Webb

svn commit: r364417 - head/usr.sbin/fstyp

2020-08-19 Thread Pedro F. Giffuni
Author: pfg Date: Thu Aug 20 05:18:08 2020 New Revision: 364417 URL: https://svnweb.freebsd.org/changeset/base/364417 Log: usr.sbin/fstyp: Fix incorrect pfs_type test in ondisk inode "ipdata.meta.pfs_type & HAMMER2_PFSTYPE_SUPROOT" happened to have the same result (except

svn commit: r364416 - head/sys/fs/ext2fs

2020-08-19 Thread Pedro F. Giffuni
Author: pfg Date: Thu Aug 20 05:08:49 2020 New Revision: 364416 URL: https://svnweb.freebsd.org/changeset/base/364416 Log: extfs: remove redundant little endian conversion. The XTIME_TO_NSEC macro already calls the htole32(), so there is no need to call it twice. This code does nothing

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

2020-08-19 Thread Brandon Bergren
The change you made looks correct to me. libsysdecode uses pattern matching to find syscall flag definitions for use by userspace debug tools. (so stuff like truss can show flag names, etc.) As such, anything hidden behind _KERNEL in one of the headers that the tool grovels that matches one of

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

2020-08-19 Thread Rick Macklem
Done, I guess? I had never ever heard of this until now, but. by inspection, it seems to want the kernel only MSG_xxx flags listed, so I added MSG_TLSAPPDATA. If this is not correct, please let me know what needs to be done, rick From: Brandon Bergren

svn commit: r364415 - head/lib/libsysdecode

2020-08-19 Thread Rick Macklem
Author: rmacklem Date: Thu Aug 20 03:53:18 2020 New Revision: 364415 URL: https://svnweb.freebsd.org/changeset/base/364415 Log: Add MSG_TLSAPPDATA to lib/libsysdecode/mktables. I have no idea what this does (and until now that it even existed), but apparently it needs this entry changed

svn commit: r364414 - stable/12/sys/cam/nvme

2020-08-19 Thread Alexander Motin
Author: mav Date: Thu Aug 20 02:54:44 2020 New Revision: 364414 URL: https://svnweb.freebsd.org/changeset/base/364414 Log: MFC r364185: Fill device serial_num and device_id in NVMe XPT. It allows to report GEOM::lunid for nda(4) same as for nvd(4). Since NVMe now allows multiple LUs

svn commit: r364413 - stable/12/sys/cam/nvme

2020-08-19 Thread Alexander Motin
Author: mav Date: Thu Aug 20 02:51:18 2020 New Revision: 364413 URL: https://svnweb.freebsd.org/changeset/base/364413 Log: MFC r364178: Report proper stripesize for nda(4). Same as for nvd(4) report NPWG if present, otherise NOIOB. Modified: stable/12/sys/cam/nvme/nvme_da.c Directory

svn commit: r364412 - head/cddl/contrib/opensolaris/lib/libzfs/common

2020-08-19 Thread Alan Somers
Author: asomers Date: Thu Aug 20 01:31:21 2020 New Revision: 364412 URL: https://svnweb.freebsd.org/changeset/base/364412 Log: zfs: fix EIO accessing dataset after resuming interrupted receive ZFS unmounts a dataset while receiving into it and remounts it afterwards. But if ZFS is

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

2020-08-19 Thread Brandon Bergren
This broke world build. Please update the blacklist in lib/sysdecode/mktables. On Wed, Aug 19, 2020, at 6:42 PM, Rick Macklem wrote: > Author: rmacklem > Date: Wed Aug 19 23:42:33 2020 > New Revision: 364409 > URL: https://svnweb.freebsd.org/changeset/base/364409 > > Log: > Add the

svn commit: r364411 - in head/sys: amd64/acpica i386/acpica

2020-08-19 Thread Mark Johnston
Author: markj Date: Thu Aug 20 00:52:53 2020 New Revision: 364411 URL: https://svnweb.freebsd.org/changeset/base/364411 Log: Use pmap_mapbios() to map ACPI tables on amd64 and i386. The ACPI table-mapping code used pmap_kenter_temporary() to create mappings, which in turn uses the

svn commit: r364410 - head/sys/arm64/acpica

2020-08-19 Thread Mark Johnston
Author: markj Date: Thu Aug 20 00:38:32 2020 New Revision: 364410 URL: https://svnweb.freebsd.org/changeset/base/364410 Log: Remove an unused parameter from map_table(). MFC after:1 week Sponsored by: The FreeBSD Foundation Modified: head/sys/arm64/acpica/acpi_machdep.c Modified:

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

2020-08-19 Thread Rick Macklem
Author: rmacklem Date: Wed Aug 19 23:42:33 2020 New Revision: 364409 URL: https://svnweb.freebsd.org/changeset/base/364409 Log: Add the MSG_TLSAPPDATA flag to indicate "return ENXIO" for non-application TLS data records. The kernel RPC cannot process non-application data records when

svn commit: r364408 - head/stand/libsa

2020-08-19 Thread Toomas Soome
Author: tsoome Date: Wed Aug 19 20:41:22 2020 New Revision: 364408 URL: https://svnweb.freebsd.org/changeset/base/364408 Log: libsa: remove leftover whitespace Tiny cleanup, no functional changes. Modified: head/stand/libsa/environment.c Modified: head/stand/libsa/environment.c

svn commit: r364407 - head/sys/dev/acpica

2020-08-19 Thread Alexander Motin
Author: mav Date: Wed Aug 19 19:55:12 2020 New Revision: 364407 URL: https://svnweb.freebsd.org/changeset/base/364407 Log: Unify AcpiGetTable() KPI use in identify, probe and attach. While there, change probe order to not call AcpiGetTable() for every probed ACPI device. PR:

svn commit: r364406 - head/share/man/man4

2020-08-19 Thread Mark Johnston
Author: markj Date: Wed Aug 19 18:52:22 2020 New Revision: 364406 URL: https://svnweb.freebsd.org/changeset/base/364406 Log: Add a KCOV man page. Reviewed by: andrew, gbe, tuexen Sponsored by: The FreeBSD Foundation Differential Revision:https://reviews.freebsd.org/D26108

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

2020-08-19 Thread Ian Lepore
On Wed, 2020-08-19 at 13:54 -0400, Shawn Webb wrote: > On Wed, Aug 19, 2020 at 11:51:10AM -0600, Warner Losh wrote: > > On Wed, Aug 19, 2020 at 11:48 AM Shawn Webb < > > shawn.w...@hardenedbsd.org> > > wrote: > > > > > On Wed, Aug 19, 2020 at 11:44:42AM -0600, Warner Losh wrote: > > > > On Wed,

svn commit: r364405 - in head/sys/netinet: . tcp_stacks

2020-08-19 Thread Andrew Gallatin
Author: gallatin Date: Wed Aug 19 17:59:06 2020 New Revision: 364405 URL: https://svnweb.freebsd.org/changeset/base/364405 Log: TCP: remove special treatment for hardware (ifnet) TLS Remove most special treatment for ifnet TLS in the TCP stack, except for code to avoid mixing handshakes

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

2020-08-19 Thread Shawn Webb
On Wed, Aug 19, 2020 at 11:51:10AM -0600, Warner Losh wrote: > On Wed, Aug 19, 2020 at 11:48 AM Shawn Webb > wrote: > > > On Wed, Aug 19, 2020 at 11:44:42AM -0600, Warner Losh wrote: > > > On Wed, Aug 19, 2020 at 11:26 AM Shawn Webb > > > wrote: > > > > > > > On Wed, Aug 19, 2020 at 05:10:05PM

svn commit: r364404 - head/share/man/man4

2020-08-19 Thread Ed Maste
Author: emaste Date: Wed Aug 19 17:52:06 2020 New Revision: 364404 URL: https://svnweb.freebsd.org/changeset/base/364404 Log: ipfirewall(4): remove Cuseeme from supported list Submitted by: Dries Michiels MFC after:3 days Differential Revision:

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

2020-08-19 Thread Warner Losh
On Wed, Aug 19, 2020 at 11:48 AM Shawn Webb wrote: > On Wed, Aug 19, 2020 at 11:44:42AM -0600, Warner Losh wrote: > > On Wed, Aug 19, 2020 at 11:26 AM Shawn Webb > > wrote: > > > > > On Wed, Aug 19, 2020 at 05:10:05PM +, Warner Losh wrote: > > > > Author: imp > > > > Date: Wed Aug 19

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

2020-08-19 Thread Shawn Webb
On Wed, Aug 19, 2020 at 11:44:42AM -0600, Warner Losh wrote: > On Wed, Aug 19, 2020 at 11:26 AM Shawn Webb > wrote: > > > On Wed, Aug 19, 2020 at 05:10:05PM +, Warner Losh wrote: > > > Author: imp > > > Date: Wed Aug 19 17:10:04 2020 > > > New Revision: 364402 > > > URL:

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

2020-08-19 Thread Warner Losh
On Wed, Aug 19, 2020 at 11:26 AM Shawn Webb wrote: > On Wed, Aug 19, 2020 at 05:10:05PM +, Warner Losh wrote: > > Author: imp > > Date: Wed Aug 19 17:10:04 2020 > > New Revision: 364402 > > URL: https://svnweb.freebsd.org/changeset/base/364402 > > > > Log: > > Add VFS FS events for mount

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

2020-08-19 Thread Shawn Webb
On Wed, Aug 19, 2020 at 05:10:05PM +, Warner Losh wrote: > Author: imp > Date: Wed Aug 19 17:10:04 2020 > New Revision: 364402 > URL: https://svnweb.freebsd.org/changeset/base/364402 > > Log: > Add VFS FS events for mount and unmount to devctl/devd > > Report when a filesystem is

svn commit: r364403 - head/sbin/devd

2020-08-19 Thread Warner Losh
Author: imp Date: Wed Aug 19 17:10:09 2020 New Revision: 364403 URL: https://svnweb.freebsd.org/changeset/base/364403 Log: Document the VFS FS events MOUNT notifies when a filesystem is mounted REMOUNT notifies when a filesystem is mounted again UNMOUNT notifies when a filesystem is

svn commit: r364402 - head/sys/kern

2020-08-19 Thread Warner Losh
Author: imp Date: Wed Aug 19 17:10:04 2020 New Revision: 364402 URL: https://svnweb.freebsd.org/changeset/base/364402 Log: Add VFS FS events for mount and unmount to devctl/devd Report when a filesystem is mounted, remounted or unmounted via devd, along with details about the mount

svn commit: r364401 - in head: sbin/mount sys/sys

2020-08-19 Thread Warner Losh
Author: imp Date: Wed Aug 19 17:09:58 2020 New Revision: 364401 URL: https://svnweb.freebsd.org/changeset/base/364401 Log: Move the mount name to bit mapping into sys/mount.h so it can be shared with the kernel. Discussed with: kib@ Reviewed by: kirk@ (prior version) Sponsored by:

svn commit: r364400 - head/lib/clang

2020-08-19 Thread Dimitry Andric
Author: dim Date: Wed Aug 19 17:05:30 2020 New Revision: 364400 URL: https://svnweb.freebsd.org/changeset/base/364400 Log: Fix the mips64 world build after r364284. Linking the full version of clang 11 results in errors similar to: lld: error:

svn commit: r364399 - in head/sys: amd64/acpica arm64/acpica i386/acpica

2020-08-19 Thread Alexander Motin
Author: mav Date: Wed Aug 19 16:09:36 2020 New Revision: 364399 URL: https://svnweb.freebsd.org/changeset/base/364399 Log: Remove some noisy ACPI tables messages from verbose dmesg. Those messages were printed hundreds of times during boot, often multiple times for each table. We

svn commit: r364398 - head/stand/libsa

2020-08-19 Thread Toomas Soome
Author: tsoome Date: Wed Aug 19 15:27:09 2020 New Revision: 364398 URL: https://svnweb.freebsd.org/changeset/base/364398 Log: libsa: make env_discard() public Allow env_discard() to be used outside environment.c Modified: head/stand/libsa/environment.c head/stand/libsa/stand.h

svn commit: r364397 - head/stand/libsa

2020-08-19 Thread Toomas Soome
Author: tsoome Date: Wed Aug 19 15:20:33 2020 New Revision: 364397 URL: https://svnweb.freebsd.org/changeset/base/364397 Log: libsa: cstyle cleanup for environment.c No functional changes. Modified: head/stand/libsa/environment.c Modified: head/stand/libsa/environment.c

svn commit: r364396 - head/usr.sbin/freebsd-update

2020-08-19 Thread Michael Gmelin
Author: grembo (ports committer) Date: Wed Aug 19 15:11:27 2020 New Revision: 364396 URL: https://svnweb.freebsd.org/changeset/base/364396 Log: Unbreak `freebsd-update updatesready'. The command would only work if PWD happened to be WORKDIR. Also, exit 1 in case WORKDIR exists, but isn't

svn commit: r364395 - head/sys/kern

2020-08-19 Thread Mateusz Guzik
Author: mjg Date: Wed Aug 19 15:08:14 2020 New Revision: 364395 URL: https://svnweb.freebsd.org/changeset/base/364395 Log: cache: when adding an already existing entry assert on a complete match Modified: head/sys/kern/vfs_cache.c Modified: head/sys/kern/vfs_cache.c

svn commit: r364394 - head/sys/kern

2020-08-19 Thread Mateusz Guzik
Author: mjg Date: Wed Aug 19 15:07:28 2020 New Revision: 364394 URL: https://svnweb.freebsd.org/changeset/base/364394 Log: cache: tidy up the comment above cache_prehash Modified: head/sys/kern/vfs_cache.c Modified: head/sys/kern/vfs_cache.c

svn commit: r364393 - head/sys/kern

2020-08-19 Thread Andrew Turner
Author: andrew Date: Wed Aug 19 14:11:25 2020 New Revision: 364393 URL: https://svnweb.freebsd.org/changeset/base/364393 Log: Mark COVERAGE and KCOV as part of KCSAN While not strictly true this stops them from trying to use the KCSAN atomic hooks and allows these to be compiled into the

svn commit: r364392 - stable/12/sys/compat/linprocfs

2020-08-19 Thread Mark Johnston
Author: markj Date: Wed Aug 19 13:44:08 2020 New Revision: 364392 URL: https://svnweb.freebsd.org/changeset/base/364392 Log: MFC r364168: linprocfs: Fix some inaccuracies in meminfo. PR: 248463 Modified: stable/12/sys/compat/linprocfs/linprocfs.c Directory Properties: stable/12/

svn commit: r364391 - in stable/11/sys: compat/linuxkpi/common/include/linux compat/linuxkpi/common/src sys

2020-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Wed Aug 19 13:35:32 2020 New Revision: 364391 URL: https://svnweb.freebsd.org/changeset/base/364391 Log: MFC r364109: Need to clone the task struct fields related to RCU aswell in the LinuxKPI after r359727. This fixes a minor regression issue. Else the priority

svn commit: r364390 - in stable/12/sys: compat/linuxkpi/common/include/linux compat/linuxkpi/common/src sys

2020-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Wed Aug 19 13:32:55 2020 New Revision: 364390 URL: https://svnweb.freebsd.org/changeset/base/364390 Log: MFC r364109: Need to clone the task struct fields related to RCU aswell in the LinuxKPI after r359727. This fixes a minor regression issue. Else the priority

svn commit: r364389 - stable/12/sys/kern

2020-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Wed Aug 19 13:28:50 2020 New Revision: 364389 URL: https://svnweb.freebsd.org/changeset/base/364389 Log: Fix for INVARIANTS build. The "name" argument is not present in the EPOCH(9) APIs in 12-stable as merged in r364381 . This is a direct commit.

svn commit: r364388 - in stable/12/sys: netinet netinet6

2020-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Wed Aug 19 13:23:52 2020 New Revision: 364388 URL: https://svnweb.freebsd.org/changeset/base/364388 Log: MFC r364072, r364073 and r364102: Use proper prototype for SYSINIT() functions. Mark the unused argument using the __unused macro. Make sure the multicast

svn commit: r364387 - head/share/man/man7

2020-08-19 Thread Mateusz Piotrowski
Author: 0mp (doc,ports committer) Date: Wed Aug 19 13:09:31 2020 New Revision: 364387 URL: https://svnweb.freebsd.org/changeset/base/364387 Log: Cross-reference development.7 and tests.7 MFC after:7 days Modified: head/share/man/man7/development.7 head/share/man/man7/tests.7

svn commit: r364386 - in stable/12/sys: dev/hwpmc kern netinet netinet6 sys

2020-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Wed Aug 19 13:07:04 2020 New Revision: 364386 URL: https://svnweb.freebsd.org/changeset/base/364386 Log: MFC r359438 and r359477: Remove the "config" taskqgroup and its KPIs. Equivalent functionality is already provided by taskqueue(9), just use that instead.

svn commit: r364385 - stable/11/sbin/bectl

2020-08-19 Thread Mateusz Piotrowski
Author: 0mp (doc,ports committer) Date: Wed Aug 19 12:51:13 2020 New Revision: 364385 URL: https://svnweb.freebsd.org/changeset/base/364385 Log: MFC 364294, 364295: - Remove an unnecessary macro - Comment out TODO notes from bectl(8) manual page Modified:

svn commit: r364384 - stable/12/sbin/bectl

2020-08-19 Thread Mateusz Piotrowski
Author: 0mp (doc,ports committer) Date: Wed Aug 19 12:47:05 2020 New Revision: 364384 URL: https://svnweb.freebsd.org/changeset/base/364384 Log: MFC 364294, 364295: - Remove an unnecessary macro - Comment out TODO notes from bectl(8) manual page Modified: stable/12/sbin/bectl/bectl.8

Компания «Харьков Рекрутинг» - Ваш незаменимый помощник в поиске и подборе персонала с 2007 г. (338164)

2020-08-19 Thread Харьков-Рекрутинг
Компания «Харьков Рекрутинг» - Ваш незаменимый помощник в поиске и подборе персонала с 2007 г. Компания Харьков Рекрутинг  - это: – очень простой способ решения кадрового обеспечения, - Вы получаете готовых, соответствующих Вашим требованиям, кандидатов. – очень экономный метод подбора

svn commit: r364383 - in stable/11/sys/compat/linuxkpi/common: include/linux src

2020-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Wed Aug 19 12:26:23 2020 New Revision: 364383 URL: https://svnweb.freebsd.org/changeset/base/364383 Log: MFC r364028: Implement radix_tree_store() in the LinuxKPI for use with the coming extensible arrays implementation. While at it add some more comments

svn commit: r364382 - in stable/12/sys/compat/linuxkpi/common: include/linux src

2020-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Wed Aug 19 12:25:34 2020 New Revision: 364382 URL: https://svnweb.freebsd.org/changeset/base/364382 Log: MFC r364028: Implement radix_tree_store() in the LinuxKPI for use with the coming extensible arrays implementation. While at it add some more comments

svn commit: r364381 - stable/12/sys/kern

2020-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Wed Aug 19 12:23:05 2020 New Revision: 364381 URL: https://svnweb.freebsd.org/changeset/base/364381 Log: MFC r364019: Add full support support for dynamic allocation and freeing of epoch's. Make sure to reclaim epoch structures when they are freed to support

svn commit: r364380 - in stable/12/sys/dev: rtwn/usb usb

2020-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Wed Aug 19 12:16:11 2020 New Revision: 364380 URL: https://svnweb.freebsd.org/changeset/base/364380 Log: MFC r363950: Add new USB ID. Submitted by: Dmitry Luhtionov Sponsored by: Mellanox Technologies Modified:

svn commit: r364379 - head/sys/dev/usb/controller

2020-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Wed Aug 19 11:50:12 2020 New Revision: 364379 URL: https://svnweb.freebsd.org/changeset/base/364379 Log: Avoid evaluating the XHCI control endpoint context. The XHCI specification says that the XHCI controller should detect reception of the USB device descriptors,

svn commit: r364378 - stable/12/sys/netinet/cc

2020-08-19 Thread Richard Scheffenegger
Author: rscheff Date: Wed Aug 19 10:40:02 2020 New Revision: 364378 URL: https://svnweb.freebsd.org/changeset/base/364378 Log: MFC r363397: Fix style and comment around concave/convex regions in TCP cubic. In cubic, the concave region is when snd_cwnd starts growing slower towards

svn commit: r364377 - stable/12/sys/netinet/cc

2020-08-19 Thread Richard Scheffenegger
Author: rscheff Date: Wed Aug 19 10:36:16 2020 New Revision: 364377 URL: https://svnweb.freebsd.org/changeset/base/364377 Log: MFC r363380: Add MODULE_VERSION to TCP loadable congestion control modules. Without versioning information, using preexisting loader / linker code is not easily

svn commit: r364376 - stable/12/sys/netinet

2020-08-19 Thread Richard Scheffenegger
Author: rscheff Date: Wed Aug 19 10:32:26 2020 New Revision: 364376 URL: https://svnweb.freebsd.org/changeset/base/364376 Log: MFC r362988: Fix KASSERT during tcp_newtcpcb when low on memory While testing with system default cc set to cubic, and running a memory exhaustion validation,

svn commit: r364375 - head

2020-08-19 Thread Alexander Leidinger
Author: netchild Date: Wed Aug 19 10:01:05 2020 New Revision: 364375 URL: https://svnweb.freebsd.org/changeset/base/364375 Log: Fix the real shared libraries (lib*.so.X) from OLD_FILES to OLD_LIBS, as it is supposed to be. Modified: head/ObsoleteFiles.inc Modified: head/ObsoleteFiles.inc

svn commit: r364374 - head/sys/dev/sound/usb

2020-08-19 Thread Hans Petter Selasky
Author: hselasky Date: Wed Aug 19 08:05:37 2020 New Revision: 364374 URL: https://svnweb.freebsd.org/changeset/base/364374 Log: Print current buffer latency in dmesg for the USB audio driver and not just the maximum. MFC after:1 week Sponsored by: Mellanox Technologies Modified:

Асtiоn Required svn-src-all@freebsd.org: Email account verification

2020-08-19 Thread freebsd . org IT Help Desk
___ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

svn commit: r364373 - in head/sys: fs/cd9660 fs/fuse fs/nfsclient fs/smbfs fs/unionfs kern ufs/ufs

2020-08-19 Thread Mateusz Guzik
Author: mjg Date: Wed Aug 19 07:28:01 2020 New Revision: 364373 URL: https://svnweb.freebsd.org/changeset/base/364373 Log: vfs: remove the always-curthread td argument from VOP_RECLAIM Modified: head/sys/fs/cd9660/cd9660_node.c head/sys/fs/fuse/fuse_vnops.c