diff options
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/mbuf.9 | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index e6b570fc03a..1dde48fa168 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.34 2008/09/15 17:16:14 naddy Exp $ +.\" $OpenBSD: mbuf.9,v 1.35 2008/09/18 15:16:30 naddy Exp $ .\" .\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org> .\" All rights reserved. @@ -25,7 +25,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: September 15 2008 $ +.Dd $Mdocdate: September 18 2008 $ .Dt MBUF 9 .Os .Sh NAME @@ -116,7 +116,8 @@ struct pkthdr { struct ifnet *rcvif; SLIST_HEAD(packet_tags, m_tag) tags; int len; - int csum_flags; + u_int16_t csum_flags; + u_int16_t ether_vtag; struct pkthdr_pf pf; }; @@ -260,6 +261,9 @@ for mbuf statistics. dropped by .Xr bpf 4 filter. +.It Dv M_VLANTAG +.Fa m_pkthdr.ether_vtag +variable is valid. .El .Pp An external cluster is used when the data to hold in the mbuf is |