CVS commit: src/sys/dev/pci/ixgbe

2020-08-26 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Aug 27 04:54:43 UTC 2020 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c Log Message: Limit MA10-ST0's quirk only for on-chip devices. To generate a diff of this commit: cvs rdiff -u -r1.247 -r1.248

CVS commit: src/sys/dev/pci/ixgbe

2020-08-26 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Aug 27 04:54:43 UTC 2020 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c Log Message: Limit MA10-ST0's quirk only for on-chip devices. To generate a diff of this commit: cvs rdiff -u -r1.247 -r1.248

CVS commit: src/sys/dev/pci/ixgbe

2020-08-26 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Aug 27 04:49:52 UTC 2020 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c Log Message: Fix compile error. To generate a diff of this commit: cvs rdiff -u -r1.246 -r1.247 src/sys/dev/pci/ixgbe/ixgbe.c Please note that diffs

CVS commit: src/sys/dev/pci/ixgbe

2020-08-26 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Aug 27 04:49:52 UTC 2020 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c Log Message: Fix compile error. To generate a diff of this commit: cvs rdiff -u -r1.246 -r1.247 src/sys/dev/pci/ixgbe/ixgbe.c Please note that diffs

CVS commit: src/sys/dev/pci/ixgbe

2020-08-26 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Aug 27 03:57:52 UTC 2020 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c ixgbe_common.c Log Message: Minor change. - Print "X550EM X" instead of "X550EM" for Xeon D devices. - Fix typo in comment. Same as FreeBSD. To

CVS commit: src/sys/dev/pci/ixgbe

2020-08-26 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Aug 27 03:57:52 UTC 2020 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c ixgbe_common.c Log Message: Minor change. - Print "X550EM X" instead of "X550EM" for Xeon D devices. - Fix typo in comment. Same as FreeBSD. To

CVS commit: src/sys/net

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 03:05:34 UTC 2020 Modified Files: src/sys/net: if_wg.c Log Message: wg: Make sure all paths into wg_handle_msg_data guarantee enough m_len. Earlier commit moved the m_pullup into wg_validate_msg_header, but

CVS commit: src/sys/net

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 03:05:34 UTC 2020 Modified Files: src/sys/net: if_wg.c Log Message: wg: Make sure all paths into wg_handle_msg_data guarantee enough m_len. Earlier commit moved the m_pullup into wg_validate_msg_header, but

CVS commit: src/sys/net

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:54:31 UTC 2020 Modified Files: src/sys/net: if_wg.c Log Message: wg: KASSERT m_len before mtod. XXX We should really make mtod do this automagically, and use something else for mtod(m, void *). To generate a

CVS commit: src/sys/net

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:55:05 UTC 2020 Modified Files: src/sys/net: if_wg.c Log Message: wg: Drop invalid message types on the floor faster. Don't even let them reach the thread -- drop them in softint. To generate a diff of this

CVS commit: src/sys/net

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:55:05 UTC 2020 Modified Files: src/sys/net: if_wg.c Log Message: wg: Drop invalid message types on the floor faster. Don't even let them reach the thread -- drop them in softint. To generate a diff of this

CVS commit: src/sys/net

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:54:31 UTC 2020 Modified Files: src/sys/net: if_wg.c Log Message: wg: KASSERT m_len before mtod. XXX We should really make mtod do this automagically, and use something else for mtod(m, void *). To generate a

CVS commit: src/sys/net

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:53:47 UTC 2020 Modified Files: src/sys/net: if_wg.c Log Message: wg: Use m_pullup to make message header contiguous before processing. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26

CVS commit: src/sys/net

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:53:47 UTC 2020 Modified Files: src/sys/net: if_wg.c Log Message: wg: Use m_pullup to make message header contiguous before processing. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26

CVS commit: src

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:52:34 UTC 2020 Modified Files: src/sys/net: if_wg.c src/tests/net/if_wg: t_misc.sh Log Message: wg: Check mbuf chain length before m_copydata. To generate a diff of this commit: cvs rdiff -u -r1.24

CVS commit: src

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:52:34 UTC 2020 Modified Files: src/sys/net: if_wg.c src/tests/net/if_wg: t_misc.sh Log Message: wg: Check mbuf chain length before m_copydata. To generate a diff of this commit: cvs rdiff -u -r1.24

CVS commit: src/tests/net/if_wg

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:51:50 UTC 2020 Modified Files: src/tests/net/if_wg: t_misc.sh Log Message: Use wgconfig as intended to show diagnostics, not a usage message. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src/tests/net/if_wg

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:51:50 UTC 2020 Modified Files: src/tests/net/if_wg: t_misc.sh Log Message: Use wgconfig as intended to show diagnostics, not a usage message. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src/sys/rump/net/lib/libwg

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:51:15 UTC 2020 Modified Files: src/sys/rump/net/lib/libwg: wg_user.c Log Message: Fix order of cleanup actions in rumpuser_wg_create error branch. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3

CVS commit: src/sys/rump/net/lib/libwg

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:51:15 UTC 2020 Modified Files: src/sys/rump/net/lib/libwg: wg_user.c Log Message: Fix order of cleanup actions in rumpuser_wg_create error branch. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3

CVS commit: src/sys/rump/net/lib/libwg

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:50:44 UTC 2020 Modified Files: src/sys/rump/net/lib/libwg: wg_user.c Log Message: Paranoia: use strlcpy rather than strcpy here and detect truncation. Not an issue for the one caller in tree, but let's not leave

CVS commit: src/sys/rump/net/lib/libwg

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Thu Aug 27 02:50:44 UTC 2020 Modified Files: src/sys/rump/net/lib/libwg: wg_user.c Log Message: Paranoia: use strlcpy rather than strcpy here and detect truncation. Not an issue for the one caller in tree, but let's not leave

CVS commit: src/usr.bin/column

2020-08-26 Thread Simon Burge
Module Name:src Committed By: simonb Date: Thu Aug 27 01:52:04 UTC 2020 Modified Files: src/usr.bin/column: column.c Log Message: Whitespace nit. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/usr.bin/column/column.c Please note that diffs are not

CVS commit: src/usr.bin/column

2020-08-26 Thread Simon Burge
Module Name:src Committed By: simonb Date: Thu Aug 27 01:52:04 UTC 2020 Modified Files: src/usr.bin/column: column.c Log Message: Whitespace nit. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/usr.bin/column/column.c Please note that diffs are not

CVS commit: src/sys/dev/pci/ixgbe

2020-08-26 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Aug 27 00:07:56 UTC 2020 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c ixgbe.h Log Message: ADD SFP+ MOD_ABS inversion quirk. On X550 EM, GPIO(SDP) and SFP+'s MOD_ABS is directly connected. It has no inverter. GIGABYTE

CVS commit: src/sys/dev/pci/ixgbe

2020-08-26 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Aug 27 00:07:56 UTC 2020 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c ixgbe.h Log Message: ADD SFP+ MOD_ABS inversion quirk. On X550 EM, GPIO(SDP) and SFP+'s MOD_ABS is directly connected. It has no inverter. GIGABYTE

Re: CVS commit: src/usr.bin/sockstat

2020-08-26 Thread Simon Burge
"Christos Zoulas" wrote: > Module Name: src > Committed By: christos > Date: Wed Aug 26 22:57:56 UTC 2020 > > Modified Files: > > src/usr.bin/sockstat: Makefile sockstat.c > > Log Message: > > undo previous, now sockstat works without privs Nice, thanks Christos! Cheers, Simon.

CVS commit: src/usr.bin/make

2020-08-26 Thread Roland Illig
Module Name:src Committed By: rillig Date: Wed Aug 26 23:08:26 UTC 2020 Modified Files: src/usr.bin/make: suff.c Log Message: make(1): merge duplicate code for creating a new suffix To generate a diff of this commit: cvs rdiff -u -r1.116 -r1.117 src/usr.bin/make/suff.c

CVS commit: src/usr.bin/make

2020-08-26 Thread Roland Illig
Module Name:src Committed By: rillig Date: Wed Aug 26 23:08:26 UTC 2020 Modified Files: src/usr.bin/make: suff.c Log Message: make(1): merge duplicate code for creating a new suffix To generate a diff of this commit: cvs rdiff -u -r1.116 -r1.117 src/usr.bin/make/suff.c

CVS commit: src/usr.bin/fstat

2020-08-26 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Aug 26 23:08:29 UTC 2020 Modified Files: src/usr.bin/fstat: fstat.c Log Message: Provide a helpful error message if we don't have privs to read kernel addresses. To generate a diff of this commit: cvs rdiff -u -r1.113

CVS commit: src/usr.bin/fstat

2020-08-26 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Aug 26 23:08:29 UTC 2020 Modified Files: src/usr.bin/fstat: fstat.c Log Message: Provide a helpful error message if we don't have privs to read kernel addresses. To generate a diff of this commit: cvs rdiff -u -r1.113

CVS commit: src/usr.bin/make

2020-08-26 Thread Roland Illig
Module Name:src Committed By: rillig Date: Wed Aug 26 23:00:47 UTC 2020 Modified Files: src/usr.bin/make: Makefile hash.c lst.h make.h Removed Files: src/usr.bin/make: sprite.h Log Message: make(1): remove header sprite.h Make is independent of the Sprite

CVS commit: src/usr.bin/make

2020-08-26 Thread Roland Illig
Module Name:src Committed By: rillig Date: Wed Aug 26 23:00:47 UTC 2020 Modified Files: src/usr.bin/make: Makefile hash.c lst.h make.h Removed Files: src/usr.bin/make: sprite.h Log Message: make(1): remove header sprite.h Make is independent of the Sprite

CVS commit: src/usr.bin/sockstat

2020-08-26 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Aug 26 22:57:56 UTC 2020 Modified Files: src/usr.bin/sockstat: Makefile sockstat.c Log Message: undo previous, now sockstat works without privs To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7

CVS commit: src/usr.bin/sockstat

2020-08-26 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Aug 26 22:57:56 UTC 2020 Modified Files: src/usr.bin/sockstat: Makefile sockstat.c Log Message: undo previous, now sockstat works without privs To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7

CVS commit: src/sys

2020-08-26 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Aug 26 22:56:55 UTC 2020 Modified Files: src/sys/crypto/blake2: files.blake2s src/sys/kern: init_main.c kern_descrip.c kern_proc.c src/sys/sys: systm.h Log Message: Instead of returning 0 when sysctl

CVS commit: src/sys

2020-08-26 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Aug 26 22:56:55 UTC 2020 Modified Files: src/sys/crypto/blake2: files.blake2s src/sys/kern: init_main.c kern_descrip.c kern_proc.c src/sys/sys: systm.h Log Message: Instead of returning 0 when sysctl

CVS commit: src/usr.bin/make

2020-08-26 Thread Roland Illig
Module Name:src Committed By: rillig Date: Wed Aug 26 22:55:46 UTC 2020 Modified Files: src/usr.bin/make: arch.c dir.c lst.c lst.h main.c make.c meta.c parse.c suff.c targ.c Log Message: make(1): add stricter variants for remaining Lst functions In most cases

CVS commit: src/usr.bin/make

2020-08-26 Thread Roland Illig
Module Name:src Committed By: rillig Date: Wed Aug 26 22:55:46 UTC 2020 Modified Files: src/usr.bin/make: arch.c dir.c lst.c lst.h main.c make.c meta.c parse.c suff.c targ.c Log Message: make(1): add stricter variants for remaining Lst functions In most cases

CVS commit: src/sys/kern

2020-08-26 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Aug 26 22:54:31 UTC 2020 Modified Files: src/sys/kern: uipc_socket.c uipc_socket2.c uipc_usrreq.c Log Message: add socket info for user and group for unix sockets in fstat. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/sys/kern

2020-08-26 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Aug 26 22:54:31 UTC 2020 Modified Files: src/sys/kern: uipc_socket.c uipc_socket2.c uipc_usrreq.c Log Message: add socket info for user and group for unix sockets in fstat. To generate a diff of this commit: cvs rdiff -u

CVS commit: src/tests/net/net

2020-08-26 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Aug 26 22:52:58 UTC 2020 Modified Files: src/tests/net/net: t_unix.c Log Message: Check that fstat returns the correct socket owner To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/tests/net/net/t_unix.c

CVS commit: src/tests/net/net

2020-08-26 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Aug 26 22:52:58 UTC 2020 Modified Files: src/tests/net/net: t_unix.c Log Message: Check that fstat returns the correct socket owner To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/tests/net/net/t_unix.c

CVS commit: [netbsd-9] src/sys/arch/sun3/sun3x

2020-08-26 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Aug 26 18:06:54 UTC 2020 Modified Files: src/sys/arch/sun3/sun3x [netbsd-9]: pmap.c Log Message: Pull up following revision(s) (requested by tsutsui in ticket #1060): sys/arch/sun3/sun3x/pmap.c: revision 1.117 Make

CVS commit: [netbsd-9] src/sys/arch/sun3/sun3x

2020-08-26 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Aug 26 18:06:54 UTC 2020 Modified Files: src/sys/arch/sun3/sun3x [netbsd-9]: pmap.c Log Message: Pull up following revision(s) (requested by tsutsui in ticket #1060): sys/arch/sun3/sun3x/pmap.c: revision 1.117 Make

CVS commit: [netbsd-9] src/sys/dev/nvmm/x86

2020-08-26 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Aug 26 17:55:49 UTC 2020 Modified Files: src/sys/dev/nvmm/x86 [netbsd-9]: nvmm_x86.c nvmm_x86.h nvmm_x86_svm.c nvmm_x86_vmx.c Log Message: Pull up following revision(s) (requested by maxv in ticket #1058):

CVS commit: [netbsd-9] src/sys/dev/nvmm/x86

2020-08-26 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Aug 26 17:55:49 UTC 2020 Modified Files: src/sys/dev/nvmm/x86 [netbsd-9]: nvmm_x86.c nvmm_x86.h nvmm_x86_svm.c nvmm_x86_vmx.c Log Message: Pull up following revision(s) (requested by maxv in ticket #1058):

CVS commit: src/sys/kern

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:36:32 UTC 2020 Modified Files: src/sys/kern: tty.c Log Message: Add a check to prevent shift by -1. Not really important in this case, but to appease KUBSAN. Reported-by:

CVS commit: src/sys/kern

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:36:32 UTC 2020 Modified Files: src/sys/kern: tty.c Log Message: Add a check to prevent shift by -1. Not really important in this case, but to appease KUBSAN. Reported-by:

CVS commit: src/sys/dev/nvmm/x86

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:33:03 UTC 2020 Modified Files: src/sys/dev/nvmm/x86: nvmm_x86_svm.c Log Message: nvmm-x86-svm: improve the handling of MSR_EFER Intercept reads of it as well, just to mask EFER_SVME, which the guest doesn't need to

CVS commit: src/sys/dev/nvmm/x86

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:33:03 UTC 2020 Modified Files: src/sys/dev/nvmm/x86: nvmm_x86_svm.c Log Message: nvmm-x86-svm: improve the handling of MSR_EFER Intercept reads of it as well, just to mask EFER_SVME, which the guest doesn't need to

CVS commit: src/sys/dev/nvmm/x86

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:32:03 UTC 2020 Modified Files: src/sys/dev/nvmm/x86: nvmm_x86_svm.c nvmm_x86_vmx.c Log Message: nvmm-x86: improve the handling of RFLAGS.RF - When injecting certain exceptions, set RF. For us to have an up-to-date

CVS commit: src/sys/dev/nvmm/x86

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:32:03 UTC 2020 Modified Files: src/sys/dev/nvmm/x86: nvmm_x86_svm.c nvmm_x86_vmx.c Log Message: nvmm-x86: improve the handling of RFLAGS.RF - When injecting certain exceptions, set RF. For us to have an up-to-date

CVS commit: src/sys/dev/nvmm/x86

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:30:50 UTC 2020 Modified Files: src/sys/dev/nvmm/x86: nvmm_x86_vmx.c Log Message: nvmm-x86-vmx: improve the handling of CR4 - Filter out certain features we don't want the guest to enable. This is for general

CVS commit: src/sys/dev/nvmm/x86

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:30:50 UTC 2020 Modified Files: src/sys/dev/nvmm/x86: nvmm_x86_vmx.c Log Message: nvmm-x86-vmx: improve the handling of CR4 - Filter out certain features we don't want the guest to enable. This is for general

CVS commit: src/sys/dev/nvmm

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:29:49 UTC 2020 Modified Files: src/sys/dev/nvmm: nvmm_ioctl.h Log Message: nvmm: slightly clarify To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/dev/nvmm/nvmm_ioctl.h Please note that diffs

CVS commit: src/sys/dev/nvmm

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:29:49 UTC 2020 Modified Files: src/sys/dev/nvmm: nvmm_ioctl.h Log Message: nvmm: slightly clarify To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/dev/nvmm/nvmm_ioctl.h Please note that diffs

CVS commit: src/sys/dev/nvmm/x86

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:29:20 UTC 2020 Modified Files: src/sys/dev/nvmm/x86: nvmm_x86_svm.c Log Message: nvmm-x86-svm: don't forget to intercept INVD INVD executed in the guest can be dangerous for the host, due to CPU caches being flushed

CVS commit: src/sys/dev/nvmm/x86

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:29:20 UTC 2020 Modified Files: src/sys/dev/nvmm/x86: nvmm_x86_svm.c Log Message: nvmm-x86-svm: don't forget to intercept INVD INVD executed in the guest can be dangerous for the host, due to CPU caches being flushed

CVS commit: src/sys/dev/nvmm

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:28:17 UTC 2020 Modified Files: src/sys/dev/nvmm: nvmm.c Log Message: nvmm: misc improvements - use mach->ncpus to get the number of vcpus, now that we have it - don't forget to decrement mach->ncpus when a machine

CVS commit: src/sys/dev/nvmm

2020-08-26 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Aug 26 16:28:17 UTC 2020 Modified Files: src/sys/dev/nvmm: nvmm.c Log Message: nvmm: misc improvements - use mach->ncpus to get the number of vcpus, now that we have it - don't forget to decrement mach->ncpus when a machine

CVS commit: src

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Aug 26 16:03:42 UTC 2020 Modified Files: src/distrib/sets/lists/base: shl.mi src/distrib/sets/lists/comp: mi shl.mi src/distrib/sets/lists/debug: mi shl.mi src/distrib/sets/lists/tests: mi

CVS commit: src

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Aug 26 16:03:42 UTC 2020 Modified Files: src/distrib/sets/lists/base: shl.mi src/distrib/sets/lists/comp: mi shl.mi src/distrib/sets/lists/debug: mi shl.mi src/distrib/sets/lists/tests: mi

CVS commit: src/sys/arch/xen/xen

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Aug 26 15:54:11 UTC 2020 Modified Files: src/sys/arch/xen/xen: if_xennet_xenbus.c Log Message: Nix trailing whitespace and mixed space/tab indentation. To generate a diff of this commit: cvs rdiff -u -r1.127 -r1.128

CVS commit: src/sys/arch/xen/xen

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Aug 26 15:54:11 UTC 2020 Modified Files: src/sys/arch/xen/xen: if_xennet_xenbus.c Log Message: Nix trailing whitespace and mixed space/tab indentation. To generate a diff of this commit: cvs rdiff -u -r1.127 -r1.128

CVS commit: src/sys

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Aug 26 15:49:56 UTC 2020 Modified Files: src/sys/external/isc/libsodium/conf: files.libsodium src/sys/rump/kern/lib/libcrypto: Makefile Log Message: Tidy up libsodium makefile and config fragments. To generate a

CVS commit: src/sys

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Aug 26 15:49:56 UTC 2020 Modified Files: src/sys/external/isc/libsodium/conf: files.libsodium src/sys/rump/kern/lib/libcrypto: Makefile Log Message: Tidy up libsodium makefile and config fragments. To generate a

CVS commit: src/usr.sbin/wgconfig

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Aug 26 15:49:07 UTC 2020 Modified Files: src/usr.sbin/wgconfig: Makefile Log Message: wgconfig does not need libcrypt. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/usr.sbin/wgconfig/Makefile Please

CVS commit: src/usr.sbin/wgconfig

2020-08-26 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Wed Aug 26 15:49:07 UTC 2020 Modified Files: src/usr.sbin/wgconfig: Makefile Log Message: wgconfig does not need libcrypt. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/usr.sbin/wgconfig/Makefile Please

CVS commit: src/usr.sbin/nfsd

2020-08-26 Thread Andreas Gustafsson
Module Name:src Committed By: gson Date: Wed Aug 26 13:35:12 UTC 2020 Modified Files: src/usr.sbin/nfsd: nfsd.c Log Message: Fix indentation To generate a diff of this commit: cvs rdiff -u -r1.71 -r1.72 src/usr.sbin/nfsd/nfsd.c Please note that diffs are not public

CVS commit: src/usr.sbin/nfsd

2020-08-26 Thread Andreas Gustafsson
Module Name:src Committed By: gson Date: Wed Aug 26 13:35:12 UTC 2020 Modified Files: src/usr.sbin/nfsd: nfsd.c Log Message: Fix indentation To generate a diff of this commit: cvs rdiff -u -r1.71 -r1.72 src/usr.sbin/nfsd/nfsd.c Please note that diffs are not public

CVS commit: src/usr.sbin/nfsd

2020-08-26 Thread Andreas Gustafsson
Module Name:src Committed By: gson Date: Wed Aug 26 13:33:42 UTC 2020 Modified Files: src/usr.sbin/nfsd: nfsd.c Log Message: Remove trailing whitespace To generate a diff of this commit: cvs rdiff -u -r1.70 -r1.71 src/usr.sbin/nfsd/nfsd.c Please note that diffs are not

CVS commit: src/usr.sbin/nfsd

2020-08-26 Thread Andreas Gustafsson
Module Name:src Committed By: gson Date: Wed Aug 26 13:33:42 UTC 2020 Modified Files: src/usr.sbin/nfsd: nfsd.c Log Message: Remove trailing whitespace To generate a diff of this commit: cvs rdiff -u -r1.70 -r1.71 src/usr.sbin/nfsd/nfsd.c Please note that diffs are not

CVS commit: src/usr.sbin/nfsd

2020-08-26 Thread Andreas Gustafsson
Module Name:src Committed By: gson Date: Wed Aug 26 13:32:57 UTC 2020 Modified Files: src/usr.sbin/nfsd: nfsd.c Log Message: Remove superfluous empty line To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 src/usr.sbin/nfsd/nfsd.c Please note that diffs are

CVS commit: src/usr.sbin/nfsd

2020-08-26 Thread Andreas Gustafsson
Module Name:src Committed By: gson Date: Wed Aug 26 13:32:57 UTC 2020 Modified Files: src/usr.sbin/nfsd: nfsd.c Log Message: Remove superfluous empty line To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 src/usr.sbin/nfsd/nfsd.c Please note that diffs are

CVS commit: src/sys/arch/vax/vsa

2020-08-26 Thread Tetsuya Isaki
Module Name:src Committed By: isaki Date: Wed Aug 26 12:59:28 UTC 2020 Modified Files: src/sys/arch/vax/vsa: vsaudio.c Log Message: Fix misuse of device_private(). sc_dev is device_t. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6

CVS commit: src/sys/arch/vax/vsa

2020-08-26 Thread Tetsuya Isaki
Module Name:src Committed By: isaki Date: Wed Aug 26 12:59:28 UTC 2020 Modified Files: src/sys/arch/vax/vsa: vsaudio.c Log Message: Fix misuse of device_private(). sc_dev is device_t. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6

CVS commit: src/usr.bin/systat

2020-08-26 Thread Simon Burge
Module Name:src Committed By: simonb Date: Wed Aug 26 10:56:01 UTC 2020 Modified Files: src/usr.bin/systat: ps.c Log Message: Use the vm.uspace sysctl instead of using the USPACE kernel define. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39

CVS commit: src/usr.bin/systat

2020-08-26 Thread Simon Burge
Module Name:src Committed By: simonb Date: Wed Aug 26 10:56:01 UTC 2020 Modified Files: src/usr.bin/systat: ps.c Log Message: Use the vm.uspace sysctl instead of using the USPACE kernel define. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39

CVS commit: src/bin/ps

2020-08-26 Thread Simon Burge
Module Name:src Committed By: simonb Date: Wed Aug 26 10:54:13 UTC 2020 Modified Files: src/bin/ps: nlist.c Log Message: Don't rely on the USPACE kernel define as a fallback if the vm.uspace sysctl fails. We've got bigger problems if the sysctl fail anyway. To generate

CVS commit: src/bin/ps

2020-08-26 Thread Simon Burge
Module Name:src Committed By: simonb Date: Wed Aug 26 10:54:13 UTC 2020 Modified Files: src/bin/ps: nlist.c Log Message: Don't rely on the USPACE kernel define as a fallback if the vm.uspace sysctl fails. We've got bigger problems if the sysctl fail anyway. To generate

CVS commit: src/sys/arch/mips/include

2020-08-26 Thread Simon Burge
Module Name:src Committed By: simonb Date: Wed Aug 26 10:51:45 UTC 2020 Modified Files: src/sys/arch/mips/include: mips_param.h proc.h Log Message: Define a UPAGES_MAX constant to size the a md_upte array in MIPS's struct mdlwp. This is exposed to userland, so we can't

CVS commit: src/sys/arch/mips/include

2020-08-26 Thread Simon Burge
Module Name:src Committed By: simonb Date: Wed Aug 26 10:51:45 UTC 2020 Modified Files: src/sys/arch/mips/include: mips_param.h proc.h Log Message: Define a UPAGES_MAX constant to size the a md_upte array in MIPS's struct mdlwp. This is exposed to userland, so we can't

CVS commit: src/sys/dev/hid

2020-08-26 Thread Jaromir Dolecek
Module Name:src Committed By: jdolecek Date: Wed Aug 26 10:34:04 UTC 2020 Modified Files: src/sys/dev/hid: hidkbdmap.c Log Message: for jp keymap map also scan code 49 to right bracket to handle ARCHISS model PR kern/55608 by Shinichi Doyashiki To generate a diff of

CVS commit: src/sys/dev/hid

2020-08-26 Thread Jaromir Dolecek
Module Name:src Committed By: jdolecek Date: Wed Aug 26 10:34:04 UTC 2020 Modified Files: src/sys/dev/hid: hidkbdmap.c Log Message: for jp keymap map also scan code 49 to right bracket to handle ARCHISS model PR kern/55608 by Shinichi Doyashiki To generate a diff of