Date: Sun, 15 Jan 2017 18:00:46 +0000 (UTC) From: "Conrad E. Meyer" <cem@FreeBSD.org> 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 Message-ID: <201701151800.v0FI0kO7082305@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bltsrc at mail.ru> 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 <sys/_task.h> 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 <sys/taskqueue.h> #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 <sys/condvar.h> 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 <sys/queue.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701151800.v0FI0kO7082305>