Module Name: src
Committed By: msaitoh
Date: Sun Dec 5 07:28:20 UTC 2021
Modified Files:
src/sys/dev/pci/qat: qat_ae.c
src/sys/external/bsd/ipf/netinet: fil.c
src/sys/uvm: uvm_fault.c
Log Message:
s/recusive/recursive/ in comment.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/dev/pci/qat/qat_ae.c
cvs rdiff -u -r1.34 -r1.35 src/sys/external/bsd/ipf/netinet/fil.c
cvs rdiff -u -r1.228 -r1.229 src/sys/uvm/uvm_fault.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/pci/qat/qat_ae.c
diff -u src/sys/dev/pci/qat/qat_ae.c:1.1 src/sys/dev/pci/qat/qat_ae.c:1.2
--- src/sys/dev/pci/qat/qat_ae.c:1.1 Wed Nov 20 09:37:46 2019
+++ src/sys/dev/pci/qat/qat_ae.c Sun Dec 5 07:28:20 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: qat_ae.c,v 1.1 2019/11/20 09:37:46 hikaru Exp $ */
+/* $NetBSD: qat_ae.c,v 1.2 2021/12/05 07:28:20 msaitoh Exp $ */
/*
* Copyright (c) 2019 Internet Initiative Japan, Inc.
@@ -57,7 +57,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: qat_ae.c,v 1.1 2019/11/20 09:37:46 hikaru Exp $");
+__KERNEL_RCSID(0, "$NetBSD: qat_ae.c,v 1.2 2021/12/05 07:28:20 msaitoh Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@@ -1485,7 +1485,7 @@ qat_ae_concat_ucode(uint64_t *ucode, u_i
addr += sizeof(u_int);
size -= sizeof(u_int);
}
- /* call this function recusive when the left size less than 4 */
+ /* call this function recursive when the left size less than 4 */
ninst +=
qat_ae_concat_ucode(ucode, ninst, size, addr, value + vali);
Index: src/sys/external/bsd/ipf/netinet/fil.c
diff -u src/sys/external/bsd/ipf/netinet/fil.c:1.34 src/sys/external/bsd/ipf/netinet/fil.c:1.35
--- src/sys/external/bsd/ipf/netinet/fil.c:1.34 Sun Dec 5 04:58:59 2021
+++ src/sys/external/bsd/ipf/netinet/fil.c Sun Dec 5 07:28:20 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: fil.c,v 1.34 2021/12/05 04:58:59 msaitoh Exp $ */
+/* $NetBSD: fil.c,v 1.35 2021/12/05 07:28:20 msaitoh Exp $ */
/*
* Copyright (C) 2012 by Darren Reed.
@@ -141,7 +141,7 @@ extern struct timeout ipf_slowtimer_ch;
#if !defined(lint)
#if defined(__NetBSD__)
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fil.c,v 1.34 2021/12/05 04:58:59 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fil.c,v 1.35 2021/12/05 07:28:20 msaitoh Exp $");
#else
static const char sccsid[] = "@(#)fil.c 1.36 6/5/96 (C) 1993-2000 Darren Reed";
static const char rcsid[] = "@(#)Id: fil.c,v 1.1.1.2 2012/07/22 13:45:07 darrenr Exp $";
@@ -2362,7 +2362,7 @@ ipf_check_ipf(fr_info_t *fin, frentry_t
/* If a match is found, the value of fr_flags from the rule becomes the */
/* return value and fin->fin_fr points to the matched rule. */
/* */
-/* This function may be called recusively upto 16 times (limit inbuilt.) */
+/* This function may be called recursively upto 16 times (limit inbuilt.) */
/* When unwinding, it should finish up with fin_depth as 0. */
/* */
/* Could be per interface, but this gets real nasty when you don't have, */
Index: src/sys/uvm/uvm_fault.c
diff -u src/sys/uvm/uvm_fault.c:1.228 src/sys/uvm/uvm_fault.c:1.229
--- src/sys/uvm/uvm_fault.c:1.228 Thu Jul 9 05:57:15 2020
+++ src/sys/uvm/uvm_fault.c Sun Dec 5 07:28:20 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: uvm_fault.c,v 1.228 2020/07/09 05:57:15 skrll Exp $ */
+/* $NetBSD: uvm_fault.c,v 1.229 2021/12/05 07:28:20 msaitoh Exp $ */
/*
* Copyright (c) 1997 Charles D. Cranor and Washington University.
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: uvm_fault.c,v 1.228 2020/07/09 05:57:15 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: uvm_fault.c,v 1.229 2021/12/05 07:28:20 msaitoh Exp $");
#include "opt_uvmhist.h"
@@ -701,7 +701,7 @@ uvmfault_update_stats(struct uvm_faultin
* => called from MD code to resolve a page fault
* => VM data structures usually should be unlocked. however, it is
* possible to call here with the main map locked if the caller
- * gets a write lock, sets it recusive, and then calls us (c.f.
+ * gets a write lock, sets it recursive, and then calls us (c.f.
* uvm_map_pageable). this should be avoided because it keeps
* the map locked off during I/O.
* => MUST NEVER BE CALLED IN INTERRUPT CONTEXT