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.
This commit is contained in:
Yaroslav Tykhiy 2004-01-18 23:42:28 +00:00
parent ed880bb60f
commit 238d9c5975
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=124698

View File

@ -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