From owner-svn-src-head@freebsd.org Sat Apr 30 00:35:48 2016 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 1E074B20FDB; Sat, 30 Apr 2016 00:35:48 +0000 (UTC) (envelope-from pfg@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 D3B1A1108; Sat, 30 Apr 2016 00:35:47 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3U0ZlkH090623; Sat, 30 Apr 2016 00:35:47 GMT (envelope-from pfg@FreeBSD.org) Received: (from pfg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3U0Zk9I090617; Sat, 30 Apr 2016 00:35:46 GMT (envelope-from pfg@FreeBSD.org) Message-Id: <201604300035.u3U0Zk9I090617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pfg set sender to pfg@FreeBSD.org using -f From: "Pedro F. Giffuni" Date: Sat, 30 Apr 2016 00:35:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r298828 - head/sys/compat/ndis 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.21 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: Sat, 30 Apr 2016 00:35:48 -0000 Author: pfg Date: Sat Apr 30 00:35:46 2016 New Revision: 298828 URL: https://svnweb.freebsd.org/changeset/base/298828 Log: ndis: spelling fixes in comments. No functional change. Modified: head/sys/compat/ndis/kern_ndis.c head/sys/compat/ndis/ndis_var.h head/sys/compat/ndis/ntoskrnl_var.h head/sys/compat/ndis/subr_hal.c head/sys/compat/ndis/subr_ntoskrnl.c head/sys/compat/ndis/subr_pe.c Modified: head/sys/compat/ndis/kern_ndis.c ============================================================================== --- head/sys/compat/ndis/kern_ndis.c Sat Apr 30 00:34:04 2016 (r298827) +++ head/sys/compat/ndis/kern_ndis.c Sat Apr 30 00:35:46 2016 (r298828) @@ -717,7 +717,7 @@ ndis_ptom(m0, p) * send routine. * * NDIS packets consist of two parts: an ndis_packet structure, - * which is vaguely analagous to the pkthdr portion of an mbuf, + * which is vaguely analogous to the pkthdr portion of an mbuf, * and one or more ndis_buffer structures, which define the * actual memory segments in which the packet data resides. * We need to allocate one ndis_buffer for each mbuf in a chain, Modified: head/sys/compat/ndis/ndis_var.h ============================================================================== --- head/sys/compat/ndis/ndis_var.h Sat Apr 30 00:34:04 2016 (r298827) +++ head/sys/compat/ndis/ndis_var.h Sat Apr 30 00:35:46 2016 (r298828) @@ -1042,7 +1042,7 @@ struct ndis_request { uint32_t nr_bytesneeded; } ndis_set_information; } ndis_data; - /* NDIS 5.0 extentions */ + /* NDIS 5.0 extensions */ uint8_t nr_ndis_rsvd[9 * sizeof(void *)]; union { uint8_t nr_callmgr_rsvd[2 * sizeof(void *)]; @@ -1444,7 +1444,7 @@ struct ndis_miniport_characteristics { void * nmc_setinfo_func; void * nmc_transferdata_func; - /* NDIS 4.0 extentions */ + /* NDIS 4.0 extensions */ void * nmc_return_packet_func; void * nmc_sendmulti_func; @@ -1459,7 +1459,7 @@ struct ndis_miniport_characteristics { void * nmc_comultisend_func; void * nmc_corequest_func; - /* NDIS 5.1 extentions */ + /* NDIS 5.1 extensions */ void * nmc_canceltxpkts_handler; void * nmc_pnpevent_handler; Modified: head/sys/compat/ndis/ntoskrnl_var.h ============================================================================== --- head/sys/compat/ndis/ntoskrnl_var.h Sat Apr 30 00:34:04 2016 (r298827) +++ head/sys/compat/ndis/ntoskrnl_var.h Sat Apr 30 00:35:46 2016 (r298828) @@ -670,13 +670,13 @@ struct kuser_shared_data { * created and maintained by bus drivers. For example, the PCI * bus driver might detect two PCI ethernet cards on a given * bus. The PCI bus driver will then allocate two device_objects - * for its own internal bookeeping purposes. This is analagous + * for its own internal bookeeping purposes. This is analogous * to the device_t that the FreeBSD PCI code allocates and passes * into each PCI driver's probe and attach routines. * * When an ethernet driver claims one of the ethernet cards * on the bus, it will create its own device_object. This is - * the Functional Device Object. This object is analagous to the + * the Functional Device Object. This object is analogous to the * device-specific softc structure. */ @@ -962,7 +962,7 @@ struct io_stack_location { /* * There's a big-ass union here in the actual Windows - * definition of the stucture, but it contains stuff + * definition of the structure, but it contains stuff * that doesn't really apply to BSD, and defining it * all properly would require duplicating over a dozen * other structures that we'll never use. Since the Modified: head/sys/compat/ndis/subr_hal.c ============================================================================== --- head/sys/compat/ndis/subr_hal.c Sat Apr 30 00:34:04 2016 (r298827) +++ head/sys/compat/ndis/subr_hal.c Sat Apr 30 00:35:46 2016 (r298828) @@ -274,7 +274,7 @@ READ_PORT_BUFFER_UCHAR(port, val, cnt) * KeAcquireSpinLock() and KeReleaseSpinLock(), but these are just * macros that call KfAcquireSpinLock() and KfReleaseSpinLock(). * KefAcquireSpinLockAtDpcLevel() and KefReleaseSpinLockFromDpcLevel() - * perform the lock aquisition/release functions without doing the + * perform the lock acquisition/release functions without doing the * IRQL manipulation, and are used when one is already running at * DISPATCH_LEVEL. Make sense? Good. * Modified: head/sys/compat/ndis/subr_ntoskrnl.c ============================================================================== --- head/sys/compat/ndis/subr_ntoskrnl.c Sat Apr 30 00:34:04 2016 (r298827) +++ head/sys/compat/ndis/subr_ntoskrnl.c Sat Apr 30 00:35:46 2016 (r298828) @@ -722,7 +722,7 @@ IoGetDriverObjectExtension(drv, clid) /* * Sanity check. Our dummy bus drivers don't have - * any driver extentions. + * any driver extensions. */ if (drv->dro_driverext == NULL) Modified: head/sys/compat/ndis/subr_pe.c ============================================================================== --- head/sys/compat/ndis/subr_pe.c Sat Apr 30 00:34:04 2016 (r298827) +++ head/sys/compat/ndis/subr_pe.c Sat Apr 30 00:35:46 2016 (r298828) @@ -36,7 +36,7 @@ __FBSDID("$FreeBSD$"); /* * This file contains routines for relocating and dynamically linking * executable object code files in the Windows(r) PE (Portable Executable) - * format. In Windows, anything with a .EXE, .DLL or .SYS extention is + * format. In Windows, anything with a .EXE, .DLL or .SYS extension is * considered an executable, and all such files have some structures in * common. The PE format was apparently based largely on COFF but has * mutated significantly over time. We are mainly concerned with .SYS files,