summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authoryar <yar@FreeBSD.org>2004-01-18 23:42:28 +0000
committeryar <yar@FreeBSD.org>2004-01-18 23:42:28 +0000
commit12d55dd7ece07c8021fc66010923decacc45dbb6 (patch)
tree41518666f15347515884041c9979f9264b1cb5ab /share
parent2bcdd99de461450a9e1316487a917d25b781995a (diff)
downloadFreeBSD-src-12d55dd7ece07c8021fc66010923decacc45dbb6.zip
FreeBSD-src-12d55dd7ece07c8021fc66010923decacc45dbb6.tar.gz
Reformat the list of essential mbuf fields according
to the nice style used in ifnet(9). This includes specifying field types, starting descriptions with a capital letter, and ending them with a full stop. Improve the language a bit, as well.
Diffstat (limited to 'share')
-rw-r--r--share/man/man9/mbuf.927
1 files changed, 17 insertions, 10 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9
index 404211a..39850a2 100644
--- a/share/man/man9/mbuf.9
+++ b/share/man/man9/mbuf.9
@@ -158,26 +158,33 @@ The
.Vt mbuf
header includes:
.Pp
-.Bl -tag -width "m_nextpkt" -compact -offset indent
+.Bl -tag -width "m_nextpkt" -offset indent
.It Va m_next
-a pointer to the next
+.Pq Vt struct mbuf *
+A pointer to the next
.Vt mbuf
in the
-.Vt mbuf chain
+.Vt mbuf chain .
.It Va m_nextpkt
-a pointer to the next
+.Pq Vt struct mbuf *
+A pointer to the next
.Vt mbuf chain
-in the queue
+in the queue.
.It Va m_data
-a pointer to the data
+.Pq Vt caddr_t
+A pointer to data attached to this
+.Vt mbuf .
.It Va m_len
-the length of the data
+.Pq Vt int
+The length of the data.
.It Va m_type
-the type of data
+.Pq Vt short
+The type of the data.
.It Va m_flags
-the
+.Pq Vt int
+The
.Vt mbuf
-flags
+flags.
.El
.Pp
The
OpenPOWER on IntegriCloud