Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/uvm s/recusive/recursive/ in comment.
details: https://anonhg.NetBSD.org/src/rev/c32c4c8a3a1d
branches: trunk
changeset: 1026717:c32c4c8a3a1d
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Sun Dec 05 07:28:20 2021 +0000
description:
s/recusive/recursive/ in comment.
diffstat:
sys/dev/pci/qat/qat_ae.c | 6 +++---
sys/external/bsd/ipf/netinet/fil.c | 6 +++---
sys/uvm/uvm_fault.c | 6 +++---
3 files changed, 9 insertions(+), 9 deletions(-)
diffs (81 lines):
diff -r 2fe2b312684d -r c32c4c8a3a1d sys/dev/pci/qat/qat_ae.c
--- a/sys/dev/pci/qat/qat_ae.c Sun Dec 05 07:26:35 2021 +0000
+++ b/sys/dev/pci/qat/qat_ae.c Sun Dec 05 07:28:20 2021 +0000
@@ -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 @@
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 -r 2fe2b312684d -r c32c4c8a3a1d sys/external/bsd/ipf/netinet/fil.c
--- a/sys/external/bsd/ipf/netinet/fil.c Sun Dec 05 07:26:35 2021 +0000
+++ b/sys/external/bsd/ipf/netinet/fil.c Sun Dec 05 07:28:20 2021 +0000
@@ -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 @@
#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 @@
/* 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 -r 2fe2b312684d -r c32c4c8a3a1d sys/uvm/uvm_fault.c
--- a/sys/uvm/uvm_fault.c Sun Dec 05 07:26:35 2021 +0000
+++ b/sys/uvm/uvm_fault.c Sun Dec 05 07:28:20 2021 +0000
@@ -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 @@
* => 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
Home |
Main Index |
Thread Index |
Old Index