CVS commit: [netbsd-9] src/doc

2023-09-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Sep 18 19:01:14 UTC 2023

Modified Files:
src/doc [netbsd-9]: CHANGES-9.4

Log Message:
Ticket #1733


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.102 -r1.1.2.103 src/doc/CHANGES-9.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-9.4
diff -u src/doc/CHANGES-9.4:1.1.2.102 src/doc/CHANGES-9.4:1.1.2.103
--- src/doc/CHANGES-9.4:1.1.2.102	Fri Sep 15 15:42:58 2023
+++ src/doc/CHANGES-9.4	Mon Sep 18 19:01:14 2023
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-9.4,v 1.1.2.102 2023/09/15 15:42:58 martin Exp $
+# $NetBSD: CHANGES-9.4,v 1.1.2.103 2023/09/18 19:01:14 martin Exp $
 
 A complete list of changes from the NetBSD 9.3 release to the NetBSD 9.4
 release:
@@ -2136,3 +2136,9 @@ sys/arch/i386/stand/efiboot/eficpufunc.h
 	efiboot/x86: add serial console support via raw I/O port access.
 	[rin, ticket #1732]
 
+sys/dev/raidframe/rf_netbsdkintf.c		1.413
+
+	raid(4): avoid panic from DIOCGCACHE ioctl while reconstruction
+	is in progress.
+	[oster, ticket #1733]
+



CVS commit: [netbsd-9] src/doc

2023-09-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Sep 18 19:01:14 UTC 2023

Modified Files:
src/doc [netbsd-9]: CHANGES-9.4

Log Message:
Ticket #1733


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.102 -r1.1.2.103 src/doc/CHANGES-9.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-9] src/sys/dev/raidframe

2023-09-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Sep 18 19:00:21 UTC 2023

Modified Files:
src/sys/dev/raidframe [netbsd-9]: rf_netbsdkintf.c

Log Message:
Pull up following revision(s) (requested by oster in ticket #1733):

sys/dev/raidframe/rf_netbsdkintf.c: revision 1.413

A component that is in state rf_ds_reconstructing has failed, and should
not be consulted for DIOCGCACHE.

Fixes an observed panic when rf_get_component_caches() does an IOCTL to
a failed device while reconstruction is in progress.


To generate a diff of this commit:
cvs rdiff -u -r1.376.4.4 -r1.376.4.5 src/sys/dev/raidframe/rf_netbsdkintf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/raidframe/rf_netbsdkintf.c
diff -u src/sys/dev/raidframe/rf_netbsdkintf.c:1.376.4.4 src/sys/dev/raidframe/rf_netbsdkintf.c:1.376.4.5
--- src/sys/dev/raidframe/rf_netbsdkintf.c:1.376.4.4	Mon Aug 29 16:02:34 2022
+++ src/sys/dev/raidframe/rf_netbsdkintf.c	Mon Sep 18 19:00:21 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: rf_netbsdkintf.c,v 1.376.4.4 2022/08/29 16:02:34 martin Exp $	*/
+/*	$NetBSD: rf_netbsdkintf.c,v 1.376.4.5 2023/09/18 19:00:21 martin Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2008-2011 The NetBSD Foundation, Inc.
@@ -101,7 +101,7 @@
  ***/
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.376.4.4 2022/08/29 16:02:34 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.376.4.5 2023/09/18 19:00:21 martin Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_raid_autoconfig.h"
@@ -3702,8 +3702,7 @@ rf_get_component_caches(RF_Raid_t *raidP
 		 * Check any non-dead disk, even when currently being
 		 * reconstructed.
 		 */
-		if (!RF_DEAD_DISK(raidPtr->Disks[c].status)
-		|| raidPtr->Disks[c].status == rf_ds_reconstructing) {
+		if (!RF_DEAD_DISK(raidPtr->Disks[c].status)) {
 			error = VOP_IOCTL(raidPtr->raid_cinfo[c].ci_vp,
 			DIOCGCACHE, , FREAD, NOCRED);
 			if (error) {



CVS commit: [netbsd-9] src/sys/dev/raidframe

2023-09-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Sep 18 19:00:21 UTC 2023

Modified Files:
src/sys/dev/raidframe [netbsd-9]: rf_netbsdkintf.c

Log Message:
Pull up following revision(s) (requested by oster in ticket #1733):

sys/dev/raidframe/rf_netbsdkintf.c: revision 1.413

A component that is in state rf_ds_reconstructing has failed, and should
not be consulted for DIOCGCACHE.

Fixes an observed panic when rf_get_component_caches() does an IOCTL to
a failed device while reconstruction is in progress.


To generate a diff of this commit:
cvs rdiff -u -r1.376.4.4 -r1.376.4.5 src/sys/dev/raidframe/rf_netbsdkintf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-10] src/doc

2023-09-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Sep 18 18:59:30 UTC 2023

Modified Files:
src/doc [netbsd-10]: CHANGES-10.0

Log Message:
Ticket #376


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.124 -r1.1.2.125 src/doc/CHANGES-10.0

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/doc/CHANGES-10.0
diff -u src/doc/CHANGES-10.0:1.1.2.124 src/doc/CHANGES-10.0:1.1.2.125
--- src/doc/CHANGES-10.0:1.1.2.124	Fri Sep 15 15:35:27 2023
+++ src/doc/CHANGES-10.0	Mon Sep 18 18:59:30 2023
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-10.0,v 1.1.2.124 2023/09/15 15:35:27 martin Exp $
+# $NetBSD: CHANGES-10.0,v 1.1.2.125 2023/09/18 18:59:30 martin Exp $
 
 A complete list of changes from the initial NetBSD 10.0 branch on 2022-12-16
 until the 10.0 release:
@@ -11942,3 +11942,9 @@ crypto/external/bsd/heimdal/dist/lib/krb
 	kerberos(8): explicitly load the openssl legacy provider.
 	[christos, ticket #375]
 
+sys/dev/raidframe/rf_netbsdkintf.c		1.413
+
+	raid(4): avoid panic from DIOCGCACHE ioctl while reconstruction
+	is in progress.
+	[oster, ticket #376]
+



CVS commit: [netbsd-10] src/doc

2023-09-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Sep 18 18:59:30 UTC 2023

Modified Files:
src/doc [netbsd-10]: CHANGES-10.0

Log Message:
Ticket #376


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.124 -r1.1.2.125 src/doc/CHANGES-10.0

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: [netbsd-10] src/sys/dev/raidframe

2023-09-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Sep 18 18:57:33 UTC 2023

Modified Files:
src/sys/dev/raidframe [netbsd-10]: rf_netbsdkintf.c

Log Message:
Pull up following revision(s) (requested by oster in ticket #376):

sys/dev/raidframe/rf_netbsdkintf.c: revision 1.413

A component that is in state rf_ds_reconstructing has failed, and should
not be consulted for DIOCGCACHE.

Fixes an observed panic when rf_get_component_caches() does an IOCTL to
a failed device while reconstruction is in progress.


To generate a diff of this commit:
cvs rdiff -u -r1.410.4.1 -r1.410.4.2 src/sys/dev/raidframe/rf_netbsdkintf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/raidframe/rf_netbsdkintf.c
diff -u src/sys/dev/raidframe/rf_netbsdkintf.c:1.410.4.1 src/sys/dev/raidframe/rf_netbsdkintf.c:1.410.4.2
--- src/sys/dev/raidframe/rf_netbsdkintf.c:1.410.4.1	Wed Jun 21 16:55:01 2023
+++ src/sys/dev/raidframe/rf_netbsdkintf.c	Mon Sep 18 18:57:33 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: rf_netbsdkintf.c,v 1.410.4.1 2023/06/21 16:55:01 martin Exp $	*/
+/*	$NetBSD: rf_netbsdkintf.c,v 1.410.4.2 2023/09/18 18:57:33 martin Exp $	*/
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2008-2011 The NetBSD Foundation, Inc.
@@ -101,7 +101,7 @@
  ***/
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.410.4.1 2023/06/21 16:55:01 martin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.410.4.2 2023/09/18 18:57:33 martin Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_raid_autoconfig.h"
@@ -3773,8 +3773,7 @@ rf_get_component_caches(RF_Raid_t *raidP
 		 * Check any non-dead disk, even when currently being
 		 * reconstructed.
 		 */
-		if (!RF_DEAD_DISK(raidPtr->Disks[c].status)
-		|| raidPtr->Disks[c].status == rf_ds_reconstructing) {
+		if (!RF_DEAD_DISK(raidPtr->Disks[c].status)) {
 			error = VOP_IOCTL(raidPtr->raid_cinfo[c].ci_vp,
 			DIOCGCACHE, , FREAD, NOCRED);
 			if (error) {



CVS commit: [netbsd-10] src/sys/dev/raidframe

2023-09-18 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Mon Sep 18 18:57:33 UTC 2023

Modified Files:
src/sys/dev/raidframe [netbsd-10]: rf_netbsdkintf.c

Log Message:
Pull up following revision(s) (requested by oster in ticket #376):

sys/dev/raidframe/rf_netbsdkintf.c: revision 1.413

A component that is in state rf_ds_reconstructing has failed, and should
not be consulted for DIOCGCACHE.

Fixes an observed panic when rf_get_component_caches() does an IOCTL to
a failed device while reconstruction is in progress.


To generate a diff of this commit:
cvs rdiff -u -r1.410.4.1 -r1.410.4.2 src/sys/dev/raidframe/rf_netbsdkintf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/misc

2023-09-18 Thread Jan Schaumann
Module Name:src
Committed By:   jschauma
Date:   Mon Sep 18 15:19:33 UTC 2023

Modified Files:
src/share/misc: acronyms.comp

Log Message:
+CERT computer emergency response team
+[C]SIRT (computer) security incident response team
+SOC security operations center


To generate a diff of this commit:
cvs rdiff -u -r1.365 -r1.366 src/share/misc/acronyms.comp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/misc

2023-09-18 Thread Jan Schaumann
Module Name:src
Committed By:   jschauma
Date:   Mon Sep 18 15:19:33 UTC 2023

Modified Files:
src/share/misc: acronyms.comp

Log Message:
+CERT computer emergency response team
+[C]SIRT (computer) security incident response team
+SOC security operations center


To generate a diff of this commit:
cvs rdiff -u -r1.365 -r1.366 src/share/misc/acronyms.comp

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/misc/acronyms.comp
diff -u src/share/misc/acronyms.comp:1.365 src/share/misc/acronyms.comp:1.366
--- src/share/misc/acronyms.comp:1.365	Sat Sep 16 21:18:29 2023
+++ src/share/misc/acronyms.comp	Mon Sep 18 15:19:33 2023
@@ -1,4 +1,4 @@
-$NetBSD: acronyms.comp,v 1.365 2023/09/16 21:18:29 gutteridge Exp $
+$NetBSD: acronyms.comp,v 1.366 2023/09/18 15:19:33 jschauma Exp $
 3WHS	three-way handshake
 8VSB	8-state vestigial side band modulation
 AA	anti-aliasing
@@ -237,6 +237,7 @@ CDN	content delivery network
 CDP	Cisco Discovery Protocol
 CDRAM	cache dynamic random access memory
 CER	canonical encoding rules
+CERT	computer emergency response team
 CE	customer edge
 CF	compact flash
 CFB	cipher feedback
@@ -318,6 +319,7 @@ CRDT	conflict-free replicated data type
 CRL	carrier recovery loop
 CRQC	cryptanalytically relevant quantum computer
 CRLF	carriage return line feed
+CSIRT	computer security incident response team
 CSPM	cloud security posture management
 CSU	C start up
 CRT	cathode ray tube
@@ -1534,6 +1536,7 @@ SIMM	single inline memory module
 SIP	Session Initiation Protocol
 SIR	signal-to-interference ratio
 SIR	slow infrared
+SIRT	security incident response team
 SISD	single instruction, single data
 SIV	synthetic intialization vector
 SLAAC	stateless address auto-configuration
@@ -1572,6 +1575,7 @@ SNAP	Sub-Network Access Protocol
 SNIA	Storage Networking Industry Association
 SNMP	Simple Network Management Protocol
 SNR	signal-to-noise ratio
+SOC	security operations center
 SOA	service oriented architecture
 SOAP	Simple Object Access Protocol
 SOC	system on chip