CVS commit: src/sys/dev/audio

2019-07-10 Thread Tetsuya Isaki
Module Name:src Committed By: isaki Date: Wed Jul 10 13:17:57 UTC 2019 Modified Files: src/sys/dev/audio: audio.c Log Message: Fix freem() argument. The 3rd argument is bufsize, not direction... To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27

CVS commit: src/sys/dev/audio

2019-07-10 Thread Tetsuya Isaki
Module Name:src Committed By: isaki Date: Wed Jul 10 13:26:47 UTC 2019 Modified Files: src/sys/dev/audio: audio.c Log Message: Use kmem_alloc/free() instead of old kern_malloc/free(). To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28

CVS commit: src/sys/dev/audio

2019-07-10 Thread Tetsuya Isaki
Module Name:src Committed By: isaki Date: Wed Jul 10 13:26:47 UTC 2019 Modified Files: src/sys/dev/audio: audio.c Log Message: Use kmem_alloc/free() instead of old kern_malloc/free(). To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28

CVS commit: src/sys/dev/audio

2019-07-10 Thread Tetsuya Isaki
Module Name:src Committed By: isaki Date: Wed Jul 10 13:17:57 UTC 2019 Modified Files: src/sys/dev/audio: audio.c Log Message: Fix freem() argument. The 3rd argument is bufsize, not direction... To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27

CVS commit: src/external/bsd/unbound/dist/libunbound

2019-07-10 Thread Roy Marples
Module Name:src Committed By: roy Date: Wed Jul 10 13:41:14 UTC 2019 Modified Files: src/external/bsd/unbound/dist/libunbound: unbound.h Log Message: libunbound: set real version in unbound.h To generate a diff of this commit: cvs rdiff -u -r1.1.1.4 -r1.2 \

CVS commit: src/external/bsd/unbound/dist/libunbound

2019-07-10 Thread Roy Marples
Module Name:src Committed By: roy Date: Wed Jul 10 13:41:14 UTC 2019 Modified Files: src/external/bsd/unbound/dist/libunbound: unbound.h Log Message: libunbound: set real version in unbound.h To generate a diff of this commit: cvs rdiff -u -r1.1.1.4 -r1.2 \

CVS commit: src/usr.sbin/sysinst

2019-07-10 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Jul 10 16:35:11 UTC 2019 Modified Files: src/usr.sbin/sysinst: disklabel.c Log Message: When deleting all partitions (e.g. before we use the default partition sizes) do not kill the geometry information in the internal

CVS commit: src/usr.sbin/sysinst

2019-07-10 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Jul 10 16:35:11 UTC 2019 Modified Files: src/usr.sbin/sysinst: disklabel.c Log Message: When deleting all partitions (e.g. before we use the default partition sizes) do not kill the geometry information in the internal

CVS commit: src/sys/kern

2019-07-10 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Jul 10 17:32:38 UTC 2019 Modified Files: src/sys/kern: subr_cprng.c Log Message: Zero out 'cprng->cs_name' entirely. Otherwise the RND pool gets polluted by uninitialized bits from the end of the string. To generate a diff of

CVS commit: src/sys/kern

2019-07-10 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Jul 10 17:32:38 UTC 2019 Modified Files: src/sys/kern: subr_cprng.c Log Message: Zero out 'cprng->cs_name' entirely. Otherwise the RND pool gets polluted by uninitialized bits from the end of the string. To generate a diff of

CVS commit: src/sys/kern

2019-07-10 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Jul 10 17:52:22 UTC 2019 Modified Files: src/sys/kern: sys_lwp.c Log Message: Fix info leak: instead of using SS_INIT as a literal compound, use a global variable from rodata. The compound gets pushed on the stack, the padding

CVS commit: src/sys/kern

2019-07-10 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Jul 10 17:52:22 UTC 2019 Modified Files: src/sys/kern: sys_lwp.c Log Message: Fix info leak: instead of using SS_INIT as a literal compound, use a global variable from rodata. The compound gets pushed on the stack, the padding

CVS commit: src/lib/libc/sys

2019-07-10 Thread Michał Górny
Module Name:src Committed By: mgorny Date: Wed Jul 10 19:03:47 UTC 2019 Modified Files: src/lib/libc/sys: ptrace.2 Log Message: Fix typo: SIGRAP -> SIGTRAP To generate a diff of this commit: cvs rdiff -u -r1.76 -r1.77 src/lib/libc/sys/ptrace.2 Please note that diffs

CVS commit: src/lib/libc/sys

2019-07-10 Thread Michał Górny
Module Name:src Committed By: mgorny Date: Wed Jul 10 19:03:47 UTC 2019 Modified Files: src/lib/libc/sys: ptrace.2 Log Message: Fix typo: SIGRAP -> SIGTRAP To generate a diff of this commit: cvs rdiff -u -r1.76 -r1.77 src/lib/libc/sys/ptrace.2 Please note that diffs

CVS commit: src/sys/net

2019-07-10 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Jul 10 17:55:33 UTC 2019 Modified Files: src/sys/net: bpf.c Log Message: Fix info leak: use kmem_zalloc, because we align the buffers, and the otherwise uninitialized padding bytes get copied to userland in bpf_read(). To

CVS commit: src/sys/net

2019-07-10 Thread Maxime Villard
Module Name:src Committed By: maxv Date: Wed Jul 10 17:55:33 UTC 2019 Modified Files: src/sys/net: bpf.c Log Message: Fix info leak: use kmem_zalloc, because we align the buffers, and the otherwise uninitialized padding bytes get copied to userland in bpf_read(). To

CVS commit: src/sys/dev

2019-07-10 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jul 10 16:23:55 UTC 2019 Modified Files: src/sys/dev/ic: nslm7x.c src/sys/dev/isa: wbsio.c wbsioreg.h Log Message: Identify Nuvoton NCT6798D correctly. It seems that the bit width of NCT6796D and newer devices'

CVS commit: src/sys/dev

2019-07-10 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Wed Jul 10 16:23:55 UTC 2019 Modified Files: src/sys/dev/ic: nslm7x.c src/sys/dev/isa: wbsio.c wbsioreg.h Log Message: Identify Nuvoton NCT6798D correctly. It seems that the bit width of NCT6796D and newer devices'

CVS commit: src/lib/libc/sys

2019-07-10 Thread Michał Górny
Module Name:src Committed By: mgorny Date: Wed Jul 10 19:51:14 UTC 2019 Modified Files: src/lib/libc/sys: ptrace.2 Log Message: Improve/fix doc of PT_SETSTEP and PT_CLEARSTEP. Reviewed by kamil. To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78

CVS commit: src/lib/libc/sys

2019-07-10 Thread Michał Górny
Module Name:src Committed By: mgorny Date: Wed Jul 10 19:51:14 UTC 2019 Modified Files: src/lib/libc/sys: ptrace.2 Log Message: Improve/fix doc of PT_SETSTEP and PT_CLEARSTEP. Reviewed by kamil. To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78

CVS commit: src/external/mit/xorg/lib/libepoxy

2019-07-10 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Jul 10 21:32:22 UTC 2019 Modified Files: src/external/mit/xorg/lib/libepoxy: Makefile Log Message: handle @epoxy_has_glx@, @epoxy_has_egl@, and @epoxy_has_wgl@. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6

CVS commit: xsrc/external/mit/libepoxy/dist

2019-07-10 Thread matthew green
Module Name:xsrc Committed By: mrg Date: Wed Jul 10 21:32:56 UTC 2019 Modified Files: xsrc/external/mit/libepoxy/dist: configure Log Message: update fake configure to libepoxy 1.4.3. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2

CVS commit: src/external/mit/xorg/lib/libepoxy

2019-07-10 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Jul 10 21:32:22 UTC 2019 Modified Files: src/external/mit/xorg/lib/libepoxy: Makefile Log Message: handle @epoxy_has_glx@, @epoxy_has_egl@, and @epoxy_has_wgl@. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6

CVS commit: src/share/mk

2019-07-10 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Jul 10 21:53:35 UTC 2019 Modified Files: src/share/mk: bsd.x11.mk Log Message: break the build if a .pc generation leaves something matching "@.*@". this is an error in the build that doesn't trigger issues until you try to

CVS commit: src/share/mk

2019-07-10 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Jul 10 21:53:35 UTC 2019 Modified Files: src/share/mk: bsd.x11.mk Log Message: break the build if a .pc generation leaves something matching "@.*@". this is an error in the build that doesn't trigger issues until you try to

CVS commit: src/lib/libc/sys

2019-07-10 Thread Michał Górny
Module Name:src Committed By: mgorny Date: Thu Jul 11 03:30:01 UTC 2019 Modified Files: src/lib/libc/sys: ptrace.2 Log Message: Fix thinko: syscalls -> signals To generate a diff of this commit: cvs rdiff -u -r1.78 -r1.79 src/lib/libc/sys/ptrace.2 Please note that

CVS commit: src/lib/libc/sys

2019-07-10 Thread Michał Górny
Module Name:src Committed By: mgorny Date: Thu Jul 11 03:30:01 UTC 2019 Modified Files: src/lib/libc/sys: ptrace.2 Log Message: Fix thinko: syscalls -> signals To generate a diff of this commit: cvs rdiff -u -r1.78 -r1.79 src/lib/libc/sys/ptrace.2 Please note that

CVS commit: src

2019-07-10 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Jul 11 03:49:52 UTC 2019 Modified Files: src/sys/arch/i386/stand/bootxx: bootxx.S src/sys/arch/m68k/m68k: db_disasm.c src/sys/dev/pci: if_vgereg.h src/sys/dev/raidframe: rf_dagflags.h rf_stripelocks.c

CVS commit: src

2019-07-10 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Thu Jul 11 03:49:52 UTC 2019 Modified Files: src/sys/arch/i386/stand/bootxx: bootxx.S src/sys/arch/m68k/m68k: db_disasm.c src/sys/dev/pci: if_vgereg.h src/sys/dev/raidframe: rf_dagflags.h rf_stripelocks.c

CVS import: xsrc/external/mit/libXt/dist

2019-07-10 Thread matthew green
Module Name:xsrc Committed By: mrg Date: Thu Jul 11 05:43:11 UTC 2019 Update of /cvsroot/xsrc/external/mit/libXt/dist In directory ivanova.netbsd.org:/tmp/cvs-serv5695 Log Message: initial import of libXt-1.2.0 Status: Vendor Tag: xorg Release Tags: libXt-1-2-0

CVS import: xsrc/external/mit/libXt/dist

2019-07-10 Thread matthew green
Module Name:xsrc Committed By: mrg Date: Thu Jul 11 05:43:11 UTC 2019 Update of /cvsroot/xsrc/external/mit/libXt/dist In directory ivanova.netbsd.org:/tmp/cvs-serv5695 Log Message: initial import of libXt-1.2.0 Status: Vendor Tag: xorg Release Tags: libXt-1-2-0

CVS commit: xsrc/external/mit/libXt/dist

2019-07-10 Thread matthew green
Module Name:xsrc Committed By: mrg Date: Thu Jul 11 05:43:50 UTC 2019 Modified Files: xsrc/external/mit/libXt/dist: compile xsrc/external/mit/libXt/dist/man: XtAppCreateShell.man xsrc/external/mit/libXt/dist/src: Convert.c NextEvent.c ResConfig.c

CVS commit: src/external/mit/xorg/lib/libXt

2019-07-10 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jul 11 05:44:08 UTC 2019 Modified Files: src/external/mit/xorg/lib/libXt: Makefile Log Message: define _CONST_X_STRING for libXt 1.2.0 To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7

CVS commit: src/external/mit/xorg/lib/libXt

2019-07-10 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jul 11 05:44:08 UTC 2019 Modified Files: src/external/mit/xorg/lib/libXt: Makefile Log Message: define _CONST_X_STRING for libXt 1.2.0 To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7

CVS commit: src/sys/dev/hid

2019-07-10 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Jul 10 10:07:23 UTC 2019 Modified Files: src/sys/dev/hid: files.hid Log Message: hidms depends on tpcalib now To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/dev/hid/files.hid Please note that diffs are

CVS commit: src/sys/dev/hid

2019-07-10 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Jul 10 10:07:23 UTC 2019 Modified Files: src/sys/dev/hid: files.hid Log Message: hidms depends on tpcalib now To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/dev/hid/files.hid Please note that diffs are

CVS commit: src/tests/dev/raidframe

2019-07-10 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Jul 10 06:10:54 UTC 2019 Modified Files: src/tests/dev/raidframe: t_raid.sh Log Message: Reduce disk image size for tests (PR 44239 has been fixed) To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14

CVS commit: src/tests/dev/raidframe

2019-07-10 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Jul 10 06:10:54 UTC 2019 Modified Files: src/tests/dev/raidframe: t_raid.sh Log Message: Reduce disk image size for tests (PR 44239 has been fixed) To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14

CVS commit: src/tests/dev/cgd

2019-07-10 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Jul 10 06:21:40 UTC 2019 Modified Files: src/tests/dev/cgd: t_cgd_aes.c Log Message: Gracefully skip test if not enough space in temporary directory. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7

CVS commit: src/tests/dev/cgd

2019-07-10 Thread Martin Husemann
Module Name:src Committed By: martin Date: Wed Jul 10 06:21:40 UTC 2019 Modified Files: src/tests/dev/cgd: t_cgd_aes.c Log Message: Gracefully skip test if not enough space in temporary directory. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7

CVS commit: xsrc/external/mit/libepoxy/dist/src

2019-07-10 Thread matthew green
Module Name:xsrc Committed By: mrg Date: Wed Jul 10 07:10:48 UTC 2019 Modified Files: xsrc/external/mit/libepoxy/dist/src: dispatch_common.h Log Message: fix conditional to avoid redefinition. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 \

CVS commit: xsrc/external/mit/libepoxy/dist/src

2019-07-10 Thread matthew green
Module Name:xsrc Committed By: mrg Date: Wed Jul 10 07:10:48 UTC 2019 Modified Files: xsrc/external/mit/libepoxy/dist/src: dispatch_common.h Log Message: fix conditional to avoid redefinition. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 \