Module Name:    src
Committed By:   andvar
Date:           Fri Dec  8 21:46:02 UTC 2023

Modified Files:
        src/include: fmtmsg.h
        src/sys/arch/powerpc/oea: pmap.c
        src/sys/arch/x86/x86: x86_tlb.c
        src/sys/dev/hyperv: if_hvn.c
        src/sys/netinet: sctp_header.h

Log Message:
fix triple s typos in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/include/fmtmsg.h
cvs rdiff -u -r1.115 -r1.116 src/sys/arch/powerpc/oea/pmap.c
cvs rdiff -u -r1.20 -r1.21 src/sys/arch/x86/x86/x86_tlb.c
cvs rdiff -u -r1.24 -r1.25 src/sys/dev/hyperv/if_hvn.c
cvs rdiff -u -r1.3 -r1.4 src/sys/netinet/sctp_header.h

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

Modified files:

Index: src/include/fmtmsg.h
diff -u src/include/fmtmsg.h:1.3 src/include/fmtmsg.h:1.4
--- src/include/fmtmsg.h:1.3	Mon Apr 28 20:22:54 2008
+++ src/include/fmtmsg.h	Fri Dec  8 21:46:02 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: fmtmsg.h,v 1.3 2008/04/28 20:22:54 martin Exp $	*/
+/*	$NetBSD: fmtmsg.h,v 1.4 2023/12/08 21:46:02 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -58,7 +58,7 @@
 #define MM_INFO		4	/* Informative message */
 
 /* `Null' values for message components. */
-#define MM_NULLMC	0L		/* `Null' classsification component */
+#define MM_NULLMC	0L		/* `Null' classification component */
 #define MM_NULLLBL	(char *)0	/* `Null' label component */
 #define MM_NULLSEV	0		/* `Null' severity component */
 #define MM_NULLTXT	(char *)0	/* `Null' text component */

Index: src/sys/arch/powerpc/oea/pmap.c
diff -u src/sys/arch/powerpc/oea/pmap.c:1.115 src/sys/arch/powerpc/oea/pmap.c:1.116
--- src/sys/arch/powerpc/oea/pmap.c:1.115	Mon Oct  9 13:01:58 2023
+++ src/sys/arch/powerpc/oea/pmap.c	Fri Dec  8 21:46:02 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: pmap.c,v 1.115 2023/10/09 13:01:58 rin Exp $	*/
+/*	$NetBSD: pmap.c,v 1.116 2023/12/08 21:46:02 andvar Exp $	*/
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -63,7 +63,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.115 2023/10/09 13:01:58 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.116 2023/12/08 21:46:02 andvar Exp $");
 
 #define	PMAP_NOOPNAMES
 
@@ -1905,7 +1905,7 @@ pmap_enter(pmap_t pm, vaddr_t va, paddr_
 	/*
 	 * Assume the page is cache inhibited and access is guarded unless
 	 * it's in our available memory array.  If it is in the memory array,
-	 * asssume it's in memory coherent memory.
+	 * assume it's in memory coherent memory.
 	 */
 	if (flags & PMAP_MD_PREFETCHABLE) {
 		pte_lo = 0;
@@ -2005,7 +2005,7 @@ pmap_kenter_pa(vaddr_t va, paddr_t pa, v
 	/*
 	 * Assume the page is cache inhibited and access is guarded unless
 	 * it's in our available memory array.  If it is in the memory array,
-	 * asssume it's in memory coherent memory.
+	 * assume it's in memory coherent memory.
 	 */
 	pte_lo = PTE_IG;
 	if ((flags & PMAP_NOCACHE) == 0) {

Index: src/sys/arch/x86/x86/x86_tlb.c
diff -u src/sys/arch/x86/x86/x86_tlb.c:1.20 src/sys/arch/x86/x86/x86_tlb.c:1.21
--- src/sys/arch/x86/x86/x86_tlb.c:1.20	Sat Aug 20 23:48:51 2022
+++ src/sys/arch/x86/x86/x86_tlb.c	Fri Dec  8 21:46:02 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: x86_tlb.c,v 1.20 2022/08/20 23:48:51 riastradh Exp $	*/
+/*	$NetBSD: x86_tlb.c,v 1.21 2023/12/08 21:46:02 andvar Exp $	*/
 
 /*-
  * Copyright (c) 2008-2020 The NetBSD Foundation, Inc.
@@ -40,7 +40,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: x86_tlb.c,v 1.20 2022/08/20 23:48:51 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: x86_tlb.c,v 1.21 2023/12/08 21:46:02 andvar Exp $");
 
 #include <sys/param.h>
 #include <sys/kernel.h>
@@ -74,7 +74,7 @@ __KERNEL_RCSID(0, "$NetBSD: x86_tlb.c,v 
  *
  * On i386 the packet is 64 bytes in size.  On amd64 it's 128 bytes.  This
  * is sized in concert with UBC_WINSIZE, otherwise excessive shootdown
- * interrupts could be isssued.
+ * interrupts could be issued.
  */
 
 #define	TP_MAXVA	16		/* for individual mappings */

Index: src/sys/dev/hyperv/if_hvn.c
diff -u src/sys/dev/hyperv/if_hvn.c:1.24 src/sys/dev/hyperv/if_hvn.c:1.25
--- src/sys/dev/hyperv/if_hvn.c:1.24	Sun Sep 18 16:59:35 2022
+++ src/sys/dev/hyperv/if_hvn.c	Fri Dec  8 21:46:02 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_hvn.c,v 1.24 2022/09/18 16:59:35 thorpej Exp $	*/
+/*	$NetBSD: if_hvn.c,v 1.25 2023/12/08 21:46:02 andvar Exp $	*/
 /*	$OpenBSD: if_hvn.c,v 1.39 2018/03/11 14:31:34 mikeb Exp $	*/
 
 /*-
@@ -35,7 +35,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_hvn.c,v 1.24 2022/09/18 16:59:35 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_hvn.c,v 1.25 2023/12/08 21:46:02 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_if_hvn.h"
@@ -4089,7 +4089,7 @@ hvn_rndis_attach(struct hvn_softc *sc, i
 
 	if (sc->sc_rndis_agg_align < sizeof(uint32_t)) {
 		/*
-		 * The RNDIS packet messsage encap assumes that the RNDIS
+		 * The RNDIS packet message encap assumes that the RNDIS
 		 * packet message is at least 4 bytes aligned.  Fix up the
 		 * alignment here, if the remote side sets the alignment
 		 * too low.

Index: src/sys/netinet/sctp_header.h
diff -u src/sys/netinet/sctp_header.h:1.3 src/sys/netinet/sctp_header.h:1.4
--- src/sys/netinet/sctp_header.h:1.3	Sun Dec  5 04:28:53 2021
+++ src/sys/netinet/sctp_header.h	Fri Dec  8 21:46:02 2023
@@ -1,5 +1,5 @@
 /*	$KAME: sctp_header.h,v 1.14 2005/03/06 16:04:17 itojun Exp $	*/
-/*	$NetBSD: sctp_header.h,v 1.3 2021/12/05 04:28:53 msaitoh Exp $ */
+/*	$NetBSD: sctp_header.h,v 1.4 2023/12/08 21:46:02 andvar Exp $ */
 
 #ifndef __SCTP_HEADER_H__
 #define __SCTP_HEADER_H__
@@ -259,7 +259,7 @@ struct sctp_heartbeat_chunk {
 #define sctp_heartbeat_ack_chunk	sctp_heartbeat_chunk
 
 
-/* Abort Asssociation (ABORT) */
+/* Abort Association (ABORT) */
 struct sctp_abort_chunk {
 	struct sctp_chunkhdr ch;
 	/* optional error cause may follow */

Reply via email to