summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormsaitoh <msaitoh@NetBSD.org>2021-12-05 07:28:20 +0000
committermsaitoh <msaitoh@NetBSD.org>2021-12-05 07:28:20 +0000
commitfcb4598047fc549bc3ff8bd7ce48fc8d46f7ac64 (patch)
tree8bde873b27cf9ee4d3c34dc44d8436f701d419f3
parent2f4795e1e2bfe4e61d216787543eb8c889be102c (diff)
s/recusive/recursive/ in comment.
-rw-r--r--sys/dev/pci/qat/qat_ae.c6
-rw-r--r--sys/external/bsd/ipf/netinet/fil.c6
-rw-r--r--sys/uvm/uvm_fault.c6
3 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/pci/qat/qat_ae.c b/sys/dev/pci/qat/qat_ae.c
index c284cc705f3..b7510c23465 100644
--- a/sys/dev/pci/qat/qat_ae.c
+++ b/sys/dev/pci/qat/qat_ae.c
@@ -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_int ninst, u_int size, u_int addr,
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);
diff --git a/sys/external/bsd/ipf/netinet/fil.c b/sys/external/bsd/ipf/netinet/fil.c
index 7d3286c05a1..19154e2f617 100644
--- a/sys/external/bsd/ipf/netinet/fil.c
+++ b/sys/external/bsd/ipf/netinet/fil.c
@@ -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 *fr, int portcmp)
/* 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, */
diff --git a/sys/uvm/uvm_fault.c b/sys/uvm/uvm_fault.c
index a35ea288a96..7695996fa60 100644
--- a/sys/uvm/uvm_fault.c
+++ b/sys/uvm/uvm_fault.c
@@ -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_faultinfo *ufi)
* => 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