From 12d55dd7ece07c8021fc66010923decacc45dbb6 Mon Sep 17 00:00:00 2001 From: yar Date: Sun, 18 Jan 2004 23:42:28 +0000 Subject: 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. --- share/man/man9/mbuf.9 | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) (limited to 'share') 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 -- cgit v1.1