diff options
author | Lawrence Teo <lteo@cvs.openbsd.org> | 2015-02-10 04:08:01 +0000 |
---|---|---|
committer | Lawrence Teo <lteo@cvs.openbsd.org> | 2015-02-10 04:08:01 +0000 |
commit | 08e65b9018e7e47927597b2a9c649599efe72bfe (patch) | |
tree | d0194859f20e465c8e370957d2ced5fc5198bdee /share/man/man9/mbuf.9 | |
parent | 9a5d7fbc7ec929f92ac40feaa1cc3555b5c9731c (diff) |
Sync and sort the M_* mbuf flags to match the way they are listed in
<sys/mbuf.h>.
Diffstat (limited to 'share/man/man9/mbuf.9')
-rw-r--r-- | share/man/man9/mbuf.9 | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index c94fbe535f2..30dda56d418 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.82 2015/02/10 03:50:30 lteo Exp $ +.\" $OpenBSD: mbuf.9,v 1.83 2015/02/10 04:08:00 lteo Exp $ .\" .\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org> .\" All rights reserved. @@ -311,10 +311,19 @@ mbuf has associated external storage. the mbuf is the first that forms a packet. .It Dv M_EOR end of record. -.It Dv M_CLUSTER -the external storage is a cluster. +.It Dv M_EXTWR +external storage is writable. .It Dv M_PROTO1 protocol-specific. +.It Dv M_VLANTAG +.Fa m_pkthdr.ether_vtag +variable is valid. +.It Dv M_LOOP +for mbuf statistics. +.It Dv M_FILDROP +dropped by +.Xr bpf 4 +filter. .It Dv M_BCAST packet send/received as link-level broadcast. .It Dv M_MCAST @@ -323,22 +332,15 @@ packet send/received as link-level multicast. packet was encrypted (ESP-transport). .It Dv M_AUTH packet was authenticated (AH or ESP). +.It Dv M_TUNNEL +header was IP-in-IP encapsulated by tunnel mode IPsec. .It Dv M_ZEROIZE Zero the data part of the mbufs in the mbuf chain pointed to by .Nm m_free . -.It Dv M_TUNNEL -header was IP-in-IP encapsulated by tunnel mode IPsec. +.It Dv M_COMP +header was decompressed. .It Dv M_LINK0 link layer specific flag. -.It Dv M_LOOP -for mbuf statistics. -.It Dv M_FILDROP -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 |