svn commit: r346817 - in stable/11/sys: amd64/linux amd64/linux32 compat/freebsd32 dev/aic7xxx dev/drm2 dev/xen/blkback dev/xen/netback i386/ibcs2 i386/linux i386/pci kern netgraph x86/include
Dmitry Chagin
dchagin at FreeBSD.org
Sun Apr 28 13:21:05 UTC 2019
Author: dchagin
Date: Sun Apr 28 13:21:01 2019
New Revision: 346817
URL: https://svnweb.freebsd.org/changeset/base/346817
Log:
MFC r329873 (by emaste@):
Correct pseudo misspelling in sys/ comments
contrib code and #define in intel_ata.h unchanged.
Modified:
stable/11/sys/amd64/linux/syscalls.master
stable/11/sys/amd64/linux32/syscalls.master
stable/11/sys/compat/freebsd32/syscalls.master
stable/11/sys/dev/aic7xxx/aic7xxx.seq
stable/11/sys/dev/drm2/drm_fb_helper.c
stable/11/sys/dev/xen/blkback/blkback.c
stable/11/sys/dev/xen/netback/netback.c
stable/11/sys/i386/ibcs2/syscalls.master
stable/11/sys/i386/linux/syscalls.master
stable/11/sys/i386/pci/pci_pir.c
stable/11/sys/kern/syscalls.master
stable/11/sys/netgraph/ng_atmllc.c
stable/11/sys/x86/include/apicvar.h
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/sys/amd64/linux/syscalls.master
==============================================================================
--- stable/11/sys/amd64/linux/syscalls.master Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/amd64/linux/syscalls.master Sun Apr 28 13:21:01 2019 (r346817)
@@ -12,7 +12,7 @@
; case where the event exists, but we don't want auditing, the
; event should be #defined to AUE_NULL in audit_kevents.h.
; type one of STD, NOPROTO, UNIMPL
-; name psuedo-prototype of syscall routine
+; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"
Modified: stable/11/sys/amd64/linux32/syscalls.master
==============================================================================
--- stable/11/sys/amd64/linux32/syscalls.master Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/amd64/linux32/syscalls.master Sun Apr 28 13:21:01 2019 (r346817)
@@ -12,7 +12,7 @@
; case where the event exists, but we don't want auditing, the
; event should be #defined to AUE_NULL in audit_kevents.h.
; type one of STD, NOPROTO, UNIMPL
-; name psuedo-prototype of syscall routine
+; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"
Modified: stable/11/sys/compat/freebsd32/syscalls.master
==============================================================================
--- stable/11/sys/compat/freebsd32/syscalls.master Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/compat/freebsd32/syscalls.master Sun Apr 28 13:21:01 2019 (r346817)
@@ -16,7 +16,7 @@
; COMPAT7, NODEF, NOARGS, NOPROTO, NOSTD
; The COMPAT* options may be combined with one or more NO*
; options separated by '|' with no spaces (e.g. COMPAT|NOARGS)
-; name psuedo-prototype of syscall routine
+; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"
Modified: stable/11/sys/dev/aic7xxx/aic7xxx.seq
==============================================================================
--- stable/11/sys/dev/aic7xxx/aic7xxx.seq Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/dev/aic7xxx/aic7xxx.seq Sun Apr 28 13:21:01 2019 (r346817)
@@ -57,7 +57,7 @@ PREFIX = "ahc_"
* a later time. This problem cannot be resolved by holding a single entry
* in scratch ram since a reconnecting target can request sense and this will
* create yet another SCB waiting for selection. The solution used here is to
- * use byte 27 of the SCB as a psuedo-next pointer and to thread a list
+ * use byte 27 of the SCB as a pseudo-next pointer and to thread a list
* of SCBs that are awaiting selection. Since 0-0xfe are valid SCB indexes,
* SCB_LIST_NULL is 0xff which is out of range. An entry is also added to
* this list every time a request sense occurs or after completing a non-tagged
Modified: stable/11/sys/dev/drm2/drm_fb_helper.c
==============================================================================
--- stable/11/sys/dev/drm2/drm_fb_helper.c Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/dev/drm2/drm_fb_helper.c Sun Apr 28 13:21:01 2019 (r346817)
@@ -580,7 +580,7 @@ static int setcolreg(struct drm_crtc *crtc, u16 red, u
if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
u32 *palette;
u32 value;
- /* place color in psuedopalette */
+ /* place color in pseudopalette */
if (regno > 16)
return -EINVAL;
palette = (u32 *)info->pseudo_palette;
Modified: stable/11/sys/dev/xen/blkback/blkback.c
==============================================================================
--- stable/11/sys/dev/xen/blkback/blkback.c Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/dev/xen/blkback/blkback.c Sun Apr 28 13:21:01 2019 (r346817)
@@ -249,7 +249,7 @@ struct xbb_xen_reqlist {
uint8_t *kva;
/**
- * Base, psuedo-physical address, corresponding to the start
+ * Base, pseudo-physical address, corresponding to the start
* of this request's kva region.
*/
uint64_t gnt_base;
@@ -588,7 +588,7 @@ struct xbb_softc {
*/
vm_offset_t kva;
- /** Psuedo-physical address corresponding to kva. */
+ /** Pseudo-physical address corresponding to kva. */
uint64_t gnt_base_addr;
/** The size of the global kva pool. */
@@ -937,7 +937,7 @@ xbb_reqlist_ioaddr(struct xbb_xen_reqlist *reqlist, in
/**
* Given a page index and 512b sector offset within that page, calculate
- * an offset into the local psuedo-physical address space used to map a
+ * an offset into the local pseudo-physical address space used to map a
* front-end's request data into a request.
*
* \param reqlist The request list structure whose pseudo-physical region
Modified: stable/11/sys/dev/xen/netback/netback.c
==============================================================================
--- stable/11/sys/dev/xen/netback/netback.c Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/dev/xen/netback/netback.c Sun Apr 28 13:21:01 2019 (r346817)
@@ -489,7 +489,7 @@ struct xnb_softc {
*/
vm_offset_t kva;
- /** Psuedo-physical address corresponding to kva. */
+ /** Pseudo-physical address corresponding to kva. */
uint64_t gnt_base_addr;
/** Various configuration and state bit flags. */
Modified: stable/11/sys/i386/ibcs2/syscalls.master
==============================================================================
--- stable/11/sys/i386/ibcs2/syscalls.master Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/i386/ibcs2/syscalls.master Sun Apr 28 13:21:01 2019 (r346817)
@@ -12,7 +12,7 @@
; case where the event exists, but we don't want auditing, the
; event should be #defined to AUE_NULL in audit_kevents.h.
; type one of STD, OBSOL, UNIMPL, COMPAT
-; name psuedo-prototype of syscall routine
+; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"
Modified: stable/11/sys/i386/linux/syscalls.master
==============================================================================
--- stable/11/sys/i386/linux/syscalls.master Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/i386/linux/syscalls.master Sun Apr 28 13:21:01 2019 (r346817)
@@ -12,7 +12,7 @@
; case where the event exists, but we don't want auditing, the
; event should be #defined to AUE_NULL in audit_kevents.h.
; type one of STD, NOPROTO, UNIMPL
-; name psuedo-prototype of syscall routine
+; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"
Modified: stable/11/sys/i386/pci/pci_pir.c
==============================================================================
--- stable/11/sys/i386/pci/pci_pir.c Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/i386/pci/pci_pir.c Sun Apr 28 13:21:01 2019 (r346817)
@@ -651,7 +651,7 @@ pci_pir_probe(int bus, int require_parse)
}
/*
- * The driver for the new-bus psuedo device pir0 for the $PIR table.
+ * The driver for the new-bus pseudo device pir0 for the $PIR table.
*/
static int
Modified: stable/11/sys/kern/syscalls.master
==============================================================================
--- stable/11/sys/kern/syscalls.master Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/kern/syscalls.master Sun Apr 28 13:21:01 2019 (r346817)
@@ -15,7 +15,7 @@
; COMPAT7, NODEF, NOARGS, NOPROTO, NOSTD
; The COMPAT* options may be combined with one or more NO*
; options separated by '|' with no spaces (e.g. COMPAT|NOARGS)
-; name psuedo-prototype of syscall routine
+; name pseudo-prototype of syscall routine
; If one of the following alts is different, then all appear:
; altname name of system call if different
; alttag name of args struct tag if different from [o]`name'"_args"
Modified: stable/11/sys/netgraph/ng_atmllc.c
==============================================================================
--- stable/11/sys/netgraph/ng_atmllc.c Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/netgraph/ng_atmllc.c Sun Apr 28 13:21:01 2019 (r346817)
@@ -158,7 +158,7 @@ ng_atmllc_rcvdata(hook_p hook, item_p item)
padding = 0;
if (hook == priv->atm) {
- /* Ditch the psuedoheader. */
+ /* Ditch the pseudoheader. */
hdr = mtod(m, struct atmllc *);
/* m_adj(m, sizeof(struct atm_pseudohdr)); */
Modified: stable/11/sys/x86/include/apicvar.h
==============================================================================
--- stable/11/sys/x86/include/apicvar.h Sun Apr 28 13:19:28 2019 (r346816)
+++ stable/11/sys/x86/include/apicvar.h Sun Apr 28 13:21:01 2019 (r346817)
@@ -158,7 +158,7 @@
#define IRQ_DISABLED -4
/*
- * An APIC enumerator is a psuedo bus driver that enumerates APIC's including
+ * An APIC enumerator is a pseudo bus driver that enumerates APIC's including
* CPU's and I/O APIC's.
*/
struct apic_enumerator {
More information about the svn-src-all
mailing list