Module Name:    src
Committed By:   msaitoh
Date:           Mon Mar 18 11:38:04 UTC 2019

Modified Files:
        src/sys/dev/marvell: if_mvxpe.c if_mvxpereg.h
        src/sys/dev/pci/ixgbe: ixgbe.c ixv.c
        src/sys/net: if_pppoe.c
        src/sys/netinet6: in6.c
        src/sys/netipsec: ipsecif.c

Log Message:
 s/pakcet/packet/ in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/dev/marvell/if_mvxpe.c
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/marvell/if_mvxpereg.h
cvs rdiff -u -r1.178 -r1.179 src/sys/dev/pci/ixgbe/ixgbe.c
cvs rdiff -u -r1.111 -r1.112 src/sys/dev/pci/ixgbe/ixv.c
cvs rdiff -u -r1.146 -r1.147 src/sys/net/if_pppoe.c
cvs rdiff -u -r1.273 -r1.274 src/sys/netinet6/in6.c
cvs rdiff -u -r1.13 -r1.14 src/sys/netipsec/ipsecif.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/marvell/if_mvxpe.c
diff -u src/sys/dev/marvell/if_mvxpe.c:1.21 src/sys/dev/marvell/if_mvxpe.c:1.22
--- src/sys/dev/marvell/if_mvxpe.c:1.21	Tue Jan 22 03:42:27 2019
+++ src/sys/dev/marvell/if_mvxpe.c	Mon Mar 18 11:38:03 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_mvxpe.c,v 1.21 2019/01/22 03:42:27 msaitoh Exp $	*/
+/*	$NetBSD: if_mvxpe.c,v 1.22 2019/03/18 11:38:03 msaitoh Exp $	*/
 /*
  * Copyright (c) 2015 Internet Initiative Japan Inc.
  * All rights reserved.
@@ -25,7 +25,7 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_mvxpe.c,v 1.21 2019/01/22 03:42:27 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_mvxpe.c,v 1.22 2019/03/18 11:38:03 msaitoh Exp $");
 
 #include "opt_multiprocessor.h"
 
@@ -568,7 +568,7 @@ mvxpe_evcnt_attach(struct mvxpe_softc *s
 	evcnt_attach_dynamic(&sc->sc_ev.ev_rxtx_rreq, EVCNT_TYPE_INTR,
 	    NULL, device_xname(sc->sc_dev), "RxTx Rx resource erorr");
 	evcnt_attach_dynamic(&sc->sc_ev.ev_rxtx_rpq, EVCNT_TYPE_INTR,
-	    NULL, device_xname(sc->sc_dev), "RxTx Rx pakcet");
+	    NULL, device_xname(sc->sc_dev), "RxTx Rx packet");
 	evcnt_attach_dynamic(&sc->sc_ev.ev_rxtx_tbrq, EVCNT_TYPE_INTR,
 	    NULL, device_xname(sc->sc_dev), "RxTx Tx complete");
 	evcnt_attach_dynamic(&sc->sc_ev.ev_rxtx_rxtxth, EVCNT_TYPE_INTR,
@@ -2538,7 +2538,7 @@ mvxpe_rx_queue_select(struct mvxpe_softc
 			continue;
 
 		DPRINTSC(sc, 2, 
-		    "queue %d selected: prxs=%#x, %u pakcet received.\n",
+		    "queue %d selected: prxs=%#x, %u packet received.\n",
 		    q, prxs, npkt);
 		*queue = q;
 		mvxpe_rx_lockq(sc, q);

Index: src/sys/dev/marvell/if_mvxpereg.h
diff -u src/sys/dev/marvell/if_mvxpereg.h:1.4 src/sys/dev/marvell/if_mvxpereg.h:1.5
--- src/sys/dev/marvell/if_mvxpereg.h:1.4	Sat Feb 13 06:33:21 2016
+++ src/sys/dev/marvell/if_mvxpereg.h	Mon Mar 18 11:38:03 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_mvxpereg.h,v 1.4 2016/02/13 06:33:21 hikaru Exp $	*/
+/*	$NetBSD: if_mvxpereg.h,v 1.5 2019/03/18 11:38:03 msaitoh Exp $	*/
 /*
  * Copyright (c) 2015 Internet Initiative Japan Inc.
  * All rights reserved.
@@ -818,7 +818,7 @@ struct mvxpe_rx_desc {
 };
 
 /*
- * Received pakcet command header:
+ * Received packet command header:
  *  network controller => software
  * the controller parse the packet and set some flags.
  */
@@ -872,7 +872,7 @@ struct mvxpe_rx_desc {
 #define MVXPE_TX_CMD_L3_OFFSET(v)	(((v) & 0x7f) << 0) 
 
 /*
- * Transmit pakcet extra attributes
+ * Transmit packet extra attributes
  * and error status returned from network controller.
  */
 #define MVXPE_TX_F_DSA_TAG		(3 << 30)	/* DSA Tag */

Index: src/sys/dev/pci/ixgbe/ixgbe.c
diff -u src/sys/dev/pci/ixgbe/ixgbe.c:1.178 src/sys/dev/pci/ixgbe/ixgbe.c:1.179
--- src/sys/dev/pci/ixgbe/ixgbe.c:1.178	Fri Mar 15 02:38:20 2019
+++ src/sys/dev/pci/ixgbe/ixgbe.c	Mon Mar 18 11:38:03 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: ixgbe.c,v 1.178 2019/03/15 02:38:20 msaitoh Exp $ */
+/* $NetBSD: ixgbe.c,v 1.179 2019/03/18 11:38:03 msaitoh Exp $ */
 
 /******************************************************************************
 
@@ -324,7 +324,7 @@ static int ixgbe_flow_control = ixgbe_fc
 SYSCTL_INT(_hw_ix, OID_AUTO, flow_control, CTLFLAG_RDTUN,
     &ixgbe_flow_control, 0, "Default flow control used for all adapters");
 
-/* Which pakcet processing uses workqueue or softint */
+/* Which packet processing uses workqueue or softint */
 static bool ixgbe_txrx_workqueue = false;
 
 /*

Index: src/sys/dev/pci/ixgbe/ixv.c
diff -u src/sys/dev/pci/ixgbe/ixv.c:1.111 src/sys/dev/pci/ixgbe/ixv.c:1.112
--- src/sys/dev/pci/ixgbe/ixv.c:1.111	Fri Mar 15 02:38:20 2019
+++ src/sys/dev/pci/ixgbe/ixv.c	Mon Mar 18 11:38:03 2019
@@ -1,4 +1,4 @@
-/*$NetBSD: ixv.c,v 1.111 2019/03/15 02:38:20 msaitoh Exp $*/
+/*$NetBSD: ixv.c,v 1.112 2019/03/18 11:38:03 msaitoh Exp $*/
 
 /******************************************************************************
 
@@ -203,7 +203,7 @@ TUNABLE_INT("hw.ixv.rx_process_limit", &
 static int ixv_tx_process_limit = 256;
 TUNABLE_INT("hw.ixv.tx_process_limit", &ixv_tx_process_limit);
 
-/* Which pakcet processing uses workqueue or softint */
+/* Which packet processing uses workqueue or softint */
 static bool ixv_txrx_workqueue = false;
 
 /*

Index: src/sys/net/if_pppoe.c
diff -u src/sys/net/if_pppoe.c:1.146 src/sys/net/if_pppoe.c:1.147
--- src/sys/net/if_pppoe.c:1.146	Sat Oct 27 06:46:43 2018
+++ src/sys/net/if_pppoe.c	Mon Mar 18 11:38:03 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: if_pppoe.c,v 1.146 2018/10/27 06:46:43 maxv Exp $ */
+/* $NetBSD: if_pppoe.c,v 1.147 2019/03/18 11:38:03 msaitoh Exp $ */
 
 /*
  * Copyright (c) 2002, 2008 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_pppoe.c,v 1.146 2018/10/27 06:46:43 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_pppoe.c,v 1.147 2019/03/18 11:38:03 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "pppoe.h"
@@ -1076,7 +1076,7 @@ pppoe_data_input(struct mbuf *m)
 			static int curpps = 0;
 			/*
 			 * avoid to send wrong PADT which is response from
-			 * session stage pakcets for other hosts when parent
+			 * session stage packets for other hosts when parent
 			 * ethernet is promiscuous mode.
 			 */
 			if (pppoe_is_my_frame(dhost, rcvif) &&

Index: src/sys/netinet6/in6.c
diff -u src/sys/netinet6/in6.c:1.273 src/sys/netinet6/in6.c:1.274
--- src/sys/netinet6/in6.c:1.273	Tue Feb  5 04:48:47 2019
+++ src/sys/netinet6/in6.c	Mon Mar 18 11:38:03 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: in6.c,v 1.273 2019/02/05 04:48:47 mrg Exp $	*/
+/*	$NetBSD: in6.c,v 1.274 2019/03/18 11:38:03 msaitoh Exp $	*/
 /*	$KAME: in6.c,v 1.198 2001/07/18 09:12:38 itojun Exp $	*/
 
 /*
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: in6.c,v 1.273 2019/02/05 04:48:47 mrg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: in6.c,v 1.274 2019/03/18 11:38:03 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -2371,7 +2371,7 @@ in6_tunnel_validate(const struct ip6_hdr
 
 	/* martian filters on outer source - done in ip6_input */
 
-	/* NOTE: the pakcet may be dropped by uRPF. */
+	/* NOTE: the packet may be dropped by uRPF. */
 
 	/* return valid bytes length */
 	return sizeof(*src) + sizeof(*dst);

Index: src/sys/netipsec/ipsecif.c
diff -u src/sys/netipsec/ipsecif.c:1.13 src/sys/netipsec/ipsecif.c:1.14
--- src/sys/netipsec/ipsecif.c:1.13	Wed Dec 26 08:58:51 2018
+++ src/sys/netipsec/ipsecif.c	Mon Mar 18 11:38:03 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: ipsecif.c,v 1.13 2018/12/26 08:58:51 knakahara Exp $  */
+/*	$NetBSD: ipsecif.c,v 1.14 2019/03/18 11:38:03 msaitoh Exp $  */
 
 /*
  * Copyright (c) 2017 Internet Initiative Japan Inc.
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ipsecif.c,v 1.13 2018/12/26 08:58:51 knakahara Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ipsecif.c,v 1.14 2019/03/18 11:38:03 msaitoh Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_inet.h"
@@ -748,7 +748,7 @@ ipsecif4_input(struct mbuf *m, int off, 
 }
 
 /*
- * validate and filter the pakcet
+ * validate and filter the packet
  */
 static int
 ipsecif4_filter4(const struct ip *ip, struct ipsec_variant *var,

Reply via email to