K 10 svn:author V 5 andre K 8 svn:date V 27 2013-10-10T18:18:04.657920Z K 7 svn:log V 528 Rename the constituent parts of struct mbuf to more sensible and less namespace polluting names. For example struct m_ext used to be impossible to access because of the 'm_ext' macro to paint over the big union in struct mbuf. struct m_hdr -> mh_hdr struct pkthdr -> mh_pkthdr struct m_ext -> mh_ext There is no functional change and nobody should have directly used any of these structures anyways. In fact not a single place in the tree does with the exception of the mbuf constructors themself. Update some comments. END