Module Name: src
Committed By: andvar
Date: Sun Aug 7 09:37:47 UTC 2022
Modified Files:
src/sys/arch/powerpc/oea: oea_machdep.c
src/sys/dev/pci/ixgbe: ix_txrx.c
Log Message:
fix typos in comments.
To generate a diff of this commit:
cvs rdiff -u -r1.83 -r1.84 src/sys/arch/powerpc/oea/oea_machdep.c
cvs rdiff -u -r1.98 -r1.99 src/sys/dev/pci/ixgbe/ix_txrx.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/powerpc/oea/oea_machdep.c
diff -u src/sys/arch/powerpc/oea/oea_machdep.c:1.83 src/sys/arch/powerpc/oea/oea_machdep.c:1.84
--- src/sys/arch/powerpc/oea/oea_machdep.c:1.83 Sun Dec 5 07:53:57 2021
+++ src/sys/arch/powerpc/oea/oea_machdep.c Sun Aug 7 09:37:46 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: oea_machdep.c,v 1.83 2021/12/05 07:53:57 msaitoh Exp $ */
+/* $NetBSD: oea_machdep.c,v 1.84 2022/08/07 09:37:46 andvar Exp $ */
/*
* Copyright (C) 2002 Matt Thomas
@@ -33,7 +33,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: oea_machdep.c,v 1.83 2021/12/05 07:53:57 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: oea_machdep.c,v 1.84 2022/08/07 09:37:46 andvar Exp $");
#ifdef _KERNEL_OPT
#include "opt_altivec.h"
@@ -420,7 +420,7 @@ oea_init(void (*handler)(void))
/*
* If we are on a MPC601 processor, we need to zap any tlbsync
* instructions into sync. This differs from the above in
- * examing all kernel text, as opposed to just the exception handling.
+ * examining all kernel text, as opposed to just the exception handling.
* We sync the icache on every instruction found since there are
* only very few of them.
*/
Index: src/sys/dev/pci/ixgbe/ix_txrx.c
diff -u src/sys/dev/pci/ixgbe/ix_txrx.c:1.98 src/sys/dev/pci/ixgbe/ix_txrx.c:1.99
--- src/sys/dev/pci/ixgbe/ix_txrx.c:1.98 Wed May 11 17:22:20 2022
+++ src/sys/dev/pci/ixgbe/ix_txrx.c Sun Aug 7 09:37:47 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: ix_txrx.c,v 1.98 2022/05/11 17:22:20 bouyer Exp $ */
+/* $NetBSD: ix_txrx.c,v 1.99 2022/08/07 09:37:47 andvar Exp $ */
/******************************************************************************
@@ -64,7 +64,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ix_txrx.c,v 1.98 2022/05/11 17:22:20 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ix_txrx.c,v 1.99 2022/08/07 09:37:47 andvar Exp $");
#include "opt_inet.h"
#include "opt_inet6.h"
@@ -316,7 +316,7 @@ ixgbe_mq_start_locked(struct ifnet *ifp,
#if __FreeBSD_version >= 1100036
/*
* Since we're looking at the tx ring, we can check
- * to see if we're a VF by examing our tail register
+ * to see if we're a VF by examining our tail register
* address.
*/
if ((txr->adapter->feat_en & IXGBE_FEATURE_VF) &&
@@ -1964,7 +1964,7 @@ ixgbe_rxeof(struct ix_queue *que)
* not be fragmented across sequential
* descriptors, rather the next descriptor
* is indicated in bits of the descriptor.
- * This also means that we might proceses
+ * This also means that we might process
* more than one packet at a time, something
* that has never been true before, it
* required eliminating global chain pointers