CVS commit: src/sys/arch/arm/nvidia

2019-10-12 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Oct 13 06:11:31 UTC 2019 Modified Files: src/sys/arch/arm/nvidia: tegra124_car.c tegra124_xusbpad.c tegra210_car.c tegra210_xusbpad.c tegra_apbdma.c tegra_cec.c tegra_com.c tegra_fuse.c tegra_gpio.c tegra

CVS commit: src/sys/arch/arm/nvidia

2019-10-12 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Oct 13 06:11:31 UTC 2019 Modified Files: src/sys/arch/arm/nvidia: tegra124_car.c tegra124_xusbpad.c tegra210_car.c tegra210_xusbpad.c tegra_apbdma.c tegra_cec.c tegra_com.c tegra_fuse.c tegra_gpio.c tegra

CVS commit: src/sys/arch/arm/sunxi

2019-10-12 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Oct 13 06:03:56 UTC 2019 Modified Files: src/sys/arch/arm/sunxi: sunxi_pwm.c Log Message: Use PRIxBUSADDR To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/sunxi/sunxi_pwm.c Please note that diffs

CVS commit: src/sys/arch/arm/sunxi

2019-10-12 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Oct 13 06:03:56 UTC 2019 Modified Files: src/sys/arch/arm/sunxi: sunxi_pwm.c Log Message: Use PRIxBUSADDR To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/sunxi/sunxi_pwm.c Please note that diffs

CVS commit: src/sys/arch/arm/nvidia

2019-10-12 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Oct 13 05:57:14 UTC 2019 Modified Files: src/sys/arch/arm/nvidia: tegra124_car.c tegra124_xusbpad.c tegra210_car.c tegra210_xusbpad.c tegra_apbdma.c tegra_cec.c tegra_com.c tegra_fuse.c tegra_gpio.c tegra

CVS commit: src/sys/arch/arm/nvidia

2019-10-12 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Oct 13 05:57:14 UTC 2019 Modified Files: src/sys/arch/arm/nvidia: tegra124_car.c tegra124_xusbpad.c tegra210_car.c tegra210_xusbpad.c tegra_apbdma.c tegra_cec.c tegra_com.c tegra_fuse.c tegra_gpio.c tegra

CVS commit: src/sys/arch/arm/nvidia

2019-10-12 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Oct 13 05:56:52 UTC 2019 Modified Files: src/sys/arch/arm/nvidia: tegra_drm_mode.c Log Message: Trailing whitespace To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/sys/arch/arm/nvidia/tegra_drm_mode.c Pleas

CVS commit: src/sys/arch/arm/nvidia

2019-10-12 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Oct 13 05:56:52 UTC 2019 Modified Files: src/sys/arch/arm/nvidia: tegra_drm_mode.c Log Message: Trailing whitespace To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/sys/arch/arm/nvidia/tegra_drm_mode.c Pleas

CVS commit: src/tests/lib/libc/sys

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Oct 13 04:05:39 UTC 2019 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Log Message: Enable TEST_LWP_ENABLED in t_ptrace_wait* The LWP events (created, exited) are now reliable in my local tests. PR kern/51420 PR ker

CVS commit: src/tests/lib/libc/sys

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Oct 13 04:05:39 UTC 2019 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Log Message: Enable TEST_LWP_ENABLED in t_ptrace_wait* The LWP events (created, exited) are now reliable in my local tests. PR kern/51420 PR ker

CVS commit: src/tests/lib/libc/sys

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Oct 13 04:00:12 UTC 2019 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Log Message: Bump the number of threads in LWP t_ptrace_wait*() tests from to 100 This is a torture, but on purpose to catch LWP_CREATED and LWP_

CVS commit: src/tests/lib/libc/sys

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Oct 13 04:00:12 UTC 2019 Modified Files: src/tests/lib/libc/sys: t_ptrace_wait.c Log Message: Bump the number of threads in LWP t_ptrace_wait*() tests from to 100 This is a torture, but on purpose to catch LWP_CREATED and LWP_

CVS commit: src/sys/kern

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Oct 13 03:50:26 UTC 2019 Modified Files: src/sys/kern: kern_sig.c Log Message: Avoid double lwp_exit() in eventswitch() For the PTRACE_LWP_EXIT event, the eventswitch() call is triggered from lwp_exit(). In the case of setting

CVS commit: src/sys/kern

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Oct 13 03:50:26 UTC 2019 Modified Files: src/sys/kern: kern_sig.c Log Message: Avoid double lwp_exit() in eventswitch() For the PTRACE_LWP_EXIT event, the eventswitch() call is triggered from lwp_exit(). In the case of setting

CVS commit: src/sys/kern

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Oct 13 03:19:57 UTC 2019 Modified Files: src/sys/kern: kern_sig.c Log Message: Fix one the the root causes of unreliability of the ptrace(2)ed threads In case of sigswitchin away in issignal() and continuing the execution on P

CVS commit: src/sys/kern

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Oct 13 03:19:57 UTC 2019 Modified Files: src/sys/kern: kern_sig.c Log Message: Fix one the the root causes of unreliability of the ptrace(2)ed threads In case of sigswitchin away in issignal() and continuing the execution on P

CVS commit: src/sys/kern

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Oct 13 03:10:22 UTC 2019 Modified Files: src/sys/kern: kern_sig.c Log Message: Add sigswitch_unlock_and_switch_away(), extracted from sigswitch() Use sigswitch_unlock_and_switch_away() whenever there is no need for sigswitch()

CVS commit: src/sys/kern

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Oct 13 03:10:22 UTC 2019 Modified Files: src/sys/kern: kern_sig.c Log Message: Add sigswitch_unlock_and_switch_away(), extracted from sigswitch() Use sigswitch_unlock_and_switch_away() whenever there is no need for sigswitch()

CVS commit: src/external/bsd/ipf/lib

2019-10-12 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Oct 13 01:17:24 UTC 2019 Modified Files: src/external/bsd/ipf/lib: Makefile Log Message: remove dated commented warning disable. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ipf/lib/Makefile Ple

CVS commit: src/external/bsd/ipf/lib

2019-10-12 Thread matthew green
Module Name:src Committed By: mrg Date: Sun Oct 13 01:17:24 UTC 2019 Modified Files: src/external/bsd/ipf/lib: Makefile Log Message: remove dated commented warning disable. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/bsd/ipf/lib/Makefile Ple

CVS commit: src/sys/sys

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Oct 12 19:59:57 UTC 2019 Modified Files: src/sys/sys: param.h Log Message: Welcome to 9.99.17! struct proc change sigswitch() removed from public API To generate a diff of this commit: cvs rdiff -u -r1.617 -r1.618 src/sys/sy

CVS commit: src/sys/sys

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Oct 12 19:59:57 UTC 2019 Modified Files: src/sys/sys: param.h Log Message: Welcome to 9.99.17! struct proc change sigswitch() removed from public API To generate a diff of this commit: cvs rdiff -u -r1.617 -r1.618 src/sys/sy

CVS commit: src/sys

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Oct 12 19:57:09 UTC 2019 Modified Files: src/sys/kern: kern_sig.c src/sys/sys: signalvar.h Log Message: Refactor sigswitch() Make the function static as it is now local to kern_sig.c. Rename the 'relock' argument to '

CVS commit: src/sys

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Oct 12 19:57:09 UTC 2019 Modified Files: src/sys/kern: kern_sig.c src/sys/sys: signalvar.h Log Message: Refactor sigswitch() Make the function static as it is now local to kern_sig.c. Rename the 'relock' argument to '

CVS commit: src/sys/sys

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Oct 12 19:38:57 UTC 2019 Modified Files: src/sys/sys: proc.h Log Message: Remove now unused p_oppid from struct proc To generate a diff of this commit: cvs rdiff -u -r1.356 -r1.357 src/sys/sys/proc.h Please note that diffs a

CVS commit: src/sys/sys

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Oct 12 19:38:57 UTC 2019 Modified Files: src/sys/sys: proc.h Log Message: Remove now unused p_oppid from struct proc To generate a diff of this commit: cvs rdiff -u -r1.356 -r1.357 src/sys/sys/proc.h Please note that diffs a

CVS commit: src/doc

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 18:35:52 UTC 2019 Modified Files: src/doc: 3RDPARTY CHANGES Log Message: new openssh To generate a diff of this commit: cvs rdiff -u -r1.1661 -r1.1662 src/doc/3RDPARTY cvs rdiff -u -r1.2592 -r1.2593 src/doc/CHANGES

CVS commit: src/doc

2019-10-12 Thread Christos Zoulas
source tree. @@ -55,3 +55,4 @@ Changes from NetBSD 9.0 to NetBSD 10.0: services(5): Update to version 2019-10-04 from IANA. [sevan 20191009] dhcpcd(8): Import dhcpcd-8.1.0 [roy 20191011] + OpenSSH: Import 8.1. [christos 20191012]

CVS commit: src/distrib/sets/lists

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 18:34:14 UTC 2019 Modified Files: src/distrib/sets/lists/base: shl.mi src/distrib/sets/lists/debug: shl.mi Log Message: bump libssh To generate a diff of this commit: cvs rdiff -u -r1.875 -r1.876 src/distrib

CVS commit: src/distrib/sets/lists

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 18:34:14 UTC 2019 Modified Files: src/distrib/sets/lists/base: shl.mi src/distrib/sets/lists/debug: shl.mi Log Message: bump libssh To generate a diff of this commit: cvs rdiff -u -r1.875 -r1.876 src/distrib

CVS commit: src/crypto/external/bsd/openssh

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 18:32:22 UTC 2019 Modified Files: src/crypto/external/bsd/openssh/bin/sftp-server: Makefile src/crypto/external/bsd/openssh/bin/ssh-keygen: Makefile src/crypto/external/bsd/openssh/bin/sshd: Makefile

CVS commit: src/crypto/external/bsd/openssh

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 18:32:22 UTC 2019 Modified Files: src/crypto/external/bsd/openssh/bin/sftp-server: Makefile src/crypto/external/bsd/openssh/bin/ssh-keygen: Makefile src/crypto/external/bsd/openssh/bin/sshd: Makefile

CVS commit: src/usr.bin/btpin

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 17:50:56 UTC 2019 Modified Files: src/usr.bin/btpin: btpin.c Log Message: avoid strcpy. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/usr.bin/btpin/btpin.c Please note that diffs are not public do

CVS commit: src/usr.bin/btpin

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 17:50:56 UTC 2019 Modified Files: src/usr.bin/btpin: btpin.c Log Message: avoid strcpy. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/usr.bin/btpin/btpin.c Please note that diffs are not public do

CVS commit: src/usr.sbin/catman

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 17:26:26 UTC 2019 Modified Files: src/usr.sbin/catman: catman.c Log Message: enlarge buffer sizes To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/usr.sbin/catman/catman.c Please note that diffs ar

CVS commit: src/usr.sbin/catman

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 17:26:26 UTC 2019 Modified Files: src/usr.sbin/catman: catman.c Log Message: enlarge buffer sizes To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/usr.sbin/catman/catman.c Please note that diffs ar

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

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 15:44:46 UTC 2019 Modified Files: src/sys/arch/amd64/include: pcb.h Log Message: disable CTASSERT for lint To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/sys/arch/amd64/include/pcb.h Please note

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

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 15:44:46 UTC 2019 Modified Files: src/sys/arch/amd64/include: pcb.h Log Message: disable CTASSERT for lint To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 src/sys/arch/amd64/include/pcb.h Please note

CVS import: src/crypto/external/bsd/openssh/dist

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 15:14:22 UTC 2019 Update of /cvsroot/src/crypto/external/bsd/openssh/dist In directory ivanova.netbsd.org:/tmp/cvs-serv21796 Log Message: OpenSSH 8.1 was released on 2019-10-09. It is available from the mirrors listed at http

CVS import: src/crypto/external/bsd/openssh/dist

2019-10-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat Oct 12 15:14:22 UTC 2019 Update of /cvsroot/src/crypto/external/bsd/openssh/dist In directory ivanova.netbsd.org:/tmp/cvs-serv21796 Log Message: OpenSSH 8.1 was released on 2019-10-09. It is available from the mirrors listed at http

CVS commit: [netbsd-9] src/doc

2019-10-12 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Sat Oct 12 15:12:09 UTC 2019 Modified Files: src/doc [netbsd-9]: CHANGES-9.0 Log Message: ticket 303 To generate a diff of this commit: cvs rdiff -u -r1.1.2.75 -r1.1.2.76 src/doc/CHANGES-9.0 Please note that diffs are not publi

CVS commit: [netbsd-9] src/doc

2019-10-12 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Sat Oct 12 15:12:09 UTC 2019 Modified Files: src/doc [netbsd-9]: CHANGES-9.0 Log Message: ticket 303 To generate a diff of this commit: cvs rdiff -u -r1.1.2.75 -r1.1.2.76 src/doc/CHANGES-9.0 Please note that diffs are not publi

CVS commit: [netbsd-9] src/sbin/newfs_msdos

2019-10-12 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Sat Oct 12 15:11:43 UTC 2019 Modified Files: src/sbin/newfs_msdos [netbsd-9]: mkfs_msdos.c Log Message: Pull up following revision(s) (requested by martin in ticket #303): sbin/newfs_msdos/mkfs_msdos.c: revision 1.15 When

CVS commit: [netbsd-9] src/sbin/newfs_msdos

2019-10-12 Thread Manuel Bouyer
Module Name:src Committed By: bouyer Date: Sat Oct 12 15:11:43 UTC 2019 Modified Files: src/sbin/newfs_msdos [netbsd-9]: mkfs_msdos.c Log Message: Pull up following revision(s) (requested by martin in ticket #303): sbin/newfs_msdos/mkfs_msdos.c: revision 1.15 When

CVS commit: [netbsd-9] src/doc

2019-10-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 12 14:49:29 UTC 2019 Modified Files: src/doc [netbsd-9]: CHANGES-9.0 Log Message: Tickets #301, #302 and #304 To generate a diff of this commit: cvs rdiff -u -r1.1.2.74 -r1.1.2.75 src/doc/CHANGES-9.0 Please note that di

CVS commit: [netbsd-9] src/common/lib/libc/arch/aarch64/gen

2019-10-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 12 14:48:32 UTC 2019 Modified Files: src/common/lib/libc/arch/aarch64/gen [netbsd-9]: byte_swap_8.S Log Message: Pull up following revision(s) (requested by maya in ticket #304): common/lib/libc/arch/aarch64/gen/b

CVS commit: [netbsd-9] src/common/lib/libc/arch/aarch64/gen

2019-10-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 12 14:48:32 UTC 2019 Modified Files: src/common/lib/libc/arch/aarch64/gen [netbsd-9]: byte_swap_8.S Log Message: Pull up following revision(s) (requested by maya in ticket #304): common/lib/libc/arch/aarch64/gen/b

CVS commit: [netbsd-9] src/doc

2019-10-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 12 14:49:29 UTC 2019 Modified Files: src/doc [netbsd-9]: CHANGES-9.0 Log Message: Tickets #301, #302 and #304 To generate a diff of this commit: cvs rdiff -u -r1.1.2.74 -r1.1.2.75 src/doc/CHANGES-9.0 Please note that di

CVS commit: [netbsd-9] src

2019-10-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 12 14:44:33 UTC 2019 Modified Files: src/doc [netbsd-9]: 3RDPARTY src/external/bsd/dhcpcd/dist/src [netbsd-9]: arp.c bpf.c bpf.h common.c common.h control.h defs.h dhcp-common.c dhcp-common.h dhcp.c dhcp

CVS commit: [netbsd-9] src

2019-10-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 12 14:44:33 UTC 2019 Modified Files: src/doc [netbsd-9]: 3RDPARTY src/external/bsd/dhcpcd/dist/src [netbsd-9]: arp.c bpf.c bpf.h common.c common.h control.h defs.h dhcp-common.c dhcp-common.h dhcp.c dhcp

CVS commit: [netbsd-9] src

2019-10-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 12 14:34:45 UTC 2019 Modified Files: src/sys/dev/tprof [netbsd-9]: tprof_x86_amd.c src/usr.sbin/tprof [netbsd-9]: tprof.8 src/usr.sbin/tprof/arch [netbsd-9]: tprof_x86.c Log Message: Pull up following revis

CVS commit: [netbsd-9] src

2019-10-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 12 14:34:45 UTC 2019 Modified Files: src/sys/dev/tprof [netbsd-9]: tprof_x86_amd.c src/usr.sbin/tprof [netbsd-9]: tprof.8 src/usr.sbin/tprof/arch [netbsd-9]: tprof_x86.c Log Message: Pull up following revis

CVS commit: src/sys/kern

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Oct 12 12:04:37 UTC 2019 Modified Files: src/sys/kern: sys_ptrace_common.c Log Message: Avoid signed integer overflow for -lwp where lwp is INT_MIN Reported-by: syzbot+68b80b44b898e66da...@syzkaller.appspotmail.com To genera

CVS commit: src/sys/kern

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Oct 12 12:04:37 UTC 2019 Modified Files: src/sys/kern: sys_ptrace_common.c Log Message: Avoid signed integer overflow for -lwp where lwp is INT_MIN Reported-by: syzbot+68b80b44b898e66da...@syzkaller.appspotmail.com To genera

CVS commit: src/sys/kern

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Oct 12 10:55:23 UTC 2019 Modified Files: src/sys/kern: kern_exec.c kern_fork.c kern_proc.c kern_sig.c Log Message: Remove p_oppid from struct proc This field is not needed as it duplicated p_opptr that is alread safe to use, u

CVS commit: src/sys/kern

2019-10-12 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Oct 12 10:55:23 UTC 2019 Modified Files: src/sys/kern: kern_exec.c kern_fork.c kern_proc.c kern_sig.c Log Message: Remove p_oppid from struct proc This field is not needed as it duplicated p_opptr that is alread safe to use, u

CVS commit: src/sys/arch/arm/broadcom

2019-10-12 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sat Oct 12 09:46:18 UTC 2019 Modified Files: src/sys/arch/arm/broadcom: bcm2835_gpio.c Log Message: off by one To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/arch/arm/broadcom/bcm2835_gpio.c Please note

CVS commit: src/sys/arch/arm/broadcom

2019-10-12 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sat Oct 12 09:46:18 UTC 2019 Modified Files: src/sys/arch/arm/broadcom: bcm2835_gpio.c Log Message: off by one To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/arch/arm/broadcom/bcm2835_gpio.c Please note

CVS commit: src/sbin/newfs_msdos

2019-10-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 12 09:42:39 UTC 2019 Modified Files: src/sbin/newfs_msdos: mkfs_msdos.c Log Message: When we end up with too few clusters for the requested FAT type after configuring default values, retry with a smaller cluster size. This

CVS commit: src/sbin/newfs_msdos

2019-10-12 Thread Martin Husemann
Module Name:src Committed By: martin Date: Sat Oct 12 09:42:39 UTC 2019 Modified Files: src/sbin/newfs_msdos: mkfs_msdos.c Log Message: When we end up with too few clusters for the requested FAT type after configuring default values, retry with a smaller cluster size. This

CVS commit: src/common/lib/libc/arch/aarch64/gen

2019-10-12 Thread Maya Rashish
Module Name:src Committed By: maya Date: Sat Oct 12 09:22:36 UTC 2019 Modified Files: src/common/lib/libc/arch/aarch64/gen: byte_swap_8.S Log Message: Remove htonll and ntohll as symbols from aarch64 libc. Other architectures do not define them, and so we don't provide a

CVS commit: src/common/lib/libc/arch/aarch64/gen

2019-10-12 Thread Maya Rashish
Module Name:src Committed By: maya Date: Sat Oct 12 09:22:36 UTC 2019 Modified Files: src/common/lib/libc/arch/aarch64/gen: byte_swap_8.S Log Message: Remove htonll and ntohll as symbols from aarch64 libc. Other architectures do not define them, and so we don't provide a

CVS commit: src/distrib/sets/lists

2019-10-12 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Oct 12 09:09:14 UTC 2019 Modified Files: src/distrib/sets/lists/base: shl.mi src/distrib/sets/lists/debug: shl.mi Log Message: remove shared libraries from 'obsolete' lists. should fix eg: /usr/pkg/lib/libaudiofile.s

CVS commit: src/distrib/sets/lists

2019-10-12 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Oct 12 09:09:14 UTC 2019 Modified Files: src/distrib/sets/lists/base: shl.mi src/distrib/sets/lists/debug: shl.mi Log Message: remove shared libraries from 'obsolete' lists. should fix eg: /usr/pkg/lib/libaudiofile.s

CVS commit: src/sys/dev/pci

2019-10-12 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Oct 12 07:38:28 UTC 2019 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.1375 -r1.1376 src/sys/dev/pci/pcidevs.h cvs rdiff -u -r1.1374 -r1.1375