From owner-svn-src-all@freebsd.org Sun Jan 15 18:00:48 2017 Return-Path: Delivered-To: svn-src-all@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 50B69CB1732; Sun, 15 Jan 2017 18:00:48 +0000 (UTC) (envelope-from cem@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 2DB351AB5; Sun, 15 Jan 2017 18:00:48 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0FI0lpi082319; Sun, 15 Jan 2017 18:00:47 GMT (envelope-from cem@FreeBSD.org) Received: (from cem@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0FI0kO7082305; Sun, 15 Jan 2017 18:00:46 GMT (envelope-from cem@FreeBSD.org) Message-Id: <201701151800.v0FI0kO7082305@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cem set sender to cem@FreeBSD.org using -f From: "Conrad E. Meyer" Date: Sun, 15 Jan 2017 18:00:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r312235 - in head/sys: amd64/vmm cam netinet/cc sys X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jan 2017 18:00:48 -0000 Author: cem Date: Sun Jan 15 18:00:45 2017 New Revision: 312235 URL: https://svnweb.freebsd.org/changeset/base/312235 Log: Fix a variety of cosmetic typos and misspellings No functional change. PR: 216096, 216097, 216098, 216101, 216102, 216106, 216109, 216110 Reported by: Bulat Sponsored by: Dell EMC Isilon Modified: head/sys/amd64/vmm/vmm_host.h head/sys/cam/cam_compat.h head/sys/cam/cam_iosched.h head/sys/netinet/cc/cc.h head/sys/sys/buf_ring.h head/sys/sys/bus.h head/sys/sys/busdma_bufalloc.h head/sys/sys/devmap.h head/sys/sys/eventvar.h head/sys/sys/gtaskqueue.h head/sys/sys/ksem.h head/sys/sys/pipe.h head/sys/sys/sockopt.h head/sys/sys/taskqueue.h Modified: head/sys/amd64/vmm/vmm_host.h ============================================================================== --- head/sys/amd64/vmm/vmm_host.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/amd64/vmm/vmm_host.h Sun Jan 15 18:00:45 2017 (r312235) @@ -30,7 +30,7 @@ #define _VMM_HOST_H_ #ifndef _KERNEL -#error "no user-servicable parts inside" +#error "no user-serviceable parts inside" #endif struct xsave_limits { Modified: head/sys/cam/cam_compat.h ============================================================================== --- head/sys/cam/cam_compat.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/cam/cam_compat.h Sun Jan 15 18:00:45 2017 (r312235) @@ -31,7 +31,7 @@ #ifndef _CAM_CAM_COMPAT_H #define _CAM_CAM_COMPAT_H -/* No user-servicable parts in here. */ +/* No user-serviceable parts in here. */ #ifdef _KERNEL int cam_compat_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int flag, Modified: head/sys/cam/cam_iosched.h ============================================================================== --- head/sys/cam/cam_iosched.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/cam/cam_iosched.h Sun Jan 15 18:00:45 2017 (r312235) @@ -31,7 +31,7 @@ #ifndef _CAM_CAM_IOSCHED_H #define _CAM_CAM_IOSCHED_H -/* No user-servicable parts in here. */ +/* No user-serviceable parts in here. */ #ifdef _KERNEL /* Forward declare all structs to keep interface thin */ Modified: head/sys/netinet/cc/cc.h ============================================================================== --- head/sys/netinet/cc/cc.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/netinet/cc/cc.h Sun Jan 15 18:00:45 2017 (r312235) @@ -52,7 +52,7 @@ #define _NETINET_CC_CC_H_ #if !defined(_KERNEL) -#error "no user-servicable parts inside" +#error "no user-serviceable parts inside" #endif /* Global CC vars. */ Modified: head/sys/sys/buf_ring.h ============================================================================== --- head/sys/sys/buf_ring.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/sys/buf_ring.h Sun Jan 15 18:00:45 2017 (r312235) @@ -250,16 +250,16 @@ buf_ring_advance_sc(struct buf_ring *br) /* * Used to return a buffer (most likely already there) - * to the top od the ring. The caller should *not* + * to the top of the ring. The caller should *not* * have used any dequeue to pull it out of the ring * but instead should have used the peek() function. * This is normally used where the transmit queue - * of a driver is full, and an mubf must be returned. + * of a driver is full, and an mbuf must be returned. * Most likely whats in the ring-buffer is what * is being put back (since it was not removed), but * sometimes the lower transmit function may have * done a pullup or other function that will have - * changed it. As an optimzation we always put it + * changed it. As an optimization we always put it * back (since jhb says the store is probably cheaper), * if we have to do a multi-queue version we will need * the compare and an atomic. Modified: head/sys/sys/bus.h ============================================================================== --- head/sys/sys/bus.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/sys/bus.h Sun Jan 15 18:00:45 2017 (r312235) @@ -662,7 +662,7 @@ void bus_data_generation_update(void); * Some convenience defines for probe routines to return. These are just * suggested values, and there's nothing magical about them. * BUS_PROBE_SPECIFIC is for devices that cannot be reprobed, and that no - * possible other driver may exist (typically legacy drivers who don't fallow + * possible other driver may exist (typically legacy drivers who don't follow * all the rules, or special needs drivers). BUS_PROBE_VENDOR is the * suggested value that vendor supplied drivers use. This is for source or * binary drivers that are not yet integrated into the FreeBSD tree. Its use @@ -675,7 +675,7 @@ void bus_data_generation_update(void); * supports the newer ones would return BUS_PROBE_DEFAULT. BUS_PROBE_GENERIC * is for drivers that wish to have a generic form and a specialized form, * like is done with the pci bus and the acpi pci bus. BUS_PROBE_HOOVER is - * for those buses that implement a generic device place-holder for devices on + * for those buses that implement a generic device placeholder for devices on * the bus that have no more specific driver for them (aka ugen). * BUS_PROBE_NOWILDCARD or lower means that the device isn't really bidding * for a device node, but accepts only devices that its parent has told it Modified: head/sys/sys/busdma_bufalloc.h ============================================================================== --- head/sys/sys/busdma_bufalloc.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/sys/busdma_bufalloc.h Sun Jan 15 18:00:45 2017 (r312235) @@ -71,7 +71,7 @@ typedef struct busdma_bufalloc *busdma_b * name appears in zone stats as 'dma name nnnnn' where 'dma' is fixed and * 'nnnnn' is the size of buffers in that zone. * - * If if the alloc/free function pointers are NULL, the regular uma internal + * If the alloc/free function pointers are NULL, the regular uma internal * allocators are used (I.E., you get "plain old kernel memory"). On a platform * with an exclusion zone that applies to all DMA operations, a custom allocator * could be used to ensure no buffer memory is ever allocated from that zone, @@ -116,4 +116,3 @@ void busdma_bufalloc_free_uncacheable(v uint8_t pflag); #endif /* _MACHINE_BUSDMA_BUFALLOC_H_ */ - Modified: head/sys/sys/devmap.h ============================================================================== --- head/sys/sys/devmap.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/sys/devmap.h Sun Jan 15 18:00:45 2017 (r312235) @@ -30,7 +30,7 @@ #define _SYS_DEVMAP_H_ #ifndef _KERNEL -#error "no user-servicable parts inside" +#error "no user-serviceable parts inside" #endif /* Modified: head/sys/sys/eventvar.h ============================================================================== --- head/sys/sys/eventvar.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/sys/eventvar.h Sun Jan 15 18:00:45 2017 (r312235) @@ -30,7 +30,7 @@ #define _SYS_EVENTVAR_H_ #ifndef _KERNEL -#error "no user-servicable parts inside" +#error "no user-serviceable parts inside" #endif #include Modified: head/sys/sys/gtaskqueue.h ============================================================================== --- head/sys/sys/gtaskqueue.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/sys/gtaskqueue.h Sun Jan 15 18:00:45 2017 (r312235) @@ -32,7 +32,7 @@ #include #ifndef _KERNEL -#error "no user-servicable parts inside" +#error "no user-serviceable parts inside" #endif struct gtaskqueue; Modified: head/sys/sys/ksem.h ============================================================================== --- head/sys/sys/ksem.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/sys/ksem.h Sun Jan 15 18:00:45 2017 (r312235) @@ -30,7 +30,7 @@ #define _POSIX4_KSEM_H_ #if !defined(_KERNEL) && !defined(_WANT_FILE) -#error "no user-servicable parts inside" +#error "no user-serviceable parts inside" #endif #include Modified: head/sys/sys/pipe.h ============================================================================== --- head/sys/sys/pipe.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/sys/pipe.h Sun Jan 15 18:00:45 2017 (r312235) @@ -25,7 +25,7 @@ #define _SYS_PIPE_H_ #ifndef _KERNEL -#error "no user-servicable parts inside" +#error "no user-serviceable parts inside" #endif /* Modified: head/sys/sys/sockopt.h ============================================================================== --- head/sys/sys/sockopt.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/sys/sockopt.h Sun Jan 15 18:00:45 2017 (r312235) @@ -34,7 +34,7 @@ #define _SYS_SOCKOPT_H_ #ifndef _KERNEL -#error "no user-servicable parts inside" +#error "no user-serviceable parts inside" #endif Modified: head/sys/sys/taskqueue.h ============================================================================== --- head/sys/sys/taskqueue.h Sun Jan 15 17:54:01 2017 (r312234) +++ head/sys/sys/taskqueue.h Sun Jan 15 18:00:45 2017 (r312235) @@ -30,7 +30,7 @@ #define _SYS_TASKQUEUE_H_ #ifndef _KERNEL -#error "no user-servicable parts inside" +#error "no user-serviceable parts inside" #endif #include