CVS commit: src/usr.bin/make

2023-09-21 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Thu Sep 21 20:30:59 UTC 2023

Modified Files:
src/usr.bin/make: dir.c

Log Message:
make: remove obsolete comments, clean up comments and identifiers

No binary change, except for the line numbers in assertions.


To generate a diff of this commit:
cvs rdiff -u -r1.282 -r1.283 src/usr.bin/make/dir.c

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

Modified files:

Index: src/usr.bin/make/dir.c
diff -u src/usr.bin/make/dir.c:1.282 src/usr.bin/make/dir.c:1.283
--- src/usr.bin/make/dir.c:1.282	Fri Jun 23 04:56:54 2023
+++ src/usr.bin/make/dir.c	Thu Sep 21 20:30:59 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: dir.c,v 1.282 2023/06/23 04:56:54 rillig Exp $	*/
+/*	$NetBSD: dir.c,v 1.283 2023/09/21 20:30:59 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -83,7 +83,7 @@
  *
  *	Dir_End		Clean up the module.
  *
- *	Dir_SetPATH	Set ${.PATH} to reflect state of dirSearchPath.
+ *	Dir_SetPATH	Set ${.PATH} to reflect the state of dirSearchPath.
  *
  *	Dir_HasWildcards
  *			Returns true if the name given it needs to
@@ -94,13 +94,12 @@
  *			from the search path.
  *
  *	Dir_FindFile	Searches for a file on a given search path.
- *			If it exists, the entire path is returned.
- *			Otherwise NULL is returned.
+ *			If it exists, returns the entire path, otherwise NULL.
  *
  *	Dir_FindHereOrAbove
- *			Search for a path in the current directory and
- *			then all the directories above it in turn until
- *			the path is found or we reach the root ("/").
+ *			Search for a path in the current directory and then
+ *			all the directories above it in turn, until the path
+ *			is found or the root directory ("/") is reached.
  *
  *	Dir_UpdateMTime
  *			Update the modification time and path of a node with
@@ -114,11 +113,6 @@
  *			preceded by the command flag and all of them
  *			separated by a space.
  *
- *	Dir_Destroy	Destroy an element of a search path. Frees up all
- *			things that can be freed for the element as long
- *			as the element is no longer referenced by any other
- *			search path.
- *
  *	SearchPath_Clear
  *			Resets a search path to the empty list.
  *
@@ -138,7 +132,7 @@
 #include "job.h"
 
 /*	"@(#)dir.c	8.2 (Berkeley) 1/2/94"	*/
-MAKE_RCSID("$NetBSD: dir.c,v 1.282 2023/06/23 04:56:54 rillig Exp $");
+MAKE_RCSID("$NetBSD: dir.c,v 1.283 2023/09/21 20:30:59 rillig Exp $");
 
 /*
  * A search path is a list of CachedDir structures. A CachedDir has in it the
@@ -152,26 +146,21 @@ MAKE_RCSID("$NetBSD: dir.c,v 1.282 2023/
  * All previously-read directories are kept in openDirs, which is checked
  * first before a directory is opened.
  *
- * The need for the caching of whole directories is brought about by the
- * multi-level transformation code in suff.c, which tends to search for far
- * more files than regular make does. In the initial implementation, the
- * amount of time spent performing "stat" calls was truly astronomical.
- * The problem with caching at the start is, of course, that pmake doesn't
- * then detect changes to these directories during the course of the make.
- * Three possibilities suggest themselves:
+ * This cache is used by the multi-level transformation code in suff.c, which
+ * tends to search for far more files than in regular explicit targets. After
+ * a directory has been cached, any later changes to that directory are not
+ * reflected in the cache. To keep the cache up to date, there are several
+ * ideas:
  *
  * 1)	just use stat to test for a file's existence. As mentioned above,
- *	this is very inefficient due to the number of checks engendered by
+ *	this is very inefficient due to the number of checks performed by
  *	the multi-level transformation code.
  *
- * 2)	use readdir() and company to search the directories, keeping them
- *	open between checks. I have tried this and while it didn't slow down
- *	the process too much, it could severely affect the amount of
- *	parallelism available as each directory open would take another file
- *	descriptor out of play for handling I/O for another job. Given that
- *	it is only recently (as of 1993 or earlier) that UNIX OS's have taken
- *	to allowing more than 20 or 32 file descriptors for a process, this
- *	doesn't seem acceptable to me.
+ * 2)	use readdir() to search the directories, keeping them open between
+ *	checks. Around 1993 or earlier, this didn't slow down the process too
+ *	much, but it consumed one file descriptor per open directory, which
+ *	was critical on the then-current operating systems, as many limited
+ *	the number of open file descriptors to 20 or 32.
  *
  * 3)	record the mtime of the directory in the CachedDir structure and
  *	verify the directory hasn't changed since the contents were cached.
@@ -184,9 +173,9 @@ MAKE_RCSID("$NetBSD: dir.c,v 1.282 2023/
  *	number of reloadings and if the number goes over a (small) 

CVS commit: src/usr.bin/make

2023-09-21 Thread Roland Illig
Module Name:src
Committed By:   rillig
Date:   Thu Sep 21 20:30:59 UTC 2023

Modified Files:
src/usr.bin/make: dir.c

Log Message:
make: remove obsolete comments, clean up comments and identifiers

No binary change, except for the line numbers in assertions.


To generate a diff of this commit:
cvs rdiff -u -r1.282 -r1.283 src/usr.bin/make/dir.c

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



CVS commit: src/libexec/telnetd

2023-09-21 Thread Mateusz Kocielski
Module Name:src
Committed By:   shm
Date:   Thu Sep 21 14:00:34 UTC 2023

Modified Files:
src/libexec/telnetd: telnetd.c

Log Message:
Fix memory leak - free resources allocated by getaddrinfo


To generate a diff of this commit:
cvs rdiff -u -r1.58 -r1.59 src/libexec/telnetd/telnetd.c

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

Modified files:

Index: src/libexec/telnetd/telnetd.c
diff -u src/libexec/telnetd/telnetd.c:1.58 src/libexec/telnetd/telnetd.c:1.59
--- src/libexec/telnetd/telnetd.c:1.58	Fri Aug 26 19:30:44 2022
+++ src/libexec/telnetd/telnetd.c	Thu Sep 21 14:00:34 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: telnetd.c,v 1.58 2022/08/26 19:30:44 dholland Exp $	*/
+/*	$NetBSD: telnetd.c,v 1.59 2023/09/21 14:00:34 shm Exp $	*/
 
 /*
  * Copyright (C) 1997 and 1998 WIDE Project.
@@ -65,7 +65,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 19
 #if 0
 static char sccsid[] = "@(#)telnetd.c	8.4 (Berkeley) 5/30/95";
 #else
-__RCSID("$NetBSD: telnetd.c,v 1.58 2022/08/26 19:30:44 dholland Exp $");
+__RCSID("$NetBSD: telnetd.c,v 1.59 2023/09/21 14:00:34 shm Exp $");
 #endif
 #endif /* not lint */
 
@@ -400,6 +400,7 @@ main(int argc, char *argv[])
 	(void) dup2(ns, 0);
 	(void) close(ns);
 	(void) close(s);
+	freeaddrinfo(res);
 	} else if (argc > 0) {
 		usage();
 		/* NOT REACHED */



CVS commit: src/libexec/telnetd

2023-09-21 Thread Mateusz Kocielski
Module Name:src
Committed By:   shm
Date:   Thu Sep 21 14:00:34 UTC 2023

Modified Files:
src/libexec/telnetd: telnetd.c

Log Message:
Fix memory leak - free resources allocated by getaddrinfo


To generate a diff of this commit:
cvs rdiff -u -r1.58 -r1.59 src/libexec/telnetd/telnetd.c

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



CVS commit: src/lib/libc/gen

2023-09-21 Thread Mateusz Kocielski
Module Name:src
Committed By:   shm
Date:   Thu Sep 21 13:46:12 UTC 2023

Modified Files:
src/lib/libc/gen: getcap.c

Log Message:
Fix memory leak in getent()

Memory was not freed if record was not found


To generate a diff of this commit:
cvs rdiff -u -r1.57 -r1.58 src/lib/libc/gen/getcap.c

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

Modified files:

Index: src/lib/libc/gen/getcap.c
diff -u src/lib/libc/gen/getcap.c:1.57 src/lib/libc/gen/getcap.c:1.58
--- src/lib/libc/gen/getcap.c:1.57	Sun Jun 18 03:56:39 2017
+++ src/lib/libc/gen/getcap.c	Thu Sep 21 13:46:12 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: getcap.c,v 1.57 2017/06/18 03:56:39 manu Exp $	*/
+/*	$NetBSD: getcap.c,v 1.58 2023/09/21 13:46:12 shm Exp $	*/
 
 /*-
  * Copyright (c) 1992, 1993
@@ -41,7 +41,7 @@
 #if 0
 static char sccsid[] = "@(#)getcap.c	8.3 (Berkeley) 3/25/94";
 #else
-__RCSID("$NetBSD: getcap.c,v 1.57 2017/06/18 03:56:39 manu Exp $");
+__RCSID("$NetBSD: getcap.c,v 1.58 2023/09/21 13:46:12 shm Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -502,8 +502,10 @@ getent(char **cap, size_t *len, const ch
 			break;
 	}
 
-	if (!foundit)
+	if (!foundit) {
+		free(record);
 		return -1;
+	}
 
 	/*
 	 * Got the capability record, but now we have to expand all tc=name



CVS commit: src/lib/libc/gen

2023-09-21 Thread Mateusz Kocielski
Module Name:src
Committed By:   shm
Date:   Thu Sep 21 13:46:12 UTC 2023

Modified Files:
src/lib/libc/gen: getcap.c

Log Message:
Fix memory leak in getent()

Memory was not freed if record was not found


To generate a diff of this commit:
cvs rdiff -u -r1.57 -r1.58 src/lib/libc/gen/getcap.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-21 Thread Jan Schaumann
Module Name:src
Committed By:   jschauma
Date:   Thu Sep 21 13:38:03 UTC 2023

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

Log Message:
+CVSS   Common Vulnerability Scoring System


To generate a diff of this commit:
cvs rdiff -u -r1.367 -r1.368 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.367 src/share/misc/acronyms.comp:1.368
--- src/share/misc/acronyms.comp:1.367	Wed Sep 20 15:22:41 2023
+++ src/share/misc/acronyms.comp	Thu Sep 21 13:38:03 2023
@@ -1,4 +1,4 @@
-$NetBSD: acronyms.comp,v 1.367 2023/09/20 15:22:41 jschauma Exp $
+$NetBSD: acronyms.comp,v 1.368 2023/09/21 13:38:03 jschauma Exp $
 3WHS	three-way handshake
 8VSB	8-state vestigial side band modulation
 AA	anti-aliasing
@@ -354,6 +354,7 @@ CUT	coordinated universal time
 CV	control voltage
 CVE	common vulnerabilities and exposures
 CVS	Concurrent Versions System
+CVSS	Common Vulnerability Scoring System
 DA	destination address
 DAA	distributed application architecture
 DAAP	digital audio access protocol



CVS commit: src/share/misc

2023-09-21 Thread Jan Schaumann
Module Name:src
Committed By:   jschauma
Date:   Thu Sep 21 13:38:03 UTC 2023

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

Log Message:
+CVSS   Common Vulnerability Scoring System


To generate a diff of this commit:
cvs rdiff -u -r1.367 -r1.368 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: [netbsd-10] src/doc

2023-09-21 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep 21 13:23:45 UTC 2023

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

Log Message:
Ticket #377


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.125 -r1.1.2.126 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.125 src/doc/CHANGES-10.0:1.1.2.126
--- src/doc/CHANGES-10.0:1.1.2.125	Mon Sep 18 18:59:30 2023
+++ src/doc/CHANGES-10.0	Thu Sep 21 13:23:45 2023
@@ -1,4 +1,4 @@
-# $NetBSD: CHANGES-10.0,v 1.1.2.125 2023/09/18 18:59:30 martin Exp $
+# $NetBSD: CHANGES-10.0,v 1.1.2.126 2023/09/21 13:23:45 martin Exp $
 
 A complete list of changes from the initial NetBSD 10.0 branch on 2022-12-16
 until the 10.0 release:
@@ -11948,3 +11948,9 @@ sys/dev/raidframe/rf_netbsdkintf.c		1.41
 	is in progress.
 	[oster, ticket #376]
 
+sys/netinet/tcp_output.c			1.219
+
+	tcp: handle EHOSTDOWN the same way as EHOSTUNREACH and ENETDOWN for
+	established connections.
+	[bouyer, ticket #377]
+



CVS commit: [netbsd-10] src/doc

2023-09-21 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep 21 13:23:45 UTC 2023

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

Log Message:
Ticket #377


To generate a diff of this commit:
cvs rdiff -u -r1.1.2.125 -r1.1.2.126 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/netinet

2023-09-21 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep 21 13:22:46 UTC 2023

Modified Files:
src/sys/netinet [netbsd-10]: tcp_output.c

Log Message:
Pull up following revision(s) (requested by bouyer in ticket #377):

sys/netinet/tcp_output.c: revision 1.219

Handle EHOSTDOWN the same way as EHOSTUNREACH and ENETDOWN for established
connections. Avoid premature end of tcp connection with "Host is down" error
in case of transient link-layer failure.

Discussed and patch proposed in
http://mail-index.netbsd.org/tech-net/2023/09/11/msg008610.html
and followups.


To generate a diff of this commit:
cvs rdiff -u -r1.218 -r1.218.2.1 src/sys/netinet/tcp_output.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/netinet/tcp_output.c
diff -u src/sys/netinet/tcp_output.c:1.218 src/sys/netinet/tcp_output.c:1.218.2.1
--- src/sys/netinet/tcp_output.c:1.218	Fri Nov  4 09:01:53 2022
+++ src/sys/netinet/tcp_output.c	Thu Sep 21 13:22:46 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: tcp_output.c,v 1.218 2022/11/04 09:01:53 ozaki-r Exp $	*/
+/*	$NetBSD: tcp_output.c,v 1.218.2.1 2023/09/21 13:22:46 martin Exp $	*/
 
 /*
  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
@@ -135,7 +135,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: tcp_output.c,v 1.218 2022/11/04 09:01:53 ozaki-r Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcp_output.c,v 1.218.2.1 2023/09/21 13:22:46 martin Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -1612,8 +1612,8 @@ out:
 			TCP_STATINC(TCP_STAT_SELFQUENCH);
 			tcp_quench(tp->t_inpcb);
 			error = 0;
-		} else if ((error == EHOSTUNREACH || error == ENETDOWN) &&
-		TCPS_HAVERCVDSYN(tp->t_state)) {
+		} else if ((error == EHOSTUNREACH || error == ENETDOWN ||
+		error == EHOSTDOWN) && TCPS_HAVERCVDSYN(tp->t_state)) {
 			tp->t_softerror = error;
 			error = 0;
 		}



CVS commit: [netbsd-10] src/sys/netinet

2023-09-21 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Thu Sep 21 13:22:46 UTC 2023

Modified Files:
src/sys/netinet [netbsd-10]: tcp_output.c

Log Message:
Pull up following revision(s) (requested by bouyer in ticket #377):

sys/netinet/tcp_output.c: revision 1.219

Handle EHOSTDOWN the same way as EHOSTUNREACH and ENETDOWN for established
connections. Avoid premature end of tcp connection with "Host is down" error
in case of transient link-layer failure.

Discussed and patch proposed in
http://mail-index.netbsd.org/tech-net/2023/09/11/msg008610.html
and followups.


To generate a diff of this commit:
cvs rdiff -u -r1.218 -r1.218.2.1 src/sys/netinet/tcp_output.c

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



CVS commit: src/sys

2023-09-21 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Sep 21 09:31:50 UTC 2023

Modified Files:
src/sys/arch/arc/jazz: if_sn_jazzio.c
src/sys/arch/atari/dev: font_8x16.c font_8x8.c
src/sys/arch/mac68k/dev: adb_direct.c
src/sys/arch/macppc/dev: adb_direct.c
src/sys/arch/mips/mips: wired_map.c
src/sys/dev/ic: ispmbox.h ispvar.h
src/sys/dev/pci: if_ena.c if_iwm.c
src/sys/dev/usb: umcs.h
src/sys/dev/wsfont: vt220iso8x16.h vt220iso8x8.h
src/sys/kern: kern_event.c

Log Message:
s/ for for / for / in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/arc/jazz/if_sn_jazzio.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/atari/dev/font_8x16.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/atari/dev/font_8x8.c
cvs rdiff -u -r1.68 -r1.69 src/sys/arch/mac68k/dev/adb_direct.c
cvs rdiff -u -r1.44 -r1.45 src/sys/arch/macppc/dev/adb_direct.c
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/mips/mips/wired_map.c
cvs rdiff -u -r1.57 -r1.58 src/sys/dev/ic/ispmbox.h
cvs rdiff -u -r1.75 -r1.76 src/sys/dev/ic/ispvar.h
cvs rdiff -u -r1.33 -r1.34 src/sys/dev/pci/if_ena.c
cvs rdiff -u -r1.87 -r1.88 src/sys/dev/pci/if_iwm.c
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/usb/umcs.h
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/wsfont/vt220iso8x16.h
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/wsfont/vt220iso8x8.h
cvs rdiff -u -r1.149 -r1.150 src/sys/kern/kern_event.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/arch/arc/jazz/if_sn_jazzio.c
diff -u src/sys/arch/arc/jazz/if_sn_jazzio.c:1.14 src/sys/arch/arc/jazz/if_sn_jazzio.c:1.15
--- src/sys/arch/arc/jazz/if_sn_jazzio.c:1.14	Sat Feb 20 09:36:30 2021
+++ src/sys/arch/arc/jazz/if_sn_jazzio.c	Thu Sep 21 09:31:49 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_sn_jazzio.c,v 1.14 2021/02/20 09:36:30 rin Exp $	*/
+/*	$NetBSD: if_sn_jazzio.c,v 1.15 2023/09/21 09:31:49 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -30,12 +30,12 @@
  */
 
 /*
- * Microsoft JAZZ front-end for for the National Semiconductor DP83932
+ * Microsoft JAZZ front-end for the National Semiconductor DP83932
  * Systems-Oriented Network Interface Controller (SONIC).
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: if_sn_jazzio.c,v 1.14 2021/02/20 09:36:30 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_sn_jazzio.c,v 1.15 2023/09/21 09:31:49 msaitoh Exp $");
 
 #include 
 #include 

Index: src/sys/arch/atari/dev/font_8x16.c
diff -u src/sys/arch/atari/dev/font_8x16.c:1.6 src/sys/arch/atari/dev/font_8x16.c:1.7
--- src/sys/arch/atari/dev/font_8x16.c:1.6	Fri Jan  6 10:28:28 2023
+++ src/sys/arch/atari/dev/font_8x16.c	Thu Sep 21 09:31:49 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: font_8x16.c,v 1.6 2023/01/06 10:28:28 tsutsui Exp $	*/
+/*	$NetBSD: font_8x16.c,v 1.7 2023/09/21 09:31:49 msaitoh Exp $	*/
 
 /*
  *  Copyright (c) 1992, 1993, 1994 Hellmuth Michaelis and Joerg Wunsch
@@ -33,7 +33,7 @@
  */
 
 /*
- * Translated into compiler and human readable for for the Atari-TT port of
+ * Translated into compiler and human readable for the Atari-TT port of
  * NetBSD by Leo Weppelman.
  *
  * Reorganized and edited some chars to fit the iso-8859-1 fontset by
@@ -41,7 +41,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: font_8x16.c,v 1.6 2023/01/06 10:28:28 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: font_8x16.c,v 1.7 2023/09/21 09:31:49 msaitoh Exp $");
 
 #include 
 

Index: src/sys/arch/atari/dev/font_8x8.c
diff -u src/sys/arch/atari/dev/font_8x8.c:1.5 src/sys/arch/atari/dev/font_8x8.c:1.6
--- src/sys/arch/atari/dev/font_8x8.c:1.5	Fri Jan  6 10:28:28 2023
+++ src/sys/arch/atari/dev/font_8x8.c	Thu Sep 21 09:31:49 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: font_8x8.c,v 1.5 2023/01/06 10:28:28 tsutsui Exp $	*/
+/*	$NetBSD: font_8x8.c,v 1.6 2023/09/21 09:31:49 msaitoh Exp $	*/
 
 /*
  *  Copyright (c) 1992, 1993, 1994 Hellmuth Michaelis and Joerg Wunsch
@@ -33,7 +33,7 @@
  */
 
 /*
- * Translated into compiler and human readable for for the Atari-TT port of
+ * Translated into compiler and human readable for the Atari-TT port of
  * NetBSD by Leo Weppelman.
  *
  * Reorganized and edited some chars to fit the iso-8859-1 fontset
@@ -41,7 +41,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: font_8x8.c,v 1.5 2023/01/06 10:28:28 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: font_8x8.c,v 1.6 2023/09/21 09:31:49 msaitoh Exp $");
 
 #include 
 

Index: src/sys/arch/mac68k/dev/adb_direct.c
diff -u src/sys/arch/mac68k/dev/adb_direct.c:1.68 src/sys/arch/mac68k/dev/adb_direct.c:1.69
--- src/sys/arch/mac68k/dev/adb_direct.c:1.68	Tue Jan  8 19:41:09 2019
+++ src/sys/arch/mac68k/dev/adb_direct.c	Thu Sep 21 09:31:49 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: adb_direct.c,v 1.68 2019/01/08 19:41:09 jdolecek Exp $	*/
+/*	$NetBSD: adb_direct.c,v 1.69 2023/09/21 09:31:49 msaitoh Exp $	*/
 
 /* From: adb_direct.c 2.02 4/18/97 jpw */
 
@@ -62,7 +62,7 @@
 #ifdef __NetBSD__
 
 #include 

CVS commit: src/sys

2023-09-21 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Sep 21 09:31:50 UTC 2023

Modified Files:
src/sys/arch/arc/jazz: if_sn_jazzio.c
src/sys/arch/atari/dev: font_8x16.c font_8x8.c
src/sys/arch/mac68k/dev: adb_direct.c
src/sys/arch/macppc/dev: adb_direct.c
src/sys/arch/mips/mips: wired_map.c
src/sys/dev/ic: ispmbox.h ispvar.h
src/sys/dev/pci: if_ena.c if_iwm.c
src/sys/dev/usb: umcs.h
src/sys/dev/wsfont: vt220iso8x16.h vt220iso8x8.h
src/sys/kern: kern_event.c

Log Message:
s/ for for / for / in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/arch/arc/jazz/if_sn_jazzio.c
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/atari/dev/font_8x16.c
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/atari/dev/font_8x8.c
cvs rdiff -u -r1.68 -r1.69 src/sys/arch/mac68k/dev/adb_direct.c
cvs rdiff -u -r1.44 -r1.45 src/sys/arch/macppc/dev/adb_direct.c
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/mips/mips/wired_map.c
cvs rdiff -u -r1.57 -r1.58 src/sys/dev/ic/ispmbox.h
cvs rdiff -u -r1.75 -r1.76 src/sys/dev/ic/ispvar.h
cvs rdiff -u -r1.33 -r1.34 src/sys/dev/pci/if_ena.c
cvs rdiff -u -r1.87 -r1.88 src/sys/dev/pci/if_iwm.c
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/usb/umcs.h
cvs rdiff -u -r1.8 -r1.9 src/sys/dev/wsfont/vt220iso8x16.h
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/wsfont/vt220iso8x8.h
cvs rdiff -u -r1.149 -r1.150 src/sys/kern/kern_event.c

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



CVS commit: src/sys/arch/landisk/dev

2023-09-21 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Sep 21 09:24:09 UTC 2023

Modified Files:
src/sys/arch/landisk/dev: rs5c313_landisk.c

Log Message:
Fix typo in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/landisk/dev/rs5c313_landisk.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/arch/landisk/dev/rs5c313_landisk.c
diff -u src/sys/arch/landisk/dev/rs5c313_landisk.c:1.5 src/sys/arch/landisk/dev/rs5c313_landisk.c:1.6
--- src/sys/arch/landisk/dev/rs5c313_landisk.c:1.5	Tue Apr  6 15:29:19 2010
+++ src/sys/arch/landisk/dev/rs5c313_landisk.c	Thu Sep 21 09:24:09 2023
@@ -1,4 +1,4 @@
-/*	$NetBSD: rs5c313_landisk.c,v 1.5 2010/04/06 15:29:19 nonaka Exp $	*/
+/*	$NetBSD: rs5c313_landisk.c,v 1.6 2023/09/21 09:24:09 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -27,7 +27,7 @@
  */
 
 #include 
-__KERNEL_RCSID(0, "$NetBSD: rs5c313_landisk.c,v 1.5 2010/04/06 15:29:19 nonaka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rs5c313_landisk.c,v 1.6 2023/09/21 09:24:09 msaitoh Exp $");
 
 #include 
 #include 
@@ -123,7 +123,7 @@ rtc_ce(struct rs5c313_softc *sc, int ono
 
 
 /*
- * SCLK pin is connnected to SPB0DT.
+ * SCLK pin is connected to SPB0DT.
  * SPB0DT is always in output mode, we set SPB0IO in rtc_begin.
  */
 static void



CVS commit: src/sys/arch/landisk/dev

2023-09-21 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Sep 21 09:24:09 UTC 2023

Modified Files:
src/sys/arch/landisk/dev: rs5c313_landisk.c

Log Message:
Fix typo in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/landisk/dev/rs5c313_landisk.c

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