svn commit: r197300 - head/share/man/man9
Christian Brueffer
brueffer at FreeBSD.org
Fri Sep 18 00:33:48 UTC 2009
Author: brueffer
Date: Fri Sep 18 00:33:47 2009
New Revision: 197300
URL: http://svn.freebsd.org/changeset/base/197300
Log:
Various mdoc, spelling etc fixes.
MFC after: 3 days
Modified:
head/share/man/man9/ieee80211.9
head/share/man/man9/ieee80211_amrr.9
head/share/man/man9/ieee80211_beacon.9
head/share/man/man9/ieee80211_bmiss.9
head/share/man/man9/ieee80211_crypto.9
head/share/man/man9/ieee80211_ddb.9
head/share/man/man9/ieee80211_input.9
head/share/man/man9/ieee80211_node.9
head/share/man/man9/ieee80211_output.9
head/share/man/man9/ieee80211_proto.9
head/share/man/man9/ieee80211_radiotap.9
head/share/man/man9/ieee80211_regdomain.9
head/share/man/man9/ieee80211_scan.9
head/share/man/man9/ieee80211_vap.9
Modified: head/share/man/man9/ieee80211.9
==============================================================================
--- head/share/man/man9/ieee80211.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -225,7 +225,7 @@ Allocate and initialize a
structure.
This method cannot sleep.
The default method allocates zero'd memory using
-.Xr malloc 9.
+.Xr malloc 9 .
Drivers should override this method to allocate extended storage
for their own needs.
Memory allocated by the driver must be tagged with
@@ -301,7 +301,7 @@ This method is called immediately after
and must initiate the work to scan a channel and schedule a timer
to advance to the next channel in the scan list.
This callback is done in a sleepable context.
-The default method handles active scan work (e.g. sending ProbRequest
+The default method handles active scan work (e.g. sending ProbeRequest
frames), and schedules a call to
.Xr ieee80211_scan_next 9
according to the maximum dwell time for the channel.
@@ -558,4 +558,4 @@ Device supports Reduced Inter Frame Spac
.Xr ieee80211_send_action 9 ,
.Xr ieee80211_radiotap_attach 9 ,
.Xr ifnet 9 ,
-.Xr malloc 9 .
+.Xr malloc 9
Modified: head/share/man/man9/ieee80211_amrr.9
==============================================================================
--- head/share/man/man9/ieee80211_amrr.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_amrr.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -191,4 +191,4 @@ Drivers that poll a device to retrieve s
(instead or in addition).
.Sh SEE ALSO
.Xr ieee80211 9 ,
-.Xr ieee80211_output 9 ,
+.Xr ieee80211_output 9
Modified: head/share/man/man9/ieee80211_beacon.9
==============================================================================
--- head/share/man/man9/ieee80211_beacon.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_beacon.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -112,4 +112,4 @@ Staggering beacon frames is usually supe
about eight vaps, at which point the overhead becomes significant and
the channel becomes noticeably busy anyway.
.Sh SEE ALSO
-.Xr ieee80211 9 .
+.Xr ieee80211 9
Modified: head/share/man/man9/ieee80211_bmiss.9
==============================================================================
--- head/share/man/man9/ieee80211_bmiss.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_bmiss.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -86,6 +86,6 @@ Note that software beacon miss handling
it can be used in any operating mode where beacons from a peer station
are received.
.Sh SEE ALSO
-.Xr ieee80211 9 ,
-.Xr ieee80211_vap 9 ,
.Xr wpa_supplicant 8 ,
+.Xr ieee80211 9 ,
+.Xr ieee80211_vap 9
Modified: head/share/man/man9/ieee80211_crypto.9
==============================================================================
--- head/share/man/man9/ieee80211_crypto.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_crypto.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -65,10 +65,10 @@
.\"
.Ft int
.Fo ieee80211_crypto_newkey
-.Fa "struct ieee80211vap *
-.Fa "int cipher
-.Fa "int flags
-.Fa "struct ieee80211_key *
+.Fa "struct ieee80211vap *"
+.Fa "int cipher"
+.Fa "int flags"
+.Fa "struct ieee80211_key *"
.Fc
.\"
.Ft int
@@ -141,7 +141,7 @@ so it can reclaim resources.
.Pp
Crypto modules can notify the system of two events.
When a packet replay event is recognized
-.Fn ieee80111_notify_replay_failure
+.Fn ieee80211_notify_replay_failure
can be used to signal the event.
When a
.Dv TKIP
@@ -256,4 +256,4 @@ when receive traffic is active.
.Xr ioctl 2 ,
.Xr wlan_ccmp 4 ,
.Xr wlan_tkip 4 ,
-.Xr wlan_wep 4 .
+.Xr wlan_wep 4
Modified: head/share/man/man9/ieee80211_ddb.9
==============================================================================
--- head/share/man/man9/ieee80211_ddb.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_ddb.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -54,7 +54,7 @@ This is especially important because wir
built for embedded environments where cross-machine or post-mortem
debugging facilities like
.Xr kgdb 1
-infeasible.
+are infeasible.
.Pp
The most commonly used command is
.Bd -literal -offset indent
@@ -69,4 +69,4 @@ and
data structures in the system.
.Sh SEE ALSO
.Xr ddb 4 ,
-.Xr ieee80211 9 .
+.Xr ieee80211 9
Modified: head/share/man/man9/ieee80211_input.9
==============================================================================
--- head/share/man/man9/ieee80211_input.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_input.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -113,4 +113,4 @@ Otherwise the values are made available
(with the rssi presented as a filtered average over the last ten values
and the noise floor the last reported value).
.Sh SEE ALSO
-.Xr ieee80211 9 .
+.Xr ieee80211 9
Modified: head/share/man/man9/ieee80211_node.9
==============================================================================
--- head/share/man/man9/ieee80211_node.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_node.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -248,4 +248,4 @@ then a normal lookup is done without a t
.Sh SEE ALSO
.Xr ddb 9
.Xr ieee80211 9 ,
-.Xr ieee80211_proto 9 ,
+.Xr ieee80211_proto 9
Modified: head/share/man/man9/ieee80211_output.9
==============================================================================
--- head/share/man/man9/ieee80211_output.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_output.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -47,9 +47,9 @@
.\"
.Ft void
.Fo ieee80211_process_callback
-.Fa struct ieee80211_node *
-.Fa struct mbuf *
-.Fa int
+.Fa "struct ieee80211_node *"
+.Fa "struct mbuf *"
+.Fa "int"
.Fc
.Sh DESCRIPTION
The
@@ -101,7 +101,7 @@ Similarly,
.Nm net80211
handles activities such as background scanning and power save mode,
frames will not be sent to a driver unless it is operating on the
-BSS channel will
+BSS channel with
.Dq full power .
.Pp
All frames passed to a driver for transmit hold a reference to a
Modified: head/share/man/man9/ieee80211_proto.9
==============================================================================
--- head/share/man/man9/ieee80211_proto.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_proto.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -119,7 +119,7 @@ and
.Vt ic_bsschan
are guaranteed to be usable.
.It Dv IEEE80211_S_CSA
-Channel Switch Annoucememnt (CSA) is pending.
+Channel Switch Announcement (CSA) is pending.
This state is reached only from
.Dv IEEE80211_S_RUN
when either a CSA is received from an access point (in station mode)
@@ -229,11 +229,11 @@ handled by
or, in the case of card eject or vap destroy,
work will be initiated outside the driver.
.Sh SEE ALSO
-.Xr ioctl 2
+.Xr ioctl 2 ,
+.Xr wpa_supplicant 8 ,
.Xr ieee80211 9 ,
-.Xr ifnet 9
+.Xr ifnet 9 ,
.Xr taskqueue 9
-.Xr wpa_supplicant 8
.Sh HISTORY
The state machine concept was part of the original
.Nm ieee80211
Modified: head/share/man/man9/ieee80211_radiotap.9
==============================================================================
--- head/share/man/man9/ieee80211_radiotap.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_radiotap.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -198,11 +198,11 @@ RF noise power at the antenna, in decibe
.\"power as unitless distance from maximum power set at factory calibration.
.\"0 indicates maximum transmit power.
.\"Monotonically nondecreasing with lower power levels.
-\.".It Dv IEEE80211_RADIOTAP_DB_TX_ATTENUATION
-\."This field contains a single unsigned 16-bit value, expressing transmit
-\."power as decibel distance from maximum power set at factory calibration.
-\."0 indicates maximum transmit power.
-\."Monotonically nondecreasing with lower power levels.
+.\".It Dv IEEE80211_RADIOTAP_DB_TX_ATTENUATION
+.\"This field contains a single unsigned 16-bit value, expressing transmit
+.\"power as decibel distance from maximum power set at factory calibration.
+.\"0 indicates maximum transmit power.
+.\"Monotonically nondecreasing with lower power levels.
.It Dv IEEE80211_RADIOTAP_DBM_TX_POWER
Transmit power expressed as decibels from a 1mW reference.
This field is a single signed 8-bit value.
@@ -223,9 +223,9 @@ This field contains a single unsigned 8-
RF noise power at the antenna, in decibels difference from an
arbitrary, fixed reference.
.It Dv IEEE80211_RADIOTAP_XCHANNEL
-This field containts four values: a 32-bit unsigned bitmap of
+This field contains four values: a 32-bit unsigned bitmap of
flags that describe the channel attributes, a 16-bit unsigned
-freqeuncy in MHz (typically the channel center), an 8-bit
+frequency in MHz (typically the channel center), an 8-bit
unsigned IEEE channel number, and a signed 8-bit value that
holds the maximum regulatory transmit power cap in .5 dBm
(8 bytes total).
@@ -237,10 +237,10 @@ This property supersedes
.Dv IEEE80211_RADIOTAP_CHANNEL
and is the only way to completely express all
channel attributes and the
-mapping between channel freqeuncy and IEEE channel number.
+mapping between channel frequency and IEEE channel number.
.El
.Sh EXAMPLES
-Radiotap receive definitions for the Intersil Prims driver:
+Radiotap receive definitions for the Intersil Prism driver:
.Bd -literal -offset indent
#define WI_RX_RADIOTAP_PRESENT \\
((1 << IEEE80211_RADIOTAP_TSFT) \\
@@ -298,7 +298,6 @@ definitions first appeared in
.\"
.Sh AUTHORS
.An -nosplit
-.Pp
The original version of this manual page was written by
.An Bruce M. Simpson Aq bms at FreeBSD.org
and
Modified: head/share/man/man9/ieee80211_regdomain.9
==============================================================================
--- head/share/man/man9/ieee80211_regdomain.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_regdomain.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -112,7 +112,7 @@ routine.
This should be done whenever the channel table contents are modified.
.Pp
The
-.Fn ieee80211_alloc_countrie
+.Fn ieee80211_alloc_countryie
function allocates an information element as specified by 802.11h.
Because this is expensive to generate it is cached in
.Vt ic_countryie
@@ -140,4 +140,4 @@ The exact rules by which to operate are
.Sh SEE ALSO
.Xr regdomain 5 ,
.Xr ifconfig 8 ,
-.Xr ieee80211 9 .
+.Xr ieee80211 9
Modified: head/share/man/man9/ieee80211_scan.9
==============================================================================
--- head/share/man/man9/ieee80211_scan.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_scan.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -347,4 +347,4 @@ request.
.Sh SEE ALSO
.Xr ioctl 2 ,
.Xr ieee80211 9 .
-.Xr ieee80211_proto 9 .
+.Xr ieee80211_proto 9
Modified: head/share/man/man9/ieee80211_vap.9
==============================================================================
--- head/share/man/man9/ieee80211_vap.9 Thu Sep 17 19:15:49 2009 (r197299)
+++ head/share/man/man9/ieee80211_vap.9 Fri Sep 18 00:33:47 2009 (r197300)
@@ -151,4 +151,4 @@ that beacon are stopped before stopping
.Sh SEE ALSO
.Xr ieee80211 9 ,
.Xr ifnet 9 ,
-.Xr malloc 9 .
+.Xr malloc 9
More information about the svn-src-all
mailing list