Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys s/pakcet/packet/ in comment.
details: https://anonhg.NetBSD.org/src/rev/985f76e36794
branches: trunk
changeset: 449728:985f76e36794
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Mon Mar 18 11:38:03 2019 +0000
description:
s/pakcet/packet/ in comment.
diffstat:
sys/dev/marvell/if_mvxpe.c | 8 ++++----
sys/dev/marvell/if_mvxpereg.h | 6 +++---
sys/dev/pci/ixgbe/ixgbe.c | 4 ++--
sys/dev/pci/ixgbe/ixv.c | 4 ++--
sys/net/if_pppoe.c | 6 +++---
sys/netinet6/in6.c | 6 +++---
sys/netipsec/ipsecif.c | 6 +++---
7 files changed, 20 insertions(+), 20 deletions(-)
diffs (180 lines):
diff -r 51b5dd285bac -r 985f76e36794 sys/dev/marvell/if_mvxpe.c
--- a/sys/dev/marvell/if_mvxpe.c Mon Mar 18 09:22:14 2019 +0000
+++ b/sys/dev/marvell/if_mvxpe.c Mon Mar 18 11:38:03 2019 +0000
@@ -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 @@
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 @@
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);
diff -r 51b5dd285bac -r 985f76e36794 sys/dev/marvell/if_mvxpereg.h
--- a/sys/dev/marvell/if_mvxpereg.h Mon Mar 18 09:22:14 2019 +0000
+++ b/sys/dev/marvell/if_mvxpereg.h Mon Mar 18 11:38:03 2019 +0000
@@ -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 @@
};
/*
- * Received pakcet command header:
+ * Received packet command header:
* network controller => software
* the controller parse the packet and set some flags.
*/
@@ -872,7 +872,7 @@
#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 */
diff -r 51b5dd285bac -r 985f76e36794 sys/dev/pci/ixgbe/ixgbe.c
--- a/sys/dev/pci/ixgbe/ixgbe.c Mon Mar 18 09:22:14 2019 +0000
+++ b/sys/dev/pci/ixgbe/ixgbe.c Mon Mar 18 11:38:03 2019 +0000
@@ -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 @@
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;
/*
diff -r 51b5dd285bac -r 985f76e36794 sys/dev/pci/ixgbe/ixv.c
--- a/sys/dev/pci/ixgbe/ixv.c Mon Mar 18 09:22:14 2019 +0000
+++ b/sys/dev/pci/ixgbe/ixv.c Mon Mar 18 11:38:03 2019 +0000
@@ -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 @@
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;
/*
diff -r 51b5dd285bac -r 985f76e36794 sys/net/if_pppoe.c
--- a/sys/net/if_pppoe.c Mon Mar 18 09:22:14 2019 +0000
+++ b/sys/net/if_pppoe.c Mon Mar 18 11:38:03 2019 +0000
@@ -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 @@
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) &&
diff -r 51b5dd285bac -r 985f76e36794 sys/netinet6/in6.c
--- a/sys/netinet6/in6.c Mon Mar 18 09:22:14 2019 +0000
+++ b/sys/netinet6/in6.c Mon Mar 18 11:38:03 2019 +0000
@@ -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 @@
/* 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);
diff -r 51b5dd285bac -r 985f76e36794 sys/netipsec/ipsecif.c
--- a/sys/netipsec/ipsecif.c Mon Mar 18 09:22:14 2019 +0000
+++ b/sys/netipsec/ipsecif.c Mon Mar 18 11:38:03 2019 +0000
@@ -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 @@
}
/*
- * validate and filter the pakcet
+ * validate and filter the packet
*/
static int
ipsecif4_filter4(const struct ip *ip, struct ipsec_variant *var,
Home |
Main Index |
Thread Index |
Old Index