CVS commit: src/sys/kern

2019-08-02 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 2 22:46:44 UTC 2019 Modified Files: src/sys/kern: kern_proc.c Log Message: Update our vm resource use for sysctl(3) call reading kinfo_proc* Without this change RSS properties are zeroed unless a process exits or calls ge

CVS commit: src/sys/kern

2019-08-02 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 2 22:46:44 UTC 2019 Modified Files: src/sys/kern: kern_proc.c Log Message: Update our vm resource use for sysctl(3) call reading kinfo_proc* Without this change RSS properties are zeroed unless a process exits or calls ge

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

2019-08-05 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Aug 6 01:34:29 UTC 2019 Modified Files: src/sys/arch/amd64/amd64: process_machdep.c Log Message: Do not dereference user pointer in ptrace_machdep_dorequest()/amd64 Always use copyin(9) for reading user memory. This fixes SM

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

2019-08-05 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Aug 6 01:34:29 UTC 2019 Modified Files: src/sys/arch/amd64/amd64: process_machdep.c Log Message: Do not dereference user pointer in ptrace_machdep_dorequest()/amd64 Always use copyin(9) for reading user memory. This fixes SM

CVS commit: src/sys/arch/i386/i386

2019-08-05 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Aug 6 02:04:43 UTC 2019 Modified Files: src/sys/arch/i386/i386: process_machdep.c Log Message: Do not dereference user pointer in ptrace_machdep_dorequest()/i386 Always use copyin(9) for reading user memory. To generate a d

CVS commit: src/sys/arch/i386/i386

2019-08-05 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Aug 6 02:04:43 UTC 2019 Modified Files: src/sys/arch/i386/i386: process_machdep.c Log Message: Do not dereference user pointer in ptrace_machdep_dorequest()/i386 Always use copyin(9) for reading user memory. To generate a d

CVS commit: src/sys/sys

2019-08-06 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Aug 6 11:21:59 UTC 2019 Modified Files: src/sys/sys: event.h Log Message: Make EV_SET() casts compatible with the C++ code EV_SET() handles cast that are expected to work with alternative kqueue/kevent implementations that ta

CVS commit: src/sys/sys

2019-08-06 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Aug 6 11:21:59 UTC 2019 Modified Files: src/sys/sys: event.h Log Message: Make EV_SET() casts compatible with the C++ code EV_SET() handles cast that are expected to work with alternative kqueue/kevent implementations that ta

CVS commit: src/bin/ps

2019-08-06 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Aug 6 18:07:51 UTC 2019 Modified Files: src/bin/ps: keyword.c ps.1 Log Message: Restore maxrss, idrss, isrss, ixrss printing in ps(1) The RSS related statistics are now back in the NetBSD kernel. These values were disabled s

CVS commit: src/bin/ps

2019-08-06 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Aug 6 18:07:51 UTC 2019 Modified Files: src/bin/ps: keyword.c ps.1 Log Message: Restore maxrss, idrss, isrss, ixrss printing in ps(1) The RSS related statistics are now back in the NetBSD kernel. These values were disabled s

CVS commit: src/external/bsd/compiler_rt

2019-08-08 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 8 14:00:33 UTC 2019 Added Files: src/external/bsd/compiler_rt: Makefile src/external/bsd/compiler_rt/lib: Makefile src/external/bsd/compiler_rt/lib/clang: Makefile src/external/bsd/compiler_rt/lib/cl

CVS commit: src/external/bsd/compiler_rt

2019-08-08 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 8 14:00:33 UTC 2019 Added Files: src/external/bsd/compiler_rt: Makefile src/external/bsd/compiler_rt/lib: Makefile src/external/bsd/compiler_rt/lib/clang: Makefile src/external/bsd/compiler_rt/lib/cl

CVS commit: src/sys/sys

2019-08-10 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 10 11:20:50 UTC 2019 Modified Files: src/sys/sys: event.h Log Message: Add fallback defintion for C++ of _EV_SET with the last argument of type 0 Converting 0 to intptr and void* is ambiguous according to a C++ compiler. N

CVS commit: src/sys/sys

2019-08-10 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 10 11:20:50 UTC 2019 Modified Files: src/sys/sys: event.h Log Message: Add fallback defintion for C++ of _EV_SET with the last argument of type 0 Converting 0 to intptr and void* is ambiguous according to a C++ compiler. N

CVS commit: src/sys/sys

2019-08-10 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 10 15:02:03 UTC 2019 Modified Files: src/sys/sys: event.h Log Message: Handle more corner cases in sys/event.h for C++ EV_SET() Handle the udata argument as Plain-Old-Data types separately. - int, long int, long long int

CVS commit: src/sys/sys

2019-08-10 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 10 15:02:03 UTC 2019 Modified Files: src/sys/sys: event.h Log Message: Handle more corner cases in sys/event.h for C++ EV_SET() Handle the udata argument as Plain-Old-Data types separately. - int, long int, long long int

CVS commit: src/sys/sys

2019-08-10 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 10 20:33:01 UTC 2019 Modified Files: src/sys/sys: event.h Log Message: Use common macro for _EV_SET() for integer types Deduplicate code. No functional change change intended. To generate a diff of this commit: cvs rdif

CVS commit: src/sys/sys

2019-08-10 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 10 20:33:01 UTC 2019 Modified Files: src/sys/sys: event.h Log Message: Use common macro for _EV_SET() for integer types Deduplicate code. No functional change change intended. To generate a diff of this commit: cvs rdif

Re: CVS commit: src/sys/sys

2019-08-10 Thread Kamil Rytarowski
On 10.08.2019 22:37, m...@netbsd.org wrote: > On Sat, Aug 10, 2019 at 08:33:01PM +0000, Kamil Rytarowski wrote: >> Module Name: src >> Committed By:kamil >> Date:Sat Aug 10 20:33:01 UTC 2019 >> >> Modified Files: >> src/sys/sys: e

CVS commit: src/sys/sys

2019-08-10 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 10 23:47:13 UTC 2019 Modified Files: src/sys/sys: event.h Log Message: Fix typo in pragma in sys/event.h Reenable -Wconversion-null. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/sys/sys/event.h Plea

CVS commit: src/sys/sys

2019-08-10 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 10 23:47:13 UTC 2019 Modified Files: src/sys/sys: event.h Log Message: Fix typo in pragma in sys/event.h Reenable -Wconversion-null. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/sys/sys/event.h Plea

Re: CVS commit: src/sys/sys

2019-08-11 Thread Kamil Rytarowski
On 11.08.2019 09:17, Martin Husemann wrote: > On Sat, Aug 10, 2019 at 11:37:28PM +0200, Kamil Rytarowski wrote: >>> can we go back to the drawing board on this one and discuss the original >>> problem? >>> >> >> C++ and cast rules. > > The questi

CVS commit: src/sys/external/bsd/compiler_rt/dist/lib

2019-08-13 Thread Kamil Rytarowski
with NetBSD 9.99.3 * ioctl(2) lists are synced with NetBSD 9.99.3 * fixes dynamic asan (-fsanitize=address -shared-libasa) crash on init commit 092068cd7429659138d6779a3072298462ad3e9c Author: Kamil Rytarowski Date: Wed Aug 7 21:56:43 2019 + Restrict the NetBSD ASan TSD fallback to

CVS commit: src/sys/external/bsd/compiler_rt/dist/lib

2019-08-13 Thread Kamil Rytarowski
with NetBSD 9.99.3 * ioctl(2) lists are synced with NetBSD 9.99.3 * fixes dynamic asan (-fsanitize=address -shared-libasa) crash on init commit 092068cd7429659138d6779a3072298462ad3e9c Author: Kamil Rytarowski Date: Wed Aug 7 21:56:43 2019 + Restrict the NetBSD ASan TSD fallback to

CVS commit: src

2019-08-13 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Wed Aug 14 01:42:08 UTC 2019 Modified Files: src/distrib/sets/lists/base: md.amd64 mi src/distrib/sets/lists/comp: mi src/etc/mtree: NetBSD.dist.base src/external/bsd: Makefile Log Message: Add LLVM sanitize

CVS commit: src

2019-08-13 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Wed Aug 14 01:42:08 UTC 2019 Modified Files: src/distrib/sets/lists/base: md.amd64 mi src/distrib/sets/lists/comp: mi src/etc/mtree: NetBSD.dist.base src/external/bsd: Makefile Log Message: Add LLVM sanitize

CVS commit: src/libexec/telnetd

2019-08-14 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 01:15:21 UTC 2019 Modified Files: src/libexec/telnetd: sys_term.c telnetd.c Log Message: telnetd: Stop defining the same variables concurrently in bss and data auth_level and require_secure_login were defined in two pla

CVS commit: src/libexec/telnetd

2019-08-14 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 01:15:21 UTC 2019 Modified Files: src/libexec/telnetd: sys_term.c telnetd.c Log Message: telnetd: Stop defining the same variables concurrently in bss and data auth_level and require_secure_login were defined in two pla

CVS commit: src/sbin

2019-08-14 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 03:10:43 UTC 2019 Modified Files: src/sbin/fsck_ext2fs: main.c src/sbin/fsck_ffs: main.c src/sbin/fsck_lfs: main.c Log Message: fsck: Stop defining the same variable concurrently in bss and data returnto

CVS commit: src/sbin

2019-08-14 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 03:10:43 UTC 2019 Modified Files: src/sbin/fsck_ext2fs: main.c src/sbin/fsck_ffs: main.c src/sbin/fsck_lfs: main.c Log Message: fsck: Stop defining the same variable concurrently in bss and data returnto

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

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:17:32 UTC 2019 Modified Files: src/tests/lib/libc/misc: Makefile Log Message: Fix build of t_ubsan/t_ubsanxx under MKSANITIZER Do not link micro-ubsan runtime for disabled tests. This avoids double symbols linked in

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

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:17:32 UTC 2019 Modified Files: src/tests/lib/libc/misc: Makefile Log Message: Fix build of t_ubsan/t_ubsanxx under MKSANITIZER Do not link micro-ubsan runtime for disabled tests. This avoids double symbols linked in

CVS commit: src/tests/usr.bin/id

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:22:52 UTC 2019 Modified Files: src/tests/usr.bin/id: Makefile Log Message: Avoid symbol clashes in tests/usr.bin/id under MKSANITIZER Remove symbol conflicts for: - __getpwnam50 - __getpwuid50 - getgrgid - getgr

CVS commit: src/tests/usr.bin/id

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:22:52 UTC 2019 Modified Files: src/tests/usr.bin/id: Makefile Log Message: Avoid symbol clashes in tests/usr.bin/id under MKSANITIZER Remove symbol conflicts for: - __getpwnam50 - __getpwuid50 - getgrgid - getgr

CVS commit: src/tests/fs/nfs/nfsservice

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:23:45 UTC 2019 Modified Files: src/tests/fs/nfs/nfsservice: Makefile Log Message: Avoid symbol clashes in fs/nfs/nfsservice under MKSANITIZER Remove symbol conflicts for: __getmntinfo13 To generate a diff of this c

CVS commit: src/tests/fs/nfs/nfsservice

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:23:45 UTC 2019 Modified Files: src/tests/fs/nfs/nfsservice: Makefile Log Message: Avoid symbol clashes in fs/nfs/nfsservice under MKSANITIZER Remove symbol conflicts for: __getmntinfo13 To generate a diff of this c

CVS commit: src/tests/bin/df

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:24:11 UTC 2019 Modified Files: src/tests/bin/df: Makefile Log Message: Avoid symbol clashes in bin/df under MKSANITIZER Remove symbol conflicts for: __getmntinfo13 To generate a diff of this commit: cvs rdiff -u -r

CVS commit: src/tests/bin/df

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:24:11 UTC 2019 Modified Files: src/tests/bin/df: Makefile Log Message: Avoid symbol clashes in bin/df under MKSANITIZER Remove symbol conflicts for: __getmntinfo13 To generate a diff of this commit: cvs rdiff -u -r

CVS commit: src/usr.sbin/ypserv/ypserv

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:30:19 UTC 2019 Modified Files: src/usr.sbin/ypserv/ypserv: Makefile Log Message: Avoid symbol clashes in usr.sbin/ypserv/ypserv under MKSANITIZER Remove symbol conflicts for: gethostbyname2 To generate a diff of th

CVS commit: src/usr.sbin/ypserv/ypserv

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:30:19 UTC 2019 Modified Files: src/usr.sbin/ypserv/ypserv: Makefile Log Message: Avoid symbol clashes in usr.sbin/ypserv/ypserv under MKSANITIZER Remove symbol conflicts for: gethostbyname2 To generate a diff of th

CVS commit: src/usr.sbin

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:34:19 UTC 2019 Modified Files: src/usr.sbin/rpc.bootparamd: bootparamd.c src/usr.sbin/rpc.lockd: lockd.c src/usr.sbin/rpc.statd: statd.c Log Message: Stop defining _rpcsvcdirty in bss and data _rpcsvc

CVS commit: src/usr.sbin

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:34:19 UTC 2019 Modified Files: src/usr.sbin/rpc.bootparamd: bootparamd.c src/usr.sbin/rpc.lockd: lockd.c src/usr.sbin/rpc.statd: statd.c Log Message: Stop defining _rpcsvcdirty in bss and data _rpcsvc

CVS commit: src/usr.sbin/installboot

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:36:09 UTC 2019 Modified Files: src/usr.sbin/installboot: installboot.h Log Message: Add missing extern declaration of ib_mach_emips in installboot Change added for the consistency with the existing code. To generat

CVS commit: src/usr.sbin/installboot

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:36:09 UTC 2019 Modified Files: src/usr.sbin/installboot: installboot.h Log Message: Add missing extern declaration of ib_mach_emips in installboot Change added for the consistency with the existing code. To generat

CVS commit: src/share/mk

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:42:59 UTC 2019 Modified Files: src/share/mk: bsd.prog.mk Log Message: Add SANITIZER_RENAME_CLASSES in bsd.prog.mk This adds a more flexible version of SANITIZER_RENAME_SYMBOL. New symbol allows to specify MKSANITIZE

CVS commit: src/share/mk

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:42:59 UTC 2019 Modified Files: src/share/mk: bsd.prog.mk Log Message: Add SANITIZER_RENAME_CLASSES in bsd.prog.mk This adds a more flexible version of SANITIZER_RENAME_SYMBOL. New symbol allows to specify MKSANITIZE

CVS commit: src/tests/kernel

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:46:09 UTC 2019 Modified Files: src/tests/kernel: Makefile Log Message: Adapt tests/kernel/t_subr_prf for MKSANITIZER Allow to rename snprintf-like functions to avoid clashes with a sanitizer. This tests needs a fixu

CVS commit: src/tests/kernel

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 08:46:09 UTC 2019 Modified Files: src/tests/kernel: Makefile Log Message: Adapt tests/kernel/t_subr_prf for MKSANITIZER Allow to rename snprintf-like functions to avoid clashes with a sanitizer. This tests needs a fixu

CVS commit: src

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 16:01:27 UTC 2019 Modified Files: src/distrib/sets/lists/comp: mi src/external/gpl3/gcc/usr.bin/include/sanitizer: Makefile Log Message: Ship with sanitizer/lsan_interface.h for GCC 7 Leak Sanitizer is there.

CVS commit: src

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 16:01:27 UTC 2019 Modified Files: src/distrib/sets/lists/comp: mi src/external/gpl3/gcc/usr.bin/include/sanitizer: Makefile Log Message: Ship with sanitizer/lsan_interface.h for GCC 7 Leak Sanitizer is there.

CVS commit: src

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 16:31:17 UTC 2019 Modified Files: src/distrib/sets/lists/comp: mi src/external/bsd/compiler_rt/lib/clang/include/sanitizer: Makefile Log Message: Ship with sanitizer/lsan_interface.h for LLVM 7 Leak Sanitizer he

CVS commit: src

2019-08-15 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 15 16:31:17 UTC 2019 Modified Files: src/distrib/sets/lists/comp: mi src/external/bsd/compiler_rt/lib/clang/include/sanitizer: Makefile Log Message: Ship with sanitizer/lsan_interface.h for LLVM 7 Leak Sanitizer he

CVS commit: src/external/bsd/compiler_rt/lib/clang/lib/netbsd

2019-08-16 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 16 23:07:20 UTC 2019 Modified Files: src/external/bsd/compiler_rt/lib/clang/lib/netbsd: common.mk Log Message: Set NODEBUG for LLVM sanitizers The sanitizers are special purpose piece of software that needs customized buil

CVS commit: src/external/bsd/compiler_rt/lib/clang/lib/netbsd

2019-08-16 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 16 23:07:20 UTC 2019 Modified Files: src/external/bsd/compiler_rt/lib/clang/lib/netbsd: common.mk Log Message: Set NODEBUG for LLVM sanitizers The sanitizers are special purpose piece of software that needs customized buil

CVS commit: src/share/mk

2019-08-16 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 17 00:14:48 UTC 2019 Modified Files: src/share/mk: bsd.prog.mk Log Message: Add PAXCTL_FLAG rules for MKSANITIZER Add per-program rules to disable ASLR for ASan, TSan and MSan in all sanitized programs. This flag is not ne

CVS commit: src/share/mk

2019-08-16 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 17 00:14:48 UTC 2019 Modified Files: src/share/mk: bsd.prog.mk Log Message: Add PAXCTL_FLAG rules for MKSANITIZER Add per-program rules to disable ASLR for ASan, TSan and MSan in all sanitized programs. This flag is not ne

CVS commit: src/tests/rump/modautoload

2019-08-16 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 17 04:04:29 UTC 2019 Modified Files: src/tests/rump/modautoload: Makefile Log Message: Avoid symbol clashes in test/rump/modautoload/t_modautoload with sanitizers Set SANITIZER_RENAME_SYMBOL.t_modautoload to: * sysctlbyn

CVS commit: src/tests/rump/modautoload

2019-08-16 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sat Aug 17 04:04:29 UTC 2019 Modified Files: src/tests/rump/modautoload: Makefile Log Message: Avoid symbol clashes in test/rump/modautoload/t_modautoload with sanitizers Set SANITIZER_RENAME_SYMBOL.t_modautoload to: * sysctlbyn

CVS commit: src/sbin/sysctl

2019-08-17 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 18 04:10:22 UTC 2019 Modified Files: src/sbin/sysctl: Makefile prog_ops.h sysctl.c sysctl_hostops.c sysctl_rumpops.c Log Message: sysctl: Add indirection of symbols to remove clash with sanitizers Add indirecti

CVS commit: src/sbin/sysctl

2019-08-17 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 18 04:10:22 UTC 2019 Modified Files: src/sbin/sysctl: Makefile prog_ops.h sysctl.c sysctl_hostops.c sysctl_rumpops.c Log Message: sysctl: Add indirection of symbols to remove clash with sanitizers Add indirecti

CVS commit: src/usr.sbin/traceroute

2019-08-17 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 18 04:12:07 UTC 2019 Modified Files: src/usr.sbin/traceroute: Makefile ifaddrlist.c prog_ops.h traceroute_hostops.c traceroute_rumpops.c Log Message: traceroute: Add indirection of symbol to remove clash with sa

CVS commit: src/usr.sbin/traceroute

2019-08-17 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 18 04:12:07 UTC 2019 Modified Files: src/usr.sbin/traceroute: Makefile ifaddrlist.c prog_ops.h traceroute_hostops.c traceroute_rumpops.c Log Message: traceroute: Add indirection of symbol to remove clash with sa

CVS commit: src/usr.bin/sockstat

2019-08-17 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 18 04:13:24 UTC 2019 Modified Files: src/usr.bin/sockstat: Makefile prog_ops.h sockstat.c sockstat_hostops.c sockstat_rumpops.c Log Message: sockstat: Add indirection of symbols to remove clash with sanitizers

CVS commit: src/usr.bin/sockstat

2019-08-17 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 18 04:13:24 UTC 2019 Modified Files: src/usr.bin/sockstat: Makefile prog_ops.h sockstat.c sockstat_hostops.c sockstat_rumpops.c Log Message: sockstat: Add indirection of symbols to remove clash with sanitizers

CVS commit: src/usr.bin/netstat

2019-08-17 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 18 04:14:41 UTC 2019 Modified Files: src/usr.bin/netstat: Makefile atalk.c bpf.c fast_ipsec.c inet.c inet6.c netstat_hostops.c netstat_rumpops.c pfkey.c pfsync.c prog_ops.h Log Message: netstat: Add indirection

CVS commit: src/usr.bin/netstat

2019-08-17 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 18 04:14:41 UTC 2019 Modified Files: src/usr.bin/netstat: Makefile atalk.c bpf.c fast_ipsec.c inet.c inet6.c netstat_hostops.c netstat_rumpops.c pfkey.c pfsync.c prog_ops.h Log Message: netstat: Add indirection

CVS commit: src/sys/arch/i386/stand/lib

2019-08-18 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 18 16:49:30 UTC 2019 Modified Files: src/sys/arch/i386/stand/lib: biosdisk.c Log Message: Correct the memset(3)'s third argument in i386 biosdisk.c The size of allocation is the size of the structure biosdisk, not the size

CVS commit: src/sys/arch/i386/stand/lib

2019-08-18 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 18 16:49:30 UTC 2019 Modified Files: src/sys/arch/i386/stand/lib: biosdisk.c Log Message: Correct the memset(3)'s third argument in i386 biosdisk.c The size of allocation is the size of the structure biosdisk, not the size

CVS commit: src

2019-08-18 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 18 20:15:59 UTC 2019 Modified Files: src/distrib/sets/lists/tests: mi src/tests/usr.bin/c++: Makefile src/tests/usr.bin/cc: Makefile Added Files: src/tests/usr.bin/c++: t_fuzzer_oom.sh t_fuzzer_simple

Re: CVS commit: src/sys/arch/amd64/conf

2019-08-20 Thread Kamil Rytarowski
On 07.08.2019 08:28, Maxime Villard wrote: > Module Name: src > Committed By: maxv > Date: Wed Aug 7 06:28:03 UTC 2019 > > Modified Files: > src/sys/arch/amd64/conf: GENERIC > > Log Message: > Sync with reality. > > Can we enable USER_LDT by default in GENERIC? > To generate a

CVS commit: src/distrib/i386/ramdisks/common

2019-08-21 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 22 04:25:38 UTC 2019 Modified Files: src/distrib/i386/ramdisks/common: Makefile.ramdisk Log Message: Set NOSANITIZER in i386 ramdisk image To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/distrib/i386/ram

CVS commit: src/distrib/i386/ramdisks/common

2019-08-21 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Aug 22 04:25:38 UTC 2019 Modified Files: src/distrib/i386/ramdisks/common: Makefile.ramdisk Log Message: Set NOSANITIZER in i386 ramdisk image To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/distrib/i386/ram

CVS commit: src

2019-08-22 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 23 06:38:27 UTC 2019 Modified Files: src: Makefile src/distrib/sets/lists/base: md.i386 src/external/bsd: Makefile src/external/bsd/compiler_rt/lib/clang/lib: Makefile src/external/bsd/compile

CVS commit: src

2019-08-22 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 23 06:38:27 UTC 2019 Modified Files: src: Makefile src/distrib/sets/lists/base: md.i386 src/external/bsd: Makefile src/external/bsd/compiler_rt/lib/clang/lib: Makefile src/external/bsd/compile

CVS commit: src/tests/usr.bin

2019-08-22 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 23 06:39:54 UTC 2019 Modified Files: src/tests/usr.bin/c++: t_fuzzer_oom.sh t_fuzzer_simple.sh t_fuzzer_timeout.sh t_msan_allocated_memory.sh t_msan_check_mem.sh t_msan_free.sh t_msan_heap.sh t_msan_p

CVS commit: src/tests/usr.bin

2019-08-22 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 23 06:39:54 UTC 2019 Modified Files: src/tests/usr.bin/c++: t_fuzzer_oom.sh t_fuzzer_simple.sh t_fuzzer_timeout.sh t_msan_allocated_memory.sh t_msan_check_mem.sh t_msan_free.sh t_msan_heap.sh t_msan_p

CVS commit: src/sys/ddb

2019-08-23 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 23 14:48:51 UTC 2019 Modified Files: src/sys/ddb: db_access.c Log Message: Avoids signedness bit shift in db_get_value() Appease UBSan. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/sys/ddb/db_access.

CVS commit: src/sys/ddb

2019-08-23 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 23 14:48:51 UTC 2019 Modified Files: src/sys/ddb: db_access.c Log Message: Avoids signedness bit shift in db_get_value() Appease UBSan. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/sys/ddb/db_access.

CVS commit: src/external/bsd/compiler_rt/lib/clang/lib/netbsd

2019-08-23 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 23 19:26:03 UTC 2019 Modified Files: src/external/bsd/compiler_rt/lib/clang/lib/netbsd/safestack-m32: Makefile src/external/bsd/compiler_rt/lib/clang/lib/netbsd/safestack-m64: Makefile

CVS commit: src/external/bsd/compiler_rt/lib/clang/lib/netbsd

2019-08-23 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 23 19:26:03 UTC 2019 Modified Files: src/external/bsd/compiler_rt/lib/clang/lib/netbsd/safestack-m32: Makefile src/external/bsd/compiler_rt/lib/clang/lib/netbsd/safestack-m64: Makefile

CVS commit: src

2019-08-24 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 25 06:06:48 UTC 2019 Modified Files: src: Makefile src/external/bsd/compiler_rt: Makefile src/external/bsd/compiler_rt/lib/clang: Makefile src/external/bsd/compiler_rt/lib/clang/lib: Makefile Log Mes

CVS commit: src

2019-08-24 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Aug 25 06:06:48 UTC 2019 Modified Files: src: Makefile src/external/bsd/compiler_rt: Makefile src/external/bsd/compiler_rt/lib/clang: Makefile src/external/bsd/compiler_rt/lib/clang/lib: Makefile Log Mes

CVS commit: src

2019-08-25 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Mon Aug 26 04:49:47 UTC 2019 Modified Files: src: Makefile src/distrib/sets/lists/base: md.amd64 md.i386 src/distrib/sets/lists/comp: md.amd64 md.i386 src/external/bsd/compiler_rt/lib/clang/lib/netbsd: source

CVS commit: src

2019-08-25 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Mon Aug 26 04:49:47 UTC 2019 Modified Files: src: Makefile src/distrib/sets/lists/base: md.amd64 md.i386 src/distrib/sets/lists/comp: md.amd64 md.i386 src/external/bsd/compiler_rt/lib/clang/lib/netbsd: source

CVS commit: src

2019-08-27 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Aug 27 22:48:55 UTC 2019 Modified Files: src: Makefile src/common/lib/libc/gmon: mcount.c src/distrib/sets/lists/base: mi src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64: Makefile src/e

CVS commit: src

2019-08-27 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Aug 27 22:48:55 UTC 2019 Modified Files: src: Makefile src/common/lib/libc/gmon: mcount.c src/distrib/sets/lists/base: mi src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64: Makefile src/e

CVS commit: src/external/bsd/compiler_rt/lib/clang/lib/netbsd

2019-08-30 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 30 23:36:41 UTC 2019 Modified Files: src/external/bsd/compiler_rt/lib/clang/lib/netbsd: syms.mk src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64: Makefile src/external/bsd/compiler_rt/lib/clang/lib/

CVS commit: src/external/bsd/compiler_rt/lib/clang/lib/netbsd

2019-08-30 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Aug 30 23:36:41 UTC 2019 Modified Files: src/external/bsd/compiler_rt/lib/clang/lib/netbsd: syms.mk src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64: Makefile src/external/bsd/compiler_rt/lib/clang/lib/

CVS commit: src/external/bsd/compiler_rt/lib/clang/lib/netbsd

2019-09-02 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Sep 3 03:04:31 UTC 2019 Modified Files: src/external/bsd/compiler_rt/lib/clang/lib/netbsd: common.mk Log Message: Set NOLIBCSANITIZER for LLVM sanitizer runtimes Do not sanitize sanitizer runtimes. To generate a diff of thi

CVS commit: src/external/bsd/compiler_rt/lib/clang/lib/netbsd

2019-09-02 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Sep 3 03:04:31 UTC 2019 Modified Files: src/external/bsd/compiler_rt/lib/clang/lib/netbsd: common.mk Log Message: Set NOLIBCSANITIZER for LLVM sanitizer runtimes Do not sanitize sanitizer runtimes. To generate a diff of thi

Re: CVS commit: src/lib/libcurses

2019-09-03 Thread Kamil Rytarowski
On 03.09.2019 12:36, Roy Marples wrote: > Module Name: src > Committed By: roy > Date: Tue Sep 3 10:36:17 UTC 2019 > > Modified Files: > src/lib/libcurses: Makefile curses.h version.c > Added Files: > src/lib/libcurses: cursesrelease.sh > > Log Message: > curses: Add __NetBS

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

2019-09-05 Thread Kamil Rytarowski
On 05.09.2019 14:57, Maxime Villard wrote: > Module Name: src > Committed By: maxv > Date: Thu Sep 5 12:57:30 UTC 2019 > > Modified Files: > src/sys/arch/amd64/amd64: lock_stubs.S > > Log Message: > Remove unused, and style. > > > To generate a diff of this commit: > cvs rdiff -

CVS commit: src/sys/netinet6

2019-09-05 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Sep 5 20:17:27 UTC 2019 Modified Files: src/sys/netinet6: in6.h Log Message: Revert regression introduced in in6.h r. 1.95 revision 1.95 date: 2019-05-28 05:56:46 +0200; author: kamil; state: Ex

CVS commit: src/sys/netinet6

2019-09-05 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Sep 5 20:17:27 UTC 2019 Modified Files: src/sys/netinet6: in6.h Log Message: Revert regression introduced in in6.h r. 1.95 revision 1.95 date: 2019-05-28 05:56:46 +0200; author: kamil; state: Ex

CVS commit: src/sys/sys

2019-09-05 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Sep 5 22:29:59 UTC 2019 Modified Files: src/sys/sys: param.h Log Message: Welcome to 9.99.11 struct in6_addr ABI revert to the previous layout. To generate a diff of this commit: cvs rdiff -u -r1.610 -r1.611 src/sys/sys/par

CVS commit: src/sys/sys

2019-09-05 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Thu Sep 5 22:29:59 UTC 2019 Modified Files: src/sys/sys: param.h Log Message: Welcome to 9.99.11 struct in6_addr ABI revert to the previous layout. To generate a diff of this commit: cvs rdiff -u -r1.610 -r1.611 src/sys/sys/par

CVS commit: src/external/gpl3/gdb/dist/gdb

2019-09-06 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Sep 6 14:37:00 UTC 2019 Modified Files: src/external/gpl3/gdb/dist/gdb: ChangeLog event-top.c inflow.c inflow.h ser-unix.c top.c Log Message: Cherry-pick upstream GDB patch to fix SIGTTOU handling Fixes toolchain/

CVS commit: src/external/gpl3/gdb/dist/gdb

2019-09-06 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Fri Sep 6 14:37:00 UTC 2019 Modified Files: src/external/gpl3/gdb/dist/gdb: ChangeLog event-top.c inflow.c inflow.h ser-unix.c top.c Log Message: Cherry-pick upstream GDB patch to fix SIGTTOU handling Fixes toolchain/

CVS commit: src/lib/libpthread

2019-09-10 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Sep 10 22:34:19 UTC 2019 Modified Files: src/lib/libpthread: thrd.c threads.h Log Message: Switch back _Noreturn to __dead in C11 threads There is an ongoing discussion to unify unreturn attribute between C and C++, making a c

CVS commit: src/lib/libpthread

2019-09-10 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Tue Sep 10 22:34:19 UTC 2019 Modified Files: src/lib/libpthread: thrd.c threads.h Log Message: Switch back _Noreturn to __dead in C11 threads There is an ongoing discussion to unify unreturn attribute between C and C++, making a c

  1   2   3   4   5   6   7   8   9   >