summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormartin <martin@NetBSD.org>2022-06-10 17:40:40 +0000
committermartin <martin@NetBSD.org>2022-06-10 17:40:40 +0000
commit5719c821db271b9a5b86493ec1033be89b4d4271 (patch)
tree27afaa3eeb01c28ad63baf9612993ee057428a49
parent6275566403058b247fadd1a5a1adbb2abf08f362 (diff)
Tickets #1466 - #1469
-rw-r--r--doc/CHANGES-9.332
1 files changed, 31 insertions, 1 deletions
diff --git a/doc/CHANGES-9.3 b/doc/CHANGES-9.3
index de296d911fd..e91c1d2a403 100644
--- a/doc/CHANGES-9.3
+++ b/doc/CHANGES-9.3
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-9.3,v 1.1.2.104 2022/06/06 11:36:16 martin Exp $
+# $NetBSD: CHANGES-9.3,v 1.1.2.105 2022/06/10 17:40:40 martin Exp $
A complete list of changes from the NetBSD 9.2 release to the NetBSD 9.3
release:
@@ -1771,4 +1771,34 @@ usr.sbin/makemandb/makemandb.c 1.63
PR 56118: fix out of bounds array access.
[skrll, ticket #1465]
+sys/arch/hppa/hppa/trap.c 1.119
+
+ PR 56118: fix sporadic app crashess on HPPA by handling
+ 'NA' (non-access) traps for the lpa and probe instructions.
+ [skrll, ticket #1466]
+
+sys/arch/hppa/hppa/pmap.c 1.117
+sys/arch/hppa/include/pmap.h 1.41
+
+ PR 56849: fix kernel memory accounting on hppa:
+ - Don't include direct mapped memory in pmap statistics
+ - Decrement pmap statistics counts in pmap_kremove
+ [skrll, ticket #1467]
+
+sys/arch/hppa/hppa/trap.c 1.120
+sys/arch/hppa/include/ptrace.h 1.11,1.12 (patch)
+
+ PR 56866: fix confusion between actual breakpoints and
+ single-step breakpoints.
+ Define a PTRACE_ILLEGAL_ASM.
+ Only report the SSBREAKPOINT break instruction as SIGTRAP/TRAP_TRACE.
+ All other break instructions will be reported as SIGTRAP/TRAP_BRKPT.
+ [skrll, ticket #1468]
+
+libexec/ld.elf_so/arch/hppa/hppa_reloc.c 1.49
+libexec/ld.elf_so/arch/hppa/rtld_start.S 1.14
+
+ PR 56118: set DP early so that any binary functions that override
+ others get the right value if they're called before _start.
+ [skrll, ticket #1469]