diff options
author | ngie <ngie@FreeBSD.org> | 2017-07-19 18:59:26 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-07-19 18:59:26 +0000 |
commit | 95d0a7583c5b546b328d456abd9f54c013801a3c (patch) | |
tree | 67896b71b4517d85e169917b51bb9239235724df /share/man | |
parent | a3b064fc28fd9cb2bae90f4437075878e8627795 (diff) | |
download | FreeBSD-src-95d0a7583c5b546b328d456abd9f54c013801a3c.zip FreeBSD-src-95d0a7583c5b546b328d456abd9f54c013801a3c.tar.gz |
MFC note: cnv(9) diff ignored since API/manpage not present on
^/stable/11.
MFC r309066:
r309066 (by brueffer):
Fix various mdoc issues reported by mandoc -Tlint.
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man9/bus_map_resource.9 | 5 | ||||
-rw-r--r-- | share/man/man9/counter.9 | 1 | ||||
-rw-r--r-- | share/man/man9/osd.9 | 3 | ||||
-rw-r--r-- | share/man/man9/pmap_zero_page.9 | 1 | ||||
-rw-r--r-- | share/man/man9/rman.9 | 2 | ||||
-rw-r--r-- | share/man/man9/tcp_functions.9 | 1 |
6 files changed, 6 insertions, 7 deletions
diff --git a/share/man/man9/bus_map_resource.9 b/share/man/man9/bus_map_resource.9 index c8ca9a1..663c957 100644 --- a/share/man/man9/bus_map_resource.9 +++ b/share/man/man9/bus_map_resource.9 @@ -135,6 +135,8 @@ By default memory mappings use the .Dv VM_MEMATTR_UNCACHEABLE attribute. .El +.Sh RETURN VALUES +Zero is returned on success, otherwise an error is returned. .Sh EXAMPLES This maps a PCI memory BAR with the write-combining memory attribute and reads the first 32-bit word: @@ -153,9 +155,6 @@ reads the first 32-bit word: bus_map_resource(dev, SYS_RES_MEMORY, r, &args, &map); val = bus_read_4(&map, 0); .Ed -.Pp -.Sh RETURN VALUES -Zero is returned on success, otherwise an error is returned. .Sh SEE ALSO .Xr bus_activate_resource 9 , .Xr bus_alloc_resource 9 , diff --git a/share/man/man9/counter.9 b/share/man/man9/counter.9 index f717b64..1ea1bdc 100644 --- a/share/man/man9/counter.9 +++ b/share/man/man9/counter.9 @@ -224,7 +224,6 @@ static counter_u64_t array[MY_SIZE]; SYSCTL_COUNTER_U64_ARRAY(_debug, OID_AUTO, counter_array, CTLFLAG_RW, &array[0], MY_SIZE, "Test counter array"); .Ed -.Pp .Sh SEE ALSO .Xr atomic 9 , .Xr critical 9 , diff --git a/share/man/man9/osd.9 b/share/man/man9/osd.9 index 0668b9d..c4060f4 100644 --- a/share/man/man9/osd.9 +++ b/share/man/man9/osd.9 @@ -412,7 +412,8 @@ return zero on success or ENOMEM if the specified type/slot identifier pair triggered an internal .Xr realloc 9 which failed -.Fn ( osd_set_reserved +.Ns ( +.Fn osd_set_reserved will always succeed when .Fa rsv is non-NULL). diff --git a/share/man/man9/pmap_zero_page.9 b/share/man/man9/pmap_zero_page.9 index 519e76b..09723d6 100644 --- a/share/man/man9/pmap_zero_page.9 +++ b/share/man/man9/pmap_zero_page.9 @@ -52,7 +52,6 @@ The function is used to zero-fill an area of a page. The range specified must not cross a page boundary; it must be contained entirely within a single page. -.Pp The .Fn pmap_zero_page_idle interface is used by the diff --git a/share/man/man9/rman.9 b/share/man/man9/rman.9 index 6da8321..3e03c05 100644 --- a/share/man/man9/rman.9 +++ b/share/man/man9/rman.9 @@ -468,8 +468,8 @@ function returns a pointer to the device which reserved the resource .Xr bus_alloc_resource 9 , .Xr bus_map_resource 9 , .Xr bus_release_resource 9 , -.Xr bus_space 9 , .Xr bus_set_resource 9 , +.Xr bus_space 9 , .Xr mutex 9 .Sh AUTHORS This manual page was written by diff --git a/share/man/man9/tcp_functions.9 b/share/man/man9/tcp_functions.9 index 06c42ff..fb4533f 100644 --- a/share/man/man9/tcp_functions.9 +++ b/share/man/man9/tcp_functions.9 @@ -268,6 +268,7 @@ the current default function block. The .Fa blk argument references a function block that is not currently registered. +.El .Sh SEE ALSO .Xr malloc 9 , .Xr tcp 4 |