summaryrefslogtreecommitdiffstats
path: root/sys/sys
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2016-05-03 15:14:17 +0000
committerpfg <pfg@FreeBSD.org>2016-05-03 15:14:17 +0000
commitcacb7c41e21bf8ff9e1e931a5a98bef75389a4e3 (patch)
tree0bbdc3153f49eb0bc2d5107df04fb80a583242b0 /sys/sys
parent63376757cf97c97df302265cd6975b8daf66d631 (diff)
downloadFreeBSD-src-cacb7c41e21bf8ff9e1e931a5a98bef75389a4e3.zip
FreeBSD-src-cacb7c41e21bf8ff9e1e931a5a98bef75389a4e3.tar.gz
sys/sys: minor spelling fixes.
While the changes are minor, these headers are very visible. MFC after: 2 weeks
Diffstat (limited to 'sys/sys')
-rw-r--r--sys/sys/ata.h4
-rw-r--r--sys/sys/buf.h2
-rw-r--r--sys/sys/buf_ring.h4
-rw-r--r--sys/sys/iconv.h2
-rw-r--r--sys/sys/imgact_binmisc.h2
-rw-r--r--sys/sys/imgact_elf.h2
-rw-r--r--sys/sys/ipc.h2
-rw-r--r--sys/sys/ipmi.h2
-rw-r--r--sys/sys/linker.h2
-rw-r--r--sys/sys/memrange.h2
-rw-r--r--sys/sys/pmc.h4
-rw-r--r--sys/sys/priority.h2
-rw-r--r--sys/sys/priv.h2
-rw-r--r--sys/sys/proc.h2
-rw-r--r--sys/sys/procctl.h2
-rw-r--r--sys/sys/shm.h2
-rw-r--r--sys/sys/sockio.h2
-rw-r--r--sys/sys/soundcard.h4
-rw-r--r--sys/sys/sx.h2
-rw-r--r--sys/sys/sysctl.h4
-rw-r--r--sys/sys/timex.h2
-rw-r--r--sys/sys/user.h2
22 files changed, 27 insertions, 27 deletions
diff --git a/sys/sys/ata.h b/sys/sys/ata.h
index 5df610e..672ee41 100644
--- a/sys/sys/ata.h
+++ b/sys/sys/ata.h
@@ -377,10 +377,10 @@ struct ata_params {
#define ATA_NCQ_NON_DATA 0x63 /* NCQ non-data command */
#define ATA_SEND_FPDMA_QUEUED 0x64 /* send DMA NCQ */
#define ATA_SFPDMA_DSM 0x00 /* Data set management */
-#define ATA_SFPDMA_DSM_TRIM 0x01 /* Set trim bit in auxilary */
+#define ATA_SFPDMA_DSM_TRIM 0x01 /* Set trim bit in auxiliary */
#define ATA_SFPDMA_HYBRID_EVICT 0x01 /* Hybrid Evict */
#define ATA_SFPDMA_WLDMA 0x02 /* Write Log DMA EXT */
-#define ATA_RECV_FPDMA_QUEUED 0x65 /* recieve DMA NCQ */
+#define ATA_RECV_FPDMA_QUEUED 0x65 /* receive DMA NCQ */
#define ATA_SEP_ATTN 0x67 /* SEP request */
#define ATA_SEEK 0x70 /* seek */
#define ATA_PACKET_CMD 0xa0 /* packet command */
diff --git a/sys/sys/buf.h b/sys/sys/buf.h
index 77343e7..cec28f4 100644
--- a/sys/sys/buf.h
+++ b/sys/sys/buf.h
@@ -206,7 +206,7 @@ struct buf {
#define B_NOREUSE 0x00000800 /* Contents not reused once released. */
#define B_00001000 0x00001000 /* Available flag. */
#define B_INVAL 0x00002000 /* Does not contain valid info. */
-#define B_BARRIER 0x00004000 /* Write this and all preceeding first. */
+#define B_BARRIER 0x00004000 /* Write this and all preceding first. */
#define B_NOCACHE 0x00008000 /* Do not cache block after use. */
#define B_MALLOC 0x00010000 /* malloced b_data */
#define B_CLUSTEROK 0x00020000 /* Pagein op, so swap() can count it. */
diff --git a/sys/sys/buf_ring.h b/sys/sys/buf_ring.h
index 6a6bfc4..c771fe0 100644
--- a/sys/sys/buf_ring.h
+++ b/sys/sys/buf_ring.h
@@ -98,7 +98,7 @@ buf_ring_enqueue(struct buf_ring *br, void *buf)
/*
* If there are other enqueues in progress
- * that preceeded us, we need to wait for them
+ * that preceded us, we need to wait for them
* to complete
*/
while (br->br_prod_tail != prod_head)
@@ -135,7 +135,7 @@ buf_ring_dequeue_mc(struct buf_ring *br)
#endif
/*
* If there are other dequeues in progress
- * that preceeded us, we need to wait for them
+ * that preceded us, we need to wait for them
* to complete
*/
while (br->br_cons_tail != cons_head)
diff --git a/sys/sys/iconv.h b/sys/sys/iconv.h
index 5e59795..44a03e961 100644
--- a/sys/sys/iconv.h
+++ b/sys/sys/iconv.h
@@ -65,7 +65,7 @@ struct iconv_cspair_info {
};
/*
- * Paramters for 'add' sysctl
+ * Parameters for 'add' sysctl
*/
#define ICONV_ADD_VER 1
diff --git a/sys/sys/imgact_binmisc.h b/sys/sys/imgact_binmisc.h
index f1ed1d8..ea1b601 100644
--- a/sys/sys/imgact_binmisc.h
+++ b/sys/sys/imgact_binmisc.h
@@ -41,7 +41,7 @@
#define IBE_NAME_MAX 32 /* Max size for entry name. */
#define IBE_MAGIC_MAX 256 /* Max size for header magic and mask. */
#define IBE_ARG_LEN_MAX 256 /* Max space for optional interpreter command-
- line argruments seperated by white space */
+ line argruments separated by white space */
#define IBE_INTERP_LEN_MAX (MAXPATHLEN + IBE_ARG_LEN_MAX)
#define IBE_MAX_ENTRIES 64 /* Max number of interpreter entries. */
diff --git a/sys/sys/imgact_elf.h b/sys/sys/imgact_elf.h
index 9b47042..beb5f96 100644
--- a/sys/sys/imgact_elf.h
+++ b/sys/sys/imgact_elf.h
@@ -41,7 +41,7 @@ struct image_params;
struct thread;
/*
- * Structure used to pass infomation from the loader to the
+ * Structure used to pass information from the loader to the
* stack fixup routine.
*/
typedef struct {
diff --git a/sys/sys/ipc.h b/sys/sys/ipc.h
index e643d48..19f1d39 100644
--- a/sys/sys/ipc.h
+++ b/sys/sys/ipc.h
@@ -112,7 +112,7 @@ struct ipc_perm {
#define IPC_STAT 2 /* get options */
#if __BSD_VISIBLE
/*
- * For Linux compatability.
+ * For Linux compatibility.
*/
#define IPC_INFO 3 /* get info */
#endif
diff --git a/sys/sys/ipmi.h b/sys/sys/ipmi.h
index 578d78c..b8e318a 100644
--- a/sys/sys/ipmi.h
+++ b/sys/sys/ipmi.h
@@ -122,7 +122,7 @@ struct ipmi_ipmb_addr {
};
#if defined(__amd64__)
-/* Compatiblity with 32-bit binaries. */
+/* Compatibility with 32-bit binaries. */
#define IPMICTL_RECEIVE_MSG_TRUNC_32 _IOWR(IPMI_IOC_MAGIC, 11, struct ipmi_recv32)
#define IPMICTL_RECEIVE_MSG_32 _IOWR(IPMI_IOC_MAGIC, 12, struct ipmi_recv32)
diff --git a/sys/sys/linker.h b/sys/sys/linker.h
index 5248bfb..42253a7 100644
--- a/sys/sys/linker.h
+++ b/sys/sys/linker.h
@@ -160,7 +160,7 @@ int linker_file_function_listall(linker_file_t,
linker_function_nameval_callback_t, void *);
/*
- * Functions soley for use by the linker class handlers.
+ * Functions solely for use by the linker class handlers.
*/
int linker_add_class(linker_class_t _cls);
int linker_file_unload(linker_file_t _file, int flags);
diff --git a/sys/sys/memrange.h b/sys/sys/memrange.h
index 32ae238..6d6ff0e 100644
--- a/sys/sys/memrange.h
+++ b/sys/sys/memrange.h
@@ -1,5 +1,5 @@
/*
- * Memory range attribute operations, peformed on /dev/mem
+ * Memory range attribute operations, performed on /dev/mem
*
* $FreeBSD$
*/
diff --git a/sys/sys/pmc.h b/sys/sys/pmc.h
index e559b76..a03e507 100644
--- a/sys/sys/pmc.h
+++ b/sys/sys/pmc.h
@@ -283,7 +283,7 @@ enum pmc_disp {
__PMC_CAP(THRESHOLD, 4, "ignore events below a threshold") \
__PMC_CAP(READ, 5, "read PMC counter") \
__PMC_CAP(WRITE, 6, "reprogram PMC counter") \
- __PMC_CAP(INVERT, 7, "invert comparision sense") \
+ __PMC_CAP(INVERT, 7, "invert comparison sense") \
__PMC_CAP(QUALIFIER, 8, "further qualify monitored events") \
__PMC_CAP(PRECISE, 9, "perform precise sampling") \
__PMC_CAP(TAGGING, 10, "tag upstream events") \
@@ -587,7 +587,7 @@ struct pmc_op_writelog {
/*
* OP GETMSR
*
- * Retrieve the machine specific address assoicated with the allocated
+ * Retrieve the machine specific address associated with the allocated
* PMC. This number can be used subsequently with a read-performance-counter
* instruction.
*/
diff --git a/sys/sys/priority.h b/sys/sys/priority.h
index 6548a35..a2cd3b7 100644
--- a/sys/sys/priority.h
+++ b/sys/sys/priority.h
@@ -126,7 +126,7 @@
struct priority {
u_char pri_class; /* Scheduling class. */
u_char pri_level; /* Normal priority level. */
- u_char pri_native; /* Priority before propogation. */
+ u_char pri_native; /* Priority before propagation. */
u_char pri_user; /* User priority based on p_cpu and p_nice. */
};
diff --git a/sys/sys/priv.h b/sys/sys/priv.h
index 981538b..b1eaece 100644
--- a/sys/sys/priv.h
+++ b/sys/sys/priv.h
@@ -134,7 +134,7 @@
#define PRIV_JAIL_REMOVE 112 /* Remove a jail. */
/*
- * Kernel environment priveleges.
+ * Kernel environment privileges.
*/
#define PRIV_KENV_SET 120 /* Set kernel env. variables. */
#define PRIV_KENV_UNSET 121 /* Unset kernel env. variables. */
diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index 16c739e..35303fc 100644
--- a/sys/sys/proc.h
+++ b/sys/sys/proc.h
@@ -426,7 +426,7 @@ do { \
#define TDP_BUFNEED 0x00000008 /* Do not recurse into the buf flush */
#define TDP_COWINPROGRESS 0x00000010 /* Snapshot copy-on-write in progress. */
#define TDP_ALTSTACK 0x00000020 /* Have alternate signal stack. */
-#define TDP_DEADLKTREAT 0x00000040 /* Lock aquisition - deadlock treatment. */
+#define TDP_DEADLKTREAT 0x00000040 /* Lock acquisition - deadlock treatment. */
#define TDP_NOFAULTING 0x00000080 /* Do not handle page faults. */
#define TDP_UNUSED9 0x00000100 /* --available-- */
#define TDP_OWEUPC 0x00000200 /* Call addupc() at next AST. */
diff --git a/sys/sys/procctl.h b/sys/sys/procctl.h
index 75dbf53..c6f1e94 100644
--- a/sys/sys/procctl.h
+++ b/sys/sys/procctl.h
@@ -88,7 +88,7 @@ struct procctl_reaper_kill {
int rk_sig; /* in - signal to send */
u_int rk_flags; /* in - REAPER_KILL flags */
pid_t rk_subtree; /* in - subtree, if REAPER_KILL_SUBTREE */
- u_int rk_killed; /* out - count of processes sucessfully
+ u_int rk_killed; /* out - count of processes successfully
killed */
pid_t rk_fpid; /* out - first failed pid for which error
is returned */
diff --git a/sys/sys/shm.h b/sys/sys/shm.h
index f685df3..455e858 100644
--- a/sys/sys/shm.h
+++ b/sys/sys/shm.h
@@ -56,7 +56,7 @@
#define SHM_LOCK 11
#define SHM_UNLOCK 12
-/* ipcs shmctl commands for Linux compatability */
+/* ipcs shmctl commands for Linux compatibility */
#define SHM_STAT 13
#define SHM_INFO 14
diff --git a/sys/sys/sockio.h b/sys/sys/sockio.h
index 73ebf5f..abdf1c3 100644
--- a/sys/sys/sockio.h
+++ b/sys/sys/sockio.h
@@ -98,7 +98,7 @@
#define SIOCSIFLLADDR _IOW('i', 60, struct ifreq) /* set linklevel addr */
#define SIOCGI2C _IOWR('i', 61, struct ifreq) /* get I2C data */
-#define SIOCSIFPHYADDR _IOW('i', 70, struct ifaliasreq) /* set gif addres */
+#define SIOCSIFPHYADDR _IOW('i', 70, struct ifaliasreq) /* set gif address */
#define SIOCGIFPSRCADDR _IOWR('i', 71, struct ifreq) /* get gif psrc addr */
#define SIOCGIFPDSTADDR _IOWR('i', 72, struct ifreq) /* get gif pdst addr */
#define SIOCDIFPHYADDR _IOW('i', 73, struct ifreq) /* delete gif addrs */
diff --git a/sys/sys/soundcard.h b/sys/sys/soundcard.h
index 2916287..4867f6c 100644
--- a/sys/sys/soundcard.h
+++ b/sys/sys/soundcard.h
@@ -185,7 +185,7 @@ struct snd_size {
#define AFMT_U24_LE 0x00040000 /* Little endian unsigned 24-bit */
#define AFMT_U24_BE 0x00080000 /* Big endian unsigned 24-bit */
-/* Machine dependant AFMT_* definitions. */
+/* Machine dependent AFMT_* definitions. */
#if BYTE_ORDER == LITTLE_ENDIAN
#define AFMT_S16_NE AFMT_S16_LE
#define AFMT_S24_NE AFMT_S24_LE
@@ -1447,7 +1447,7 @@ void seqbuf_dump(void); /* This function must be provided by programs */
SEQ_CONTROL(dev, voice, CTL_PAN, (pos+128) / 2)
/*
- * Timing and syncronization macros
+ * Timing and synchronization macros
*/
#define _TIMER_EVENT(ev, parm) { \
diff --git a/sys/sys/sx.h b/sys/sys/sx.h
index 96a664f..03b51d3 100644
--- a/sys/sys/sx.h
+++ b/sys/sys/sx.h
@@ -308,7 +308,7 @@ __sx_sunlock(struct sx *sx, const char *file, int line)
#define SA_RECURSED LA_RECURSED
#define SA_NOTRECURSED LA_NOTRECURSED
-/* Backwards compatability. */
+/* Backwards compatibility. */
#define SX_LOCKED LA_LOCKED
#define SX_SLOCKED LA_SLOCKED
#define SX_XLOCKED LA_XLOCKED
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h
index eb5eef0..4590ef9 100644
--- a/sys/sys/sysctl.h
+++ b/sys/sys/sysctl.h
@@ -608,7 +608,7 @@ TAILQ_HEAD(sysctl_ctx_list, sysctl_ctx_entry);
__ptr, 0, sysctl_handle_64, "QU", __DESCR(descr)); \
})
-/* Oid for a CPU dependant variable */
+/* Oid for a CPU dependent variable */
#define SYSCTL_ADD_UAUTO(ctx, parent, nbr, name, access, ptr, descr) \
({ \
struct sysctl_oid *__ret; \
@@ -753,7 +753,7 @@ TAILQ_HEAD(sysctl_ctx_list, sysctl_ctx_entry);
})
/*
- * A macro to generate a read-only sysctl to indicate the presense of optional
+ * A macro to generate a read-only sysctl to indicate the presence of optional
* kernel features.
*/
#define FEATURE(name, desc) \
diff --git a/sys/sys/timex.h b/sys/sys/timex.h
index 4b75fcc..4fa5735 100644
--- a/sys/sys/timex.h
+++ b/sys/sys/timex.h
@@ -105,7 +105,7 @@
#define TIME_INS 1 /* insert leap second warning */
#define TIME_DEL 2 /* delete leap second warning */
#define TIME_OOP 3 /* leap second in progress */
-#define TIME_WAIT 4 /* leap second has occured */
+#define TIME_WAIT 4 /* leap second has occurred */
#define TIME_ERROR 5 /* error (see status word) */
/*
diff --git a/sys/sys/user.h b/sys/sys/user.h
index fd362c2..6049e80 100644
--- a/sys/sys/user.h
+++ b/sys/sys/user.h
@@ -296,7 +296,7 @@ struct user {
/*
* Old format. Has variable hidden padding due to alignment.
- * This is a compatability hack for pre-build 7.1 packages.
+ * This is a compatibility hack for pre-build 7.1 packages.
*/
#if defined(__amd64__)
#define KINFO_OFILE_SIZE 1328
OpenPOWER on IntegriCloud