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

2018-05-30 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed May 30 09:17:17 UTC 2018 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c Log Message: Add hw.ixgN.debug sysctl. "sysctl -w hw.ixgN.debug=1" dumps some registers to console. To generate a diff of this commit: cvs rdiff -u

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

2018-05-30 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed May 30 08:35:27 UTC 2018 Modified Files: src/sys/dev/pci/ixgbe: ixgbe.c ixv.c Log Message: Clear que->disabled_count in {ixgbe,ixv}_init_locked(). Without this, interrupt mask state and EIMS may mismatch and if_init doesn't

CVS commit: src/sys/netipsec

2018-05-30 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed May 30 16:15:19 UTC 2018 Modified Files: src/sys/netipsec: xform_esp.c Log Message: Rename padding -> padlen, pad -> tail, and clarify. To generate a diff of this commit: cvs rdiff -u -r1.89 -r1.90

CVS commit: src/sys/dev/pckbport

2018-05-30 Thread Ryo ONODERA
Module Name:src Committed By: ryoon Date: Wed May 30 13:20:39 UTC 2018 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Remove double and trailing whitespaces To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/sys/dev/pckbport/synaptics.c

CVS commit: src/sys/netipsec

2018-05-30 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed May 30 16:43:29 UTC 2018 Modified Files: src/sys/netipsec: xform_esp.c Log Message: Remove dead code, 'espx' is never NULL and dereferenced earlier, so no need to NULL-check all the time. To generate a diff of this commit:

CVS commit: src/sys/netipsec

2018-05-30 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed May 30 16:49:38 UTC 2018 Modified Files: src/sys/netipsec: xform_esp.c Log Message: Apply the previous change in esp_input too, same as esp_output. To generate a diff of this commit: cvs rdiff -u -r1.92 -r1.93

CVS commit: src/sys/netipsec

2018-05-30 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed May 30 16:32:26 UTC 2018 Modified Files: src/sys/netipsec: xform_esp.c Log Message: Simplify the padding computation. Until now 'padlen' contained the ESP Trailer (two bytes), and we were doing minus two all the time. Declare

CVS commit: src/sys/netipsec

2018-05-30 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed May 30 18:02:41 UTC 2018 Modified Files: src/sys/netipsec: xform_ah.c Log Message: Correctly handle the padding for IPv6-AH, as specified by RFC4302. Seen in a FreeBSD bug report, by Jason Mader. The RFC specifies that under

CVS commit: src/tests

2018-05-30 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Wed May 30 17:48:13 UTC 2018 Modified Files: src/tests/kernel: h_segv.c src/tests/lib/libc/sys: t_ptrace_wait.h Log Message: Add a comment for the workaround in trigger_bus() Explain PROT_READ|PROT_WRITE. To generate a

CVS commit: src/sys/netipsec

2018-05-30 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed May 30 17:17:11 UTC 2018 Modified Files: src/sys/netipsec: xform.h xform_ah.c xform_esp.c Log Message: Introduce ah_authsiz, which computes the length of the ICV only. Use it in esp_hdrsiz, and clarify. Until now we were using

CVS commit: src/tests

2018-05-30 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Wed May 30 17:31:34 UTC 2018 Modified Files: src/tests/kernel: h_segv.c src/tests/lib/libc/sys: t_ptrace_wait.h Log Message: Make the trigger_bus() test compatible with more CPUs (at least ALPHA) If we write a byte

CVS commit: src

2018-05-30 Thread matthew green
Module Name:src Committed By: mrg Date: Thu May 31 05:27:46 UTC 2018 Modified Files: src/distrib/sets: mkvars.mk src/distrib/sets/lists/base: mi src/external/atheros: Makefile src/external/broadcom: Makefile src/external/intel-fw-eula:

CVS commit: src/sys/netipsec

2018-05-30 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Thu May 31 05:52:09 UTC 2018 Modified Files: src/sys/netipsec: xform_esp.c Log Message: style To generate a diff of this commit: cvs rdiff -u -r1.94 -r1.95 src/sys/netipsec/xform_esp.c Please note that diffs are not public

CVS commit: src/sys/net

2018-05-30 Thread Ryota Ozaki
Module Name:src Committed By: ozaki-r Date: Thu May 31 02:10:23 UTC 2018 Modified Files: src/sys/net: if.c Log Message: Relax a lock check in if_mcast_op unless NET_MPSAFE It seems that there remain some paths that don't satisfy the constraint that is required only if

CVS commit: src/sys/dev/pci

2018-05-30 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu May 31 02:50:38 UTC 2018 Modified Files: src/sys/dev/pci: pcidevs.h pcidevs_data.h Log Message: Regen. To generate a diff of this commit: cvs rdiff -u -r1.1328 -r1.1329 src/sys/dev/pci/pcidevs.h cvs rdiff -u -r1.1327

CVS commit: src/share/man/man7

2018-05-30 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Wed May 30 23:41:44 UTC 2018 Modified Files: src/share/man/man7: signal.7 Log Message: Avoid widowed signal numbers. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/share/man/man7/signal.7 Please note that diffs

CVS commit: src/sys/kern

2018-05-30 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Wed May 30 23:54:03 UTC 2018 Modified Files: src/sys/kern: sys_ptrace_common.c Log Message: Simplify comparison of two processes No need to check p_pid to compare whether two processes are the same. No functional change

CVS commit: src/distrib/sets/lists/man

2018-05-30 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu May 31 00:25:38 UTC 2018 Modified Files: src/distrib/sets/lists/man: mi Log Message: Fix build with MKCATPAGES=yes zpool-features.8 -> zpool-features.0 To generate a diff of this commit: cvs rdiff -u -r1.1592 -r1.1593

CVS commit: src/sys/dev/pci

2018-05-30 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu May 31 02:50:14 UTC 2018 Modified Files: src/sys/dev/pci: pcidevs Log Message: - Add some Intel 82965 devices. - Change Intel 0x2a06 from IDE to IDER To generate a diff of this commit: cvs rdiff -u -r1.1337 -r1.1338

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

2018-05-30 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu May 31 03:29:01 UTC 2018 Modified Files: src/sys/arch/x86/include: specialreg.h Log Message: Fix the bit location of SSBD in the macro for snprintb. To generate a diff of this commit: cvs rdiff -u -r1.125 -r1.126

CVS commit: src/share/man/man7

2018-05-30 Thread Valeriy E. Ushakov
Module Name:src Committed By: uwe Date: Wed May 30 23:24:13 UTC 2018 Modified Files: src/share/man/man7: signal.7 Log Message: Shorten pleonastic "by the tty driver tty(4)". To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/share/man/man7/signal.7

CVS commit: src/external

2018-05-30 Thread matthew green
Module Name:src Committed By: mrg Date: Wed May 30 20:54:08 UTC 2018 Modified Files: src/external/atheros/athn: Makefile src/external/atheros/otus: Makefile src/external/broadcom/bcm43xx: Makefile src/external/broadcom/bwfm: Makefile