Module Name:    src
Committed By:   andvar
Date:           Wed Mar 23 11:08:28 UTC 2022

Modified Files:
        src/sys/dev/ic: mfireg.h
        src/sys/netinet: tcp_input.c
        src/usr.bin/compress: zopen.c

Log Message:
fix few typos in comments, mainly s/paramenters/parameters/.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/dev/ic/mfireg.h
cvs rdiff -u -r1.431 -r1.432 src/sys/netinet/tcp_input.c
cvs rdiff -u -r1.15 -r1.16 src/usr.bin/compress/zopen.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/ic/mfireg.h
diff -u src/sys/dev/ic/mfireg.h:1.13 src/sys/dev/ic/mfireg.h:1.14
--- src/sys/dev/ic/mfireg.h:1.13	Tue Mar 22 21:45:13 2022
+++ src/sys/dev/ic/mfireg.h	Wed Mar 23 11:08:27 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: mfireg.h,v 1.13 2022/03/22 21:45:13 andvar Exp $ */
+/* $NetBSD: mfireg.h,v 1.14 2022/03/23 11:08:27 andvar Exp $ */
 /* $OpenBSD: mfireg.h,v 1.24 2006/06/19 19:05:45 marco Exp $ */
 /*
  * Copyright (c) 2006 Marco Peereboom <ma...@peereboom.us>
@@ -173,7 +173,7 @@
 #define MEGASAS_MAX_SZ_CHAIN_FRAME		1024
 
 /*
- * Calculating how many SGEs allowed in a allocated main message
+ * Calculating how many SGEs allowed in an allocated main message
  * (size of the Message - Raid SCSI IO message size(except SGE))
  * / size of SGE
  * (0x100 - (0x90 - 0x10)) / 0x10 = 8
@@ -769,7 +769,7 @@ struct mfi_ctrl_props {
 	uint8_t	 		loadBalanceMode;
 	/*
 	 * 0 - use auto detect logic of backplanes like SGPIO, i2c SEP using
-	 *     h/w mechansim like GPIO pins
+	 *     h/w mechanism like GPIO pins
 	 * 1 - disable auto detect SGPIO,
 	 * 2 - disable i2c SEP auto detect
 	 * 3 - disable both auto detect
@@ -1302,7 +1302,7 @@ struct mfi_conf {
 /* ThunderBolt support */
 
 /*
- * Raid Context structure which describes MegaRAID specific IO Paramenters
+ * Raid Context structure which describes MegaRAID specific IO Parameters
  * This resides at offset 0x60 where the SGL normally starts in MPT IO Frames
  */
 typedef struct _mpi2_scsi_io_vendor_unique {

Index: src/sys/netinet/tcp_input.c
diff -u src/sys/netinet/tcp_input.c:1.431 src/sys/netinet/tcp_input.c:1.432
--- src/sys/netinet/tcp_input.c:1.431	Mon Aug  9 19:57:58 2021
+++ src/sys/netinet/tcp_input.c	Wed Mar 23 11:08:28 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: tcp_input.c,v 1.431 2021/08/09 19:57:58 andvar Exp $	*/
+/*	$NetBSD: tcp_input.c,v 1.432 2022/03/23 11:08:28 andvar Exp $	*/
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -148,7 +148,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tcp_input.c,v 1.431 2021/08/09 19:57:58 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcp_input.c,v 1.432 2022/03/23 11:08:28 andvar Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -2549,7 +2549,7 @@ after_listen:
 				     TCP_FACK_FASTRECOV(tp))) {
 					/*
 					 * Do the fast retransmit, and adjust
-					 * congestion control paramenters.
+					 * congestion control parameters.
 					 */
 					if (tp->t_congctl->fast_retransmit(tp, th)) {
 						/* False fast retransmit */

Index: src/usr.bin/compress/zopen.c
diff -u src/usr.bin/compress/zopen.c:1.15 src/usr.bin/compress/zopen.c:1.16
--- src/usr.bin/compress/zopen.c:1.15	Tue Aug 16 13:55:01 2011
+++ src/usr.bin/compress/zopen.c	Wed Mar 23 11:08:28 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: zopen.c,v 1.15 2011/08/16 13:55:01 joerg Exp $	*/
+/*	$NetBSD: zopen.c,v 1.16 2022/03/23 11:08:28 andvar Exp $	*/
 
 /*-
  * Copyright (c) 1985, 1986, 1992, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)zopen.c	8.1 (Berkeley) 6/27/93";
 #else
-static char rcsid[] = "$NetBSD: zopen.c,v 1.15 2011/08/16 13:55:01 joerg Exp $";
+static char rcsid[] = "$NetBSD: zopen.c,v 1.16 2022/03/23 11:08:28 andvar Exp $";
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -128,7 +128,7 @@ struct s_zstate {
 			code_int zs_ent;
 			code_int zs_hsize_reg;
 			int zs_hshift;
-		} w;			/* Write paramenters */
+		} w;			/* Write parameters */
 		struct {
 			char_type *zs_stackp;
 			int zs_finchar;

Reply via email to