From owner-svn-src-head@freebsd.org Fri Dec 25 14:51:38 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A9BCA51958; Fri, 25 Dec 2015 14:51:38 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 457261BB4; Fri, 25 Dec 2015 14:51:38 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBPEpbBd019259; Fri, 25 Dec 2015 14:51:37 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBPEpaW6019254; Fri, 25 Dec 2015 14:51:36 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201512251451.tBPEpaW6019254@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Fri, 25 Dec 2015 14:51:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r292730 - in head/sys: arm/arm dev/isci/scil dev/netmap mips/cavium netinet X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Dec 2015 14:51:38 -0000 Author: kevlo Date: Fri Dec 25 14:51:36 2015 New Revision: 292730 URL: https://svnweb.freebsd.org/changeset/base/292730 Log: Fix typo (s/harware/hardware/) Modified: head/sys/arm/arm/pmap-v6-new.c head/sys/dev/isci/scil/scic_sds_phy.h head/sys/dev/netmap/netmap.c head/sys/mips/cavium/cvmx_config.h head/sys/netinet/if_ether.c Modified: head/sys/arm/arm/pmap-v6-new.c ============================================================================== --- head/sys/arm/arm/pmap-v6-new.c Fri Dec 25 14:27:37 2015 (r292729) +++ head/sys/arm/arm/pmap-v6-new.c Fri Dec 25 14:51:36 2015 (r292730) @@ -3194,7 +3194,7 @@ setpte1: * When page is not modified, PTE2_RO can be set without * a TLB invalidation. * - * Note: When modified bit is being set, then in harware case, + * Note: When modified bit is being set, then in hardware case, * the TLB entry is re-read (updated) from PT2, and in * software case (abort), the PTE2 is read from PT2 and * TLB flushed if changed. The following cmpset() solves @@ -6170,7 +6170,7 @@ pte1_seta: /* * Handle modify bits for page and section. Note that the modify * bit is emulated by software. So PTEx_RO is software read only - * bit and PTEx_NM flag is real harware read only bit. + * bit and PTEx_NM flag is real hardware read only bit. * * QQQ: This is hardware emulation, we do not call userret() * for aborts from user mode. Modified: head/sys/dev/isci/scil/scic_sds_phy.h ============================================================================== --- head/sys/dev/isci/scil/scic_sds_phy.h Fri Dec 25 14:27:37 2015 (r292729) +++ head/sys/dev/isci/scil/scic_sds_phy.h Fri Dec 25 14:51:36 2015 (r292730) @@ -201,7 +201,7 @@ enum SCIC_SDS_PHY_PROTOCOL * @struct SCIC_SDS_PHY * * @brief This structure contains or references all of the data necessary to - * represent the core phy object and SCU harware protocol engine. + * represent the core phy object and SCU hardware protocol engine. */ typedef struct SCIC_SDS_PHY { Modified: head/sys/dev/netmap/netmap.c ============================================================================== --- head/sys/dev/netmap/netmap.c Fri Dec 25 14:27:37 2015 (r292729) +++ head/sys/dev/netmap/netmap.c Fri Dec 25 14:51:36 2015 (r292730) @@ -589,7 +589,7 @@ netmap_set_all_rings(struct netmap_adapt /* * Convenience function used in drivers. Waits for current txsync()s/rxsync()s * to finish and prevents any new one from starting. Call this before turning - * netmap mode off, or before removing the harware rings (e.g., on module + * netmap mode off, or before removing the hardware rings (e.g., on module * onload). As a rule of thumb for linux drivers, this should be placed near * each napi_disable(). */ Modified: head/sys/mips/cavium/cvmx_config.h ============================================================================== --- head/sys/mips/cavium/cvmx_config.h Fri Dec 25 14:27:37 2015 (r292729) +++ head/sys/mips/cavium/cvmx_config.h Fri Dec 25 14:51:36 2015 (r292730) @@ -63,7 +63,7 @@ #define CVMX_ENABLE_PKO_FUNCTIONS /* Define to enable the use of simple executive helper functions. These -** include many harware setup functions. See cvmx-helper.[ch] for +** include many hardware setup functions. See cvmx-helper.[ch] for ** details. */ #define CVMX_ENABLE_HELPER_FUNCTIONS Modified: head/sys/netinet/if_ether.c ============================================================================== --- head/sys/netinet/if_ether.c Fri Dec 25 14:27:37 2015 (r292729) +++ head/sys/netinet/if_ether.c Fri Dec 25 14:51:36 2015 (r292730) @@ -599,7 +599,7 @@ arpintr(struct mbuf *m) layer = "firewire"; /* - * Restrict too long harware addresses. + * Restrict too long hardware addresses. * Currently we are capable of handling 20-byte * addresses ( sizeof(lle->ll_addr) ) */ @@ -608,8 +608,8 @@ arpintr(struct mbuf *m) break; default: ARP_LOG(LOG_NOTICE, - "packet with unknown harware format 0x%02d received on %s\n", - ntohs(ar->ar_hrd), if_name(ifp)); + "packet with unknown hardware format 0x%02d received on " + "%s\n", ntohs(ar->ar_hrd), if_name(ifp)); m_freem(m); return; }