Mon Aug 19 16:12:04 2019 UTC ()
Tickets #90 - #98


(martin)
diff -r1.1.2.23 -r1.1.2.24 src/doc/CHANGES-9.0

cvs diff -r1.1.2.23 -r1.1.2.24 src/doc/Attic/CHANGES-9.0 (expand / switch to unified diff)

--- src/doc/Attic/CHANGES-9.0 2019/08/18 14:36:49 1.1.2.23
+++ src/doc/Attic/CHANGES-9.0 2019/08/19 16:12:04 1.1.2.24
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: CHANGES-9.0,v 1.1.2.23 2019/08/18 14:36:49 msaitoh Exp $ 1# $NetBSD: CHANGES-9.0,v 1.1.2.24 2019/08/19 16:12:04 martin Exp $
2 2
3A complete list of changes from the initial NetBSD 9.0 branch on 2019-07-30 3A complete list of changes from the initial NetBSD 9.0 branch on 2019-07-30
4until the 9.0 release: 4until the 9.0 release:
5 5
6doc/CHANGES-9.0 patched by hand 6doc/CHANGES-9.0 patched by hand
7doc/LAST_MINUTE patched by hand 7doc/LAST_MINUTE patched by hand
8doc/README.files patched by hand 8doc/README.files patched by hand
9external/gpl2/groff/tmac/mdoc.local patched by hand 9external/gpl2/groff/tmac/mdoc.local patched by hand
10sys/sys/param.h patched by hand 10sys/sys/param.h patched by hand
11 11
12 Welcome to 9.0_BETA! 12 Welcome to 9.0_BETA!
13 13
14distrib/utils/libhack/multibyte.c 1.9 14distrib/utils/libhack/multibyte.c 1.9
@@ -2024,13 +2024,85 @@ usr.sbin/sysinst/util.c 1.31 @@ -2024,13 +2024,85 @@ usr.sbin/sysinst/util.c 1.31
2024 2024
2025 Fix some memory leaks in error paths and avoid double free. 2025 Fix some memory leaks in error paths and avoid double free.
2026 [martin, ticket #83] 2026 [martin, ticket #83]
2027 2027
2028sbin/fsck/partutil.c 1.16 2028sbin/fsck/partutil.c 1.16
2029 2029
2030 Fix memory leak. 2030 Fix memory leak.
2031 [martin, ticket #88] 2031 [martin, ticket #88]
2032 2032
2033usr.sbin/sysinst/checkrc.c 1.2 2033usr.sbin/sysinst/checkrc.c 1.2
2034 2034
2035 Fix memory leak (found by MKSANITIZER=yes build). 2035 Fix memory leak (found by MKSANITIZER=yes build).
2036 [martin, ticket #89] 2036 [martin, ticket #89]
 2037
 2038external/bsd/compiler_rt/lib/clang/lib/netbsd/common.mk 1.2
 2039
 2040 Set NODEBUG for LLVM sanitizers.
 2041 [kamil, ticket #90]
 2042
 2043tests/rump/modautoload/Makefile 1.9
 2044
 2045 Avoid symbol clashes in test/rump/modautoload/t_modautoload with
 2046 sanitizers.
 2047 [kamil, ticket #91]
 2048
 2049usr.sbin/traceroute/Makefile 1.20
 2050usr.sbin/traceroute/ifaddrlist.c 1.11
 2051usr.sbin/traceroute/prog_ops.h 1.2
 2052usr.sbin/traceroute/traceroute_hostops.c 1.2
 2053usr.sbin/traceroute/traceroute_rumpops.c 1.2
 2054
 2055 traceroute: Add indirection of symbol to remove clash with sanitizers.
 2056 [kamil, ticket #92]
 2057
 2058share/mk/bsd.prog.mk 1.322
 2059
 2060 Add PAXCTL_FLAG rules for MKSANITIZER: disable ASLR for
 2061 programs sanitized by ASan, TSan and MSan.
 2062 [kamil, ticket #93]
 2063
 2064usr.bin/netstat/Makefile 1.46
 2065usr.bin/netstat/atalk.c 1.17
 2066usr.bin/netstat/bpf.c 1.14
 2067usr.bin/netstat/fast_ipsec.c 1.23
 2068usr.bin/netstat/inet.c 1.110
 2069usr.bin/netstat/inet6.c 1.73
 2070usr.bin/netstat/netstat_hostops.c 1.2
 2071usr.bin/netstat/netstat_rumpops.c 1.2
 2072usr.bin/netstat/pfkey.c 1.2
 2073usr.bin/netstat/pfsync.c 1.2
 2074usr.bin/netstat/prog_ops.h 1.3
 2075
 2076 netstat: Add indirection of symbols to remove clash with sanitizers.
 2077 [kamil, ticket #94]
 2078
 2079sbin/sysctl/Makefile 1.22
 2080sbin/sysctl/prog_ops.h 1.3
 2081sbin/sysctl/sysctl.c 1.162
 2082sbin/sysctl/sysctl_hostops.c 1.2
 2083sbin/sysctl/sysctl_rumpops.c 1.2
 2084
 2085 sysctl: Add indirection of symbols to remove clash with sanitizers.
 2086 [kamil, ticket #95]
 2087
 2088usr.bin/sockstat/Makefile 1.4
 2089usr.bin/sockstat/prog_ops.h 1.2
 2090usr.bin/sockstat/sockstat.c 1.21
 2091usr.bin/sockstat/sockstat_hostops.c 1.2
 2092usr.bin/sockstat/sockstat_rumpops.c 1.2
 2093
 2094 sockstat: Add indirection of symbols to remove clash with sanitizers.
 2095 [kamil, ticket #96]
 2096
 2097sys/netinet6/nd6.c 1.257
 2098
 2099 Add missing IFNET_LOCK for regen_tmpaddr.
 2100 [ozaki-r, ticket #97]
 2101
 2102sys/net/if.c 1.458
 2103tests/net/if/t_ifconfig.sh 1.21
 2104
 2105 PR kern/54434: restore if_ioctl on error of ifc_destroy,
 2106 otherwise subsequent ioctls will not work. Add a test for this.
 2107 [ozaki-r, ticket #98]
 2108