summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormpp <mpp@FreeBSD.org>2004-06-21 14:11:45 +0000
committermpp <mpp@FreeBSD.org>2004-06-21 14:11:45 +0000
commiteaa9f155723426c6e63c8edbc43d4b03d0550350 (patch)
tree82d49cadb5aca7186002b81ef7f82fdceb355221
parentb65b61b58aeaebbbf4262463c237a9a97d74b531 (diff)
downloadFreeBSD-src-eaa9f155723426c6e63c8edbc43d4b03d0550350.zip
FreeBSD-src-eaa9f155723426c6e63c8edbc43d4b03d0550350.tar.gz
Spelling fixes.
-rw-r--r--share/man/man9/VOP_LISTEXTATTR.92
-rw-r--r--share/man/man9/bus_child_present.92
-rw-r--r--share/man/man9/bus_dma.92
-rw-r--r--share/man/man9/condvar.92
-rw-r--r--share/man/man9/cr_seeothergids.94
-rw-r--r--share/man/man9/cr_seeotheruids.92
-rw-r--r--share/man/man9/disk.92
-rw-r--r--share/man/man9/g_bio.94
-rw-r--r--share/man/man9/g_data.92
-rw-r--r--share/man/man9/malloc.92
-rw-r--r--share/man/man9/mbpool.96
-rw-r--r--share/man/man9/sleepqueue.94
-rw-r--r--share/man/man9/utopia.94
-rw-r--r--share/man/man9/vm_map_insert.94
14 files changed, 21 insertions, 21 deletions
diff --git a/share/man/man9/VOP_LISTEXTATTR.9 b/share/man/man9/VOP_LISTEXTATTR.9
index c4d72e8..336e397 100644
--- a/share/man/man9/VOP_LISTEXTATTR.9
+++ b/share/man/man9/VOP_LISTEXTATTR.9
@@ -66,7 +66,7 @@ the location of the data to be read
if not
.Dv NULL ,
on return it will contain the number of bytes required to read the list.
-The resulting data will be a ASCII nul-separted list of strings.
+The resulting data will be a ASCII nul-separated list of strings.
In most cases
.Fa uio
will be
diff --git a/share/man/man9/bus_child_present.9 b/share/man/man9/bus_child_present.9
index 1b7ff4d..9e8b37d 100644
--- a/share/man/man9/bus_child_present.9
+++ b/share/man/man9/bus_child_present.9
@@ -53,7 +53,7 @@ hardware represented by
.Fa dev
is still physically accessible at this time.
While the notion of accessible varies from bus to bus, generally
-hardware that is not acceessible cannot be accessed via the
+hardware that is not accessible cannot be accessed via the
.Fn bus_space*
methods that would otherwise be used to access the device.
.Pp
diff --git a/share/man/man9/bus_dma.9 b/share/man/man9/bus_dma.9
index 2392306..bf1f3a0 100644
--- a/share/man/man9/bus_dma.9
+++ b/share/man/man9/bus_dma.9
@@ -290,7 +290,7 @@ Operations to be performed by the client-specified
.Fn lockfunc .
.Bl -tag -width BUS_DMA_UNLOCK
.It Dv BUS_DMA_LOCK
-Aquires and/or locks the client locking primitive.
+Acquires and/or locks the client locking primitive.
.It Dv BUS_DMA_UNLOCK
Releases and/or unlocks the client locking primitive.
.El
diff --git a/share/man/man9/condvar.9 b/share/man/man9/condvar.9
index 9f4bb1c..46aec66 100644
--- a/share/man/man9/condvar.9
+++ b/share/man/man9/condvar.9
@@ -96,7 +96,7 @@ or
to unblock all waiters.
In addition to waking waiters,
.Fn cv_broadcastpri
-ensures that all of the waiters have a priorty of at least
+ensures that all of the waiters have a priority of at least
.Fa pri
by raising the priority of any threads that do not.
.Fn cv_wmesg
diff --git a/share/man/man9/cr_seeothergids.9 b/share/man/man9/cr_seeothergids.9
index e944892..2951b31 100644
--- a/share/man/man9/cr_seeothergids.9
+++ b/share/man/man9/cr_seeothergids.9
@@ -48,7 +48,7 @@ The visibility of objects is influenced by the
tunable
.Va security.bsd.see_other_gids .
If this tunable is non-zero, then all objects in the kernel
-are visible to each othe irrespective of their group membership.
+are visible to each other irrespective of their group membership.
If this tunable is zero, then the object with credentials
.Fa u2
is visible to the object with credentials
@@ -67,7 +67,7 @@ must be non-zero if objects with unprivileged credentials are to be
able to see each other.
.El
.Sh RETURN VALUES
-Ths function returns zero if the object with credential
+This function returns zero if the object with credential
.Fa u1
can
.Dq see
diff --git a/share/man/man9/cr_seeotheruids.9 b/share/man/man9/cr_seeotheruids.9
index 4d0b349..2b6f08a 100644
--- a/share/man/man9/cr_seeotheruids.9
+++ b/share/man/man9/cr_seeotheruids.9
@@ -67,7 +67,7 @@ must be non-zero if objects with unprivileged credentials are to be
able to see each other.
.El
.Sh RETURN VALUES
-Ths function returns zero if the object with credential
+This function returns zero if the object with credential
.Fa u1
can
.Dq see
diff --git a/share/man/man9/disk.9 b/share/man/man9/disk.9
index 1f7b527..d8d446b 100644
--- a/share/man/man9/disk.9
+++ b/share/man/man9/disk.9
@@ -122,7 +122,7 @@ If no method is provided, open will always succeed.
.It Vt "disk_close_t *" Va d_close
Optional: invoked when the disk device is closed.
Although an error code may be returned, the call should always terminate
-any state setup by the corresponing open method call.
+any state setup by the corresponding open method call.
.It Vt "disk_strategy_t *" Va d_strategy
Mandatory: invoked when a new
.Vt "struct bio"
diff --git a/share/man/man9/g_bio.9 b/share/man/man9/g_bio.9
index 27e3950..2145997 100644
--- a/share/man/man9/g_bio.9
+++ b/share/man/man9/g_bio.9
@@ -86,9 +86,9 @@ field).
.It Dv BIO_DONE
Request finished.
.It Dv BIO_FLAG1
-Avaliable for private use.
+Available for private use.
.It Dv BIO_FLAG2
-Avaliable for private use.
+Available for private use.
.El
.It Va bio_error
Error value when BIO_ERROR is set.
diff --git a/share/man/man9/g_data.9 b/share/man/man9/g_data.9
index 7bc7882..36fbd5d 100644
--- a/share/man/man9/g_data.9
+++ b/share/man/man9/g_data.9
@@ -82,7 +82,7 @@ The
.Fn g_read_data
function returns a pointer to a data buffer or
.Dv NULL
-if an error occured.
+if an error occurred.
In that case an error value is stored in the
.Fa error
argument unless it is
diff --git a/share/man/man9/malloc.9 b/share/man/man9/malloc.9
index 18064fe..442e41e 100644
--- a/share/man/man9/malloc.9
+++ b/share/man/man9/malloc.9
@@ -289,7 +289,7 @@ or
when holding a
.Xr vnode 9
interlock, will cause a LOR (Lock Order Reversal) due to the
-interwining of VM Objects and Vnodes.
+intertwining of VM Objects and Vnodes.
.Sh SEE ALSO
.Xr vmstat 8 ,
.Xr contigmalloc 9 ,
diff --git a/share/man/man9/mbpool.9 b/share/man/man9/mbpool.9
index f40a927..f7c0286 100644
--- a/share/man/man9/mbpool.9
+++ b/share/man/man9/mbpool.9
@@ -62,7 +62,7 @@
.Pp
.Cd options LIBMBPOOL
.Sh DESCRIPTION
-Mbuf pools are intented to help drivers for interface cards that need huge
+Mbuf pools are intended to help drivers for interface cards that need huge
amounts of receive buffers and additionally provides a mapping between these
buffers and 32-bit handles.
.Pp
@@ -127,7 +127,7 @@ is 2^14-1 (16383) and the maximum of
.Fa page_size /
.Fa chunk_size
is 2^9 (512).
-If the call is sucessful a pointer to a newly allocated
+If the call is successful a pointer to a newly allocated
.Vt "struct mbpool"
is set into the variable pointed to by
.Fa mpb .
@@ -177,7 +177,7 @@ The function
as the free function. The user argument must be the pointer to
the pool.
.Pp
-Before useing the contents of a buffer returned by the card the driver
+Before using the contents of a buffer returned by the card the driver
must call
.Fn mbp_sync
with the appropriate parameters. This results in a call to
diff --git a/share/man/man9/sleepqueue.9 b/share/man/man9/sleepqueue.9
index 81fc2e3..5ac0b6c 100644
--- a/share/man/man9/sleepqueue.9
+++ b/share/man/man9/sleepqueue.9
@@ -221,7 +221,7 @@ If so,
.Fn sleepq_calc_signal_retval
returns
.Er ERESTART
-if the interrupting signal is restarable and
+if the interrupting signal is restartable and
.Er EINTR
otherwise.
If the sleep was not interrupted by a signal,
@@ -237,7 +237,7 @@ The
.Fn sleepq_signal
function awakens the highest priority thread sleeping on a wait channel while
.Fn sleepq_broadcast
-awakends all of the threads sleeping on a wait channel.
+awakens all of the threads sleeping on a wait channel.
The
.Fa wchan
argument specifics which wait channel to awaken.
diff --git a/share/man/man9/utopia.9 b/share/man/man9/utopia.9
index 20c856e..6ed0663 100644
--- a/share/man/man9/utopia.9
+++ b/share/man/man9/utopia.9
@@ -147,7 +147,7 @@ kernel thread the mutex is locked and the
function is called with this mutex locked.
This will result in the driver's
.Fn readregs
-function beeing called with the mutex locked.
+function being called with the mutex locked.
.It
In the sysctl handlers the mutex will be locked before calling into the driver's
.Fn readreg
@@ -220,7 +220,7 @@ Diagnostic path loopback.
.El
.It Va chip
This points the a function vector for chip specific functions. Two fields
-in this vector a publically available:
+in this vector are publicly available:
.Bl -tag -width XXX
.It Va type
This is the type of the detected PHY chip.
diff --git a/share/man/man9/vm_map_insert.9 b/share/man/man9/vm_map_insert.9
index 429f93f..1e85154 100644
--- a/share/man/man9/vm_map_insert.9
+++ b/share/man/man9/vm_map_insert.9
@@ -61,10 +61,10 @@ address space of
.Pp
The
.Fa cow
-argment specifies the flags which should be propagated to the new entry,
+argument specifies the flags which should be propagated to the new entry,
for example, to indicate that this is a copy-on-write mapping.
.Sh IMPLEMENTATION NOTES
-This function implicity creates a new
+This function implicitly creates a new
.Dv vm_map_entry
by calling the internal function
.Fn vm_map_entry_create .
OpenPOWER on IntegriCloud