Module Name:    src
Committed By:   msaitoh
Date:           Sun Dec  5 04:57:38 UTC 2021

Modified Files:
        src/sys/dev/nand: onfi.h
        src/sys/net: route.c

Log Message:
s/gurantee/guarantee/ in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/dev/nand/onfi.h
cvs rdiff -u -r1.229 -r1.230 src/sys/net/route.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/nand/onfi.h
diff -u src/sys/dev/nand/onfi.h:1.2 src/sys/dev/nand/onfi.h:1.3
--- src/sys/dev/nand/onfi.h:1.2	Thu Dec 26 04:53:12 2019
+++ src/sys/dev/nand/onfi.h	Sun Dec  5 04:57:38 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: onfi.h,v 1.2 2019/12/26 04:53:12 msaitoh Exp $	*/
+/*	$NetBSD: onfi.h,v 1.3 2021/12/05 04:57:38 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 2010 Department of Software Engineering,
@@ -142,7 +142,7 @@ struct onfi_parameter_page {
 	uint8_t param_guaranteed_blocks; /* M: guaranteed valid blocks at
 					  begginning of target */
 	uint16_t param_guaranteed_endurance; /* M: block endurance of
-					      guranteed blocks */
+					      guaranteed blocks */
 	uint8_t param_programs_per_page; /* M: number of programs per page */
 	uint8_t param_partial_programming_attr; /* O: obsolete */
 	uint8_t param_ecc_correctable_bits;     /* M: number of bits

Index: src/sys/net/route.c
diff -u src/sys/net/route.c:1.229 src/sys/net/route.c:1.230
--- src/sys/net/route.c:1.229	Wed Apr  8 03:37:14 2020
+++ src/sys/net/route.c	Sun Dec  5 04:57:38 2021
@@ -1,4 +1,4 @@
-/*	$NetBSD: route.c,v 1.229 2020/04/08 03:37:14 knakahara Exp $	*/
+/*	$NetBSD: route.c,v 1.230 2021/12/05 04:57:38 msaitoh Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2008 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: route.c,v 1.229 2020/04/08 03:37:14 knakahara Exp $");
+__KERNEL_RCSID(0, "$NetBSD: route.c,v 1.230 2021/12/05 04:57:38 msaitoh Exp $");
 
 #include <sys/param.h>
 #ifdef RTFLUSH_DEBUG
@@ -174,7 +174,7 @@ static void	rt_timer_timer(void *);
  *   - API: RT_RLOCK and friends
  * - rtcaches are NOT protected by the framework
  *   - Callers must guarantee a rtcache isn't accessed simultaneously
- *   - How the constraint is guranteed in the wild
+ *   - How the constraint is guaranteed in the wild
  *     - Protect a rtcache by a mutex (e.g., inp_route)
  *     - Make rtcache per-CPU and allow only accesses from softint
  *       (e.g., ipforward_rt_percpu)

Reply via email to